/* ============================================
   DIAGNÓSTICO - ESTILOS ORIGINAIS (DESKTOP AJUSTADO)
   ============================================ */

.diagnostico-section {
    background: #f5efe8;
    padding: 20px 0; /* REDUZIDO de 100px para 60px */
}

.diagnostico-section .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #572b07;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diagnostico-section .icon-wrapper i {
    color: #fff;
    font-size: 26px;
}

.diagnostico-section h5 {
    color: #2e1809;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.diagnostico-section .feature-box p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* REDUZINDO O ESPAÇAMENTO DOS CARDS */
.diagnostico-section .row.g-4 {
    --bs-gutter-y: 1.5rem; /* REDUZIDO de 1.5rem para 1rem */
    --bs-gutter-x: 1.5rem; /* REDUZIDO de 1.5rem para 1rem */
}

.diagnostico-section .feature-box {
    padding: 28px 24px !important; /* REDUZIDO de 35px 28px para 28px 24px */
}

.diagnostico-section .mt-5 {
    margin-top: 2rem !important; /* REDUZIDO de 3rem para 2rem */
}

/* ============================================
   DIAGNÓSTICO - MOBILE (CARDS MENORES)
   ============================================ */

.diagnostico-mobile {
    background: #f5efe8;
    padding: 20px 0;
}

.section-title-mobile-diag {
    color: #2e1809;
    font-size: 28px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 16px;
}

.section-description-mobile-diag {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 5px;
    max-width: 100%;
    margin: 12px auto 0;
}

/* ===== CARDS MOBILE ===== */
.feature-box-mobile-diag {
    background: #fff;
    padding: 14px 16px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(46, 24, 9, 0.04);
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-box-mobile-diag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(46, 24, 9, 0.08);
}

.feature-box-mobile-diag .icon-wrapper-mobile {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: #572b07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-mobile-diag .icon-wrapper-mobile i {
    color: #fff;
    font-size: 20px;
}

.feature-box-mobile-diag .content-wrapper {
    flex: 1;
}

.feature-box-mobile-diag h5 {
    color: #2e1809;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2px;
}

.feature-box-mobile-diag p {
    color: #555;
    line-height: 1.4;
    font-size: 12px;
    margin: 0;
}

/* ===== BOTÃO MOBILE ===== */
.btn-gold-mobile-diag {
    background: #572b07;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-gold-mobile-diag:hover {
    background: #d6b88d;
    color: #572b07;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(87, 43, 7, 0.2);
}

.btn-gold-mobile-diag i {
    margin-right: 8px;
}

/* ============================================
   CONTROLE DE EXIBIÇÃO
   ============================================ */

/* Mobile: mostra mobile, esconde desktop */
@media (max-width: 767px) {
    .diagnostico-desktop {
        display: none !important;
    }
    .diagnostico-mobile {
        display: block !important;
    }
}

/* Desktop: mostra desktop, esconde mobile */
@media (min-width: 768px) {
    .diagnostico-desktop {
        display: block !important;
    }
    .diagnostico-mobile {
        display: none !important;
    }
}