.dh-coelho-calculator { width: 100%; padding: 0; }
.dh-coelho-calculator *,
.dh-coelho-calculator *::before,
.dh-coelho-calculator *::after { box-sizing: border-box; }

.dh-coelho-card {
    max-width: 100%;
    margin: 0;
    padding: 18px;
    border-radius: var(--radius-xl, 16px);
    background: var(--color-bg-primary, #fff);
    border: 1px solid var(--color-border, #e2e8f0);
}

.dh-coelho-header {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 3px solid #edb133;
}

.dh-coelho-kicker {
    margin: 0 0 6px;
    color: var(--color-text-muted, #64748b);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dh-coelho-title {
    margin: 0 0 4px;
    color: #346af1;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 800;
    line-height: 1.15;
}

.dh-coelho-subtitle {
    margin: 0;
    color: var(--color-text-muted, #6b7280);
    font-size: 0.78rem;
}

.dh-coelho-info {
    background: rgba(52, 106, 241, 0.08);
    border: 1px solid #edb133;
    border-left: 4px solid #edb133;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    color: #1f2937;
    line-height: 1.5;
}

.dh-coelho-section-title {
    margin: 18px 0 10px;
    padding-left: 10px;
    border-left: 4px solid #edb133;
    color: #346af1;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dh-coelho-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dh-coelho-question {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #346af1;
    border-radius: 8px;
    padding: 12px;
}

.dh-coelho-question--full { grid-column: 1 / -1; }

.dh-coelho-question-header {
    color: #346af1;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.dh-coelho-question-desc {
    color: var(--color-text-muted, #6b7280);
    font-size: 0.7rem;
    line-height: 1.45;
    margin-bottom: 8px;
}

.dh-coelho-options {
    display: flex;
    gap: 8px;
}

.dh-coelho-options--col { flex-direction: column; }

.dh-coelho-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 40px;
    flex: 1;
    text-align: center;
}

.dh-coelho-options--col .dh-coelho-option { justify-content: flex-start; text-align: left; }

.dh-coelho-option:hover {
    background: rgba(52, 106, 241, 0.08);
    border-color: #edb133; color: #1f2937;
}

.dh-coelho-option.is-selected {
    background: #346af1;
    border-color: #346af1;
    color: #fff;
}

.dh-coelho-option-text { flex: 1; }

.dh-coelho-actions { margin-top: 16px; }

.dh-coelho-primary {
    width: 100%;
    min-height: 48px;
    padding: 14px;
    background: #346af1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.15s ease;
}

.dh-coelho-primary:hover { background: #2855d4; }

.dh-coelho-error {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-size: 0.82rem;
    font-weight: 600;
}

.dh-coelho-results {
    margin-top: 18px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: dhCoelhoFadeIn 0.3s ease;
}

@keyframes dhCoelhoFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dh-coelho-pontuacao {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.dh-coelho-pontuacao-sub {
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 8px;
}

.dh-coelho-interpretacao {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.dh-coelho-descricao {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 12px;
    color: #1f2937;
}

.dh-coelho-detail {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    margin-top: 12px;
    text-align: left;
}

.dh-coelho-detail-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dh-coelho-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.78rem;
    gap: 10px;
}

.dh-coelho-detail-item:last-child { border-bottom: none; }
.dh-coelho-detail-item span:first-child { color: #6b7280; font-weight: 600; flex: 1; }
.dh-coelho-detail-item span:last-child { color: #1f2937; font-weight: 700; }

.dh-coelho-detail-item--alert {
    border-top: 2px solid #346af1;
    padding-top: 10px;
    margin-top: 6px;
    border-bottom: none;
}

.dh-coelho-detail-item--alert span:first-child { color: #346af1; font-weight: 800; }
.dh-coelho-detail-item--alert span:last-child { color: #346af1; }

.dh-coelho-detail--guidance {
    background: rgba(52, 106, 241, 0.08);
    border: 1px solid #edb133;
}

.dh-coelho-detail--guidance .dh-coelho-detail-title { color: #92400e; }

.dh-coelho-guidance-text {
    font-size: 0.78rem;
    color: #1f2937;
    line-height: 1.55;
}

.dh-coelho-results--sem-risco { background: linear-gradient(135deg, #e0f2fe, #bae6fd); border: 2px solid #346af1; }
.dh-coelho-results--sem-risco .dh-coelho-pontuacao,
.dh-coelho-results--sem-risco .dh-coelho-interpretacao { color: #346af1; }

.dh-coelho-results--r1 { background: linear-gradient(135deg, #fef3c7, #fde68a); border: 2px solid #edb133; }
.dh-coelho-results--r1 .dh-coelho-pontuacao,
.dh-coelho-results--r1 .dh-coelho-interpretacao { color: #d97706; }

.dh-coelho-results--r2 { background: linear-gradient(135deg, #fed7aa, #fdba74); border: 2px solid #f97316; }
.dh-coelho-results--r2 .dh-coelho-pontuacao,
.dh-coelho-results--r2 .dh-coelho-interpretacao { color: #ea580c; }

.dh-coelho-results--r3 { background: linear-gradient(135deg, #fee2e2, #fecaca); border: 2px solid #ef4444; }
.dh-coelho-results--r3 .dh-coelho-pontuacao,
.dh-coelho-results--r3 .dh-coelho-interpretacao { color: #dc2626; }

.dh-coelho-reference {
    margin-top: 16px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.7rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .dh-coelho-grid { grid-template-columns: 1fr; }
    .dh-coelho-pontuacao { font-size: 2.1rem; }
}
