/* ========================================== */
/* CSS SEÇÃO "SONHOS" - VERSÃO CLARA          */
/* ========================================== */

.sonhos-section-light {
    padding: 80px 0;
    background-color: #f9fafc;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.sonhos-header {
    text-align: center;
    margin-bottom: 50px;
}

.sonhos-tag {
    display: inline-block;
    background: #eef2ff;
    color: #4a5b6e;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.sonhos-title-light {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .sonhos-title-light {
        font-size: 2.8rem;
    }
}

.title-highlight {
    color: #8eb80b;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(142, 184, 11, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.sonhos-subtitle {
    color: #5a6a7a;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid de cards */
.sonhos-grid-light {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

@media (min-width: 600px) {
    .sonhos-grid-light {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .sonhos-grid-light {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.sonho-card-light {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}

.sonho-card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
    border-color: rgba(142, 184, 11, 0.2);
}

.sonho-icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f4f7fb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sonho-card-light:hover .sonho-icon-circle {
    background: #e9f0da;
}

.sonho-icon-circle i {
    font-size: 2rem;
    color: #8eb80b;
}

.sonho-card-light h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sonho-card-light p {
    font-size: 0.9rem;
    color: #6a7a8a;
    line-height: 1.5;
}

/* Mensagem de transformação */
.sonhos-mensagem {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 25px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    max-width: 750px;
    margin: 0 auto 40px;
}

.mensagem-before {
    color: #8899aa;
    font-size: 1.1rem;
    text-decoration: line-through;
}

.mensagem-arrow {
    color: #8eb80b;
    font-size: 1.5rem;
}

.mensagem-after {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.mensagem-after strong {
    color: #8eb80b;
    font-weight: 700;
}

/* CTA */
.sonhos-cta-light {
    text-align: center;
}

.btn-sonhos {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 38px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-sonhos:hover {
    background: #2a2a2a;
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.btn-sonhos i {
    transition: transform 0.2s;
}

.btn-sonhos:hover i {
    transform: translateX(5px);
}

.cta-garantia {
    margin-top: 18px;
    color: #7a8a9a;
    font-size: 0.85rem;
}

.cta-garantia i {
    color: #8eb80b;
    margin-right: 6px;
}

/* Responsivo extra */
@media (max-width: 480px) {
    .sonhos-title-light {
        font-size: 1.9rem;
    }
    .sonhos-mensagem {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 30px;
    }
    .mensagem-before, .mensagem-after {
        font-size: 1rem;
    }
}