/* NON-CRITICAL CSS - Below the fold */

.section {
    padding: 60px 15px;
    position: relative;
}

/* 🧱 BLOCO 2 – Benefits Section */
.benefits {
    background: #111111;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-title .highlight {
    color: #FF6B35;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFB366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #FFB366);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.diferencial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.diferencial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFB366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.diferencial:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 53, 0.3);
}

.diferencial:hover::before {
    opacity: 1;
}

.diferencial h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.diferencial p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* 🧱 BLOCO 3 – Como Funciona + Case */
.como-funciona {
    background: #0a0a0a;
}

.funciona-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.funciona-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
}

.funciona-text .highlight {
    color: #FF6B35;
    font-weight: 600;
}

/* Case Real Destacado */
.case-real {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 179, 102, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 60px 0;
    position: relative;
    text-align: left;
}

.case-real::before {
    content: '';
    display: none;
}

.case-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.case-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF6B35;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* 🧱 BLOCO 4 – Reconhecimento */
.reconhecimento {
    background: #111111;
}

.reconhecimento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reconhecimento-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.reconhecimento-text .highlight {
    color: #FF6B35;
    font-weight: 600;
}

.reconhecimento-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reconhecimento-visual img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* 🧱 BLOCO 5 – Investimento */
.investimento {
    background: #0a0a0a;
}

.investimento-intro {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.tipos-investimento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.tipo-investimento {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.tipo-numero {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 20px;
}

.tipo-titulo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.tipo-texto {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.gestao-detalhes {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.gestao-lista {
    list-style: none;
    padding: 0;
}

.gestao-lista li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gestao-lista li::before {
    content: '✅';
    font-size: 1.2rem;
}

.tranquilidade {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* 🧩 BLOCO FINAL – CTA */
.final-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Rodapé com Contatos */
.rodape-info {
    background: #FF6B35;
    text-align: center;
    padding: 50px 20px 30px;
}

.rodape-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contatos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contato-item i {
    font-size: 1.2rem;
}

.contato-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.contato-item a:hover {
    color: #ffffff;
}

@keyframes checkPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Desktop Layout */
@media (min-width: 769px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 40px 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .reconhecimento-content,
    .tipos-investimento {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .final-cta h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .case-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .case-real {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .diferencial {
        margin: 40px 0;
        padding: 25px;
    }

    .contatos {
        flex-direction: column;
        gap: 15px;
    }

    /* Apresentação pessoal responsiva */
    .final-cta-content div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .final-cta-content div[style*="text-align: left"] {
        text-align: center !important;
    }

    .final-cta-content div[style*="width: 200px"] {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .case-stats {
        grid-template-columns: 1fr;
    }
}