/* ============================================
   SOLUÇÃO.CSS - TODOS OS ESTILOS
   ============================================ */

/* ============================================
   ESTILOS GERAIS (DESKTOP ORIGINAL)
   ============================================ */

.small-label {
    color: #d6b88d;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title {
    color: #2e1809;
    font-size: 48px;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.section-description {
    color: #555;
    line-height: 1.5;
    font-size: 16px;
}

/* ============================================
   DESKTOP - FEATURE BOX (ORIGINAL MANTIDO)
   ============================================ */

.feature-box {
    background: #fff;
    padding: 20px 20px;
    border-radius: 24px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #572b07;
}

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

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #572b07;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-icon i {
    color: #fff;
    font-size: 25px;
}

.feature-box h4 {
    color: #2e1809;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 13px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

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

/* ============================================
   DESKTOP - TEXTO FINAL E BOTÃO (ORIGINAL)
   ============================================ */

.section-title-final-desktop {
    color: #2e1809;
    font-size: 28px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-top: 24px;
}

.section-description-final-desktop {
    color: #555;
    line-height: 1.6;
    font-size: 17px;
    padding: 0 10px;
}

.btn-gold-desktop {
    background: #572b07;
    color: #fff;
    padding: 10px 33px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

/* ============================================
   DESKTOP - CONTAINER (ORIGINAL)
   ============================================ */

.solution-desktop {
    background: #f5efe8;
    padding: 40px 0;
}

/* ============================================
   MOBILE - 1 CARD POR LINHA (FINO)
   ============================================ */

.solution-mobile {
    background: #f5efe8;
    padding: 30px 0;
}

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

.section-description-mobile {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 5px;
}

/* ===== CARDS MOBILE ===== */
.feature-box-mobile {
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #572b07;
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-box-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(87, 43, 7, 0.10);
}

.feature-icon-mobile {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #572b07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-mobile i {
    color: #fff;
    font-size: 16px;
}

.feature-content-mobile {
    flex: 1;
}

.feature-content-mobile h4 {
    color: #2e1809;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

.feature-content-mobile p {
    color: #555;
    line-height: 1.3;
    font-size: 11px;
    margin: 0;
}

/* ===== TÍTULO FINAL MOBILE ===== */
.section-title-final-mobile {
    color: #2e1809;
    font-size: 22px;
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.section-description-final-mobile {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    padding: 0 5px;
}

.btn-gold-mobile {
    background: #572b07;
    color: #fff;
    padding: 12px 30px;
    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:hover {
    background: #fff;
    color: #572b07;
    box-shadow: 0 8px 30px rgba(87, 43, 7, 0.15);
    transform: translateY(-2px);
}

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

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

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

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