@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 640px) {
    .guarantee-card {
        padding: 2rem 1.5rem;
        border-radius: 26px;
        gap: 2rem;
    }

    .guarantee-badge img {
        max-width: 220px;
        width: 100%;
    }

    .guarantee-content h2 {
        font-size: 1.7rem;
    }

    .guarantee-content p,
    .guarantee-benefits,
    .guarantee-cta {
        text-align: center;
    }

    .guarantee-cta {
        width: 100%;
    }
}

/* Seção O que você recebe (compacta) */
.receive-section {
    padding: 5rem 0 4.2rem;
    background: radial-gradient(circle at top left, rgba(76, 175, 80, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(42, 82, 152, 0.08), transparent 60%),
                #ffffff;
}

.receive-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: center;
}

.receive-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
}

.receive-intro h2 {
    font-size: 2.1rem;
    color: #1f2937;
}

.receive-intro p {
    font-size: 1.08rem;
    line-height: 1.72;
    color: #4a5568;
    max-width: 520px;
}

.receive-ctas,
.audience-ctas,
.section-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.receive-ctas a,
.audience-ctas a,
.section-ctas a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 0.95rem 1.6rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    box-shadow: 0 18px 45px -25px rgba(34, 197, 94, 0.5);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px -25px rgba(34, 197, 94, 0.7);
}

.cta-secondary {
    background: transparent;
    border: 2px solid rgba(37, 99, 235, 0.35);
    color: #1f2937;
    gap: 0.6rem;
}

.cta-secondary i {
    font-size: 1.2rem;
    color: #22c55e;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.08);
}

.receive-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 25px 55px -35px rgba(15, 43, 71, 0.55);
    border: 1px solid rgba(42, 82, 152, 0.12);
}

.receive-card h3 {
    font-size: 1.6rem;
    color: #1f2937;
    margin-bottom: 1.6rem;
}

.receive-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin: 0;
    padding: 0;
}

.receive-benefits li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.receive-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #4CAF50, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 25px -18px rgba(42, 82, 152, 0.55);
}

.receive-benefits strong {
    color: #1f2937;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.3rem;
}

.receive-benefits p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    font-size: 0.97rem;
}

@media (max-width: 992px) {
    .receive-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .receive-intro p {
        max-width: 100%;
    }

    .receive-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .receive-ctas a,
    .audience-ctas a,
    .section-ctas a,
    .final-offer__cta,
    .guarantee-cta,
    .cta-button {
        text-align: center;
        justify-content: center;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        width: 100%;
    }

    .final-offer__cta {
        width: 100%;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .receive-section {
        padding: 3.8rem 0 3.5rem;
    }

    .receive-intro h2 {
        font-size: 1.85rem;
    }

    .receive-ctas,
    .audience-ctas {
        flex-direction: column;
        align-items: stretch;
        margin-top: 2rem;
    }
}

/* Rodapé */
.site-footer {
    padding: 3.5rem 0 3rem;
    background: #0f172a;
    color: #e2e8f0;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem 1.5rem;
}

.footer-brand {
    font-weight: 700;
    font-size: 1rem;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-rights,
.footer-disclaimer,
.footer-legal {
    font-size: 0.9rem;
    color: #cbd5f5;
    line-height: 1.6;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(203, 213, 225, 0.8);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2.5rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }
}

/* Seção de Garantia */
.guarantee-section {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.guarantee-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
    gap: 2.5rem;
    padding: 2.8rem 3rem;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(240, 253, 244, 0.95), rgba(219, 234, 254, 0.95));
    border: 1px solid rgba(148, 197, 255, 0.45);
    box-shadow: 0 30px 70px -45px rgba(15, 118, 110, 0.35);
    align-items: center;
}

.guarantee-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-badge img {
    width: 350px;
    height: auto;
}



.guarantee-content h2 {
    font-size: 2.1rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: #334155;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.guarantee-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #334155;
    font-size: 1.02rem;
}

.guarantee-benefits li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.guarantee-benefits i {
    color: #2563eb;
    font-size: 1.05rem;
    margin-top: 0.2rem;
}

.guarantee-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(34, 197, 94, 0.22));
    border-radius: 16px;
    padding: 1.15rem 1.4rem;
    color: #0f172a;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

@media (max-width: 992px) {
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.4rem 2rem;
        gap: 2.4rem;
    }

    .guarantee-benefits {
        align-items: center;
    }

    .guarantee-benefits li {
        justify-content: center;
    }

    .guarantee-cta {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .guarantee-section {
        padding: 3.8rem 0 4rem;
    }

    .badge-circle {
        width: 160px;
        height: 160px;
        border-width: 6px;
    }

    .badge-number {
        font-size: 2.4rem;
    }

    .guarantee-content h2 {
        font-size: 1.8rem;
    }
}

/* Seção Oferta Final */
.final-offer {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 55%),
                linear-gradient(180deg, #ffffff 0%, #eef3ff 100%);
}

.final-offer__wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr);
    gap: 3.5rem;
    align-items: stretch;
}

.final-offer__content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.final-offer__content h2 {
    font-size: 2.25rem;
    color: #0f172a;
    line-height: 1.25;
}

.final-offer__subtitle {
    font-size: 1.15rem;
    color: #1f2937;
    line-height: 1.75;
    max-width: 90%;
}

.final-offer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.final-offer__list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: #1f2937;
    line-height: 1.65;
    font-size: 1.02rem;
}

.final-offer__list i {
    color: #2563eb;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.final-offer__legal {
    font-size: 0.95rem;
    color: #475569;
}

.final-offer__card {
    background: #f3f5f9;
    border-radius: 32px;
    padding: 3rem 2.6rem;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    box-shadow: 0 30px 70px -40px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.25);
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-offer__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(34, 197, 94, 0.12));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.final-offer__card:hover::before {
    opacity: 1;
}

.final-offer__card > * {
    position: relative;
    z-index: 1;
}

.card-safe {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
    text-align: center;
}

.card-safe i {
    color: #16a34a;
    font-size: 1.05rem;
}

.card-price-block {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.3rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 15px 35px -25px rgba(15, 23, 42, 0.25);
}

.card-tag {
    font-size: 1.05rem;
    color: #475569;
    font-weight: 500;
}

.old-price {
    position: relative;
    display: inline-block;
    color: #64748b;
    padding: 0 0.35rem;
}

.old-price::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 48%;
    height: 3px;
    background: rgba(248, 113, 113, 0.85);
    border-radius: 999px;
}

.card-main-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.02em;
}

.card-note {
    font-size: 1.05rem;
    color: #334155;
    font-weight: 500;
}

.final-offer__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.6rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 20px 45px -25px rgba(34, 197, 94, 0.6);
}

.final-offer__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px -25px rgba(34, 197, 94, 0.75);
}

.card-payments {
    text-align: center;
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
}

.card-payments img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

@media (max-width: 992px) {
    .final-offer__wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .final-offer__card {
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .final-offer {
        padding: 3.6rem 0;
    }

    .final-offer__content h2 {
        font-size: 1.9rem;
    }

    .final-offer__subtitle {
        max-width: 100%;
    }
}

/* Seção de Argumento de Risco */
.risk-argument {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.08), rgba(76, 175, 80, 0.08));
}

.risk-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}

.risk-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: #c53030;
    background: rgba(197, 48, 48, 0.12);
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.3rem;
}

.risk-intro h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.risk-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
}

.risk-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
}

.risk-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid rgba(197, 48, 48, 0.18);
    box-shadow: 0 24px 50px -32px rgba(94, 17, 17, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.risk-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(197, 48, 48, 0.2), rgba(42, 82, 152, 0.2));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.risk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -35px rgba(94, 17, 17, 0.5);
}

.risk-card:hover::after {
    opacity: 0.18;
}

.risk-card > * {
    position: relative;
    z-index: 1;
}

.risk-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #c53030, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.risk-card h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.risk-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.98rem;
}

@media (max-width: 992px) {
    .risk-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .risk-argument {
        padding: 3.5rem 0;
    }

    .risk-intro h2 {
        font-size: 1.75rem;
    }
}

/* Seção de Comparação */
.comparison-section {
    padding: 5rem 0 4.5rem;
    background: radial-gradient(circle at top right, rgba(42, 82, 152, 0.07), transparent 55%),
                #ffffff;
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.comparison-card {
    border-radius: 24px;
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(42, 82, 152, 0.1);
    box-shadow: 0 18px 45px -35px rgba(15, 43, 71, 0.6);
    backdrop-filter: blur(6px);
}

.comparison-card header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.comparison-card header span {
    font-size: 0.95rem;
    color: rgba(31, 41, 55, 0.8);
}

.comparison-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    color: rgba(31, 41, 55, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.comparison-card li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.comparison-card li i {
    margin-top: 0.2rem;
    font-size: 1rem;
}

.comparison-card.is-neutral {
    background: rgba(255, 255, 255, 0.92);
}

.comparison-card.is-neutral header h3 {
    color: #1f2937;
}

.comparison-card.is-neutral li i {
    color: #718096;
}

.comparison-card.is-warning {
    background: linear-gradient(145deg, rgba(255, 243, 224, 0.95), rgba(255, 234, 209, 0.9));
    border-color: rgba(245, 158, 11, 0.28);
}

.comparison-card.is-warning header h3 {
    color: #c05621;
}

.comparison-card.is-warning li i {
    color: #c05621;
}

.comparison-card.is-highlight {
    background: linear-gradient(145deg, rgba(42, 82, 152, 0.95), rgba(76, 175, 80, 0.92));
    border-color: rgba(42, 82, 152, 0.45);
    color: #f7fafc;
}

.comparison-card.is-highlight header h3,
.comparison-card.is-highlight header span,
.comparison-card.is-highlight ul {
    color: #f7fafc;
}

.comparison-card.is-highlight li i {
    color: #fbd38d;
}

.comparison-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.comparison-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 3.5rem 0;
    }

    .comparison-card {
        padding: 1.8rem 1.6rem;
    }
}

/* Seção de Oferta */
.offer-section {
    padding: 5rem 0;
    background: radial-gradient(circle at top right, rgba(42, 82, 152, 0.12), transparent 55%),
                linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.offer-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.offer-intro h2 {
    font-size: 2.1rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.offer-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

.offer-overview {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.offer-overview li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.3rem;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    border: 1px solid rgba(42, 82, 152, 0.12);
    box-shadow: 0 18px 45px -35px rgba(15, 43, 71, 0.55);
}

.overview-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: linear-gradient(135deg, #4CAF50, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.offer-overview strong {
    color: #1f2937;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.3rem;
}

.offer-overview p {
    color: #4a5568;
    margin: 0;
    line-height: 1.55;
    font-size: 0.98rem;
}

.offer-details {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 25px 55px -35px rgba(15, 43, 71, 0.55);
    border: 1px solid rgba(42, 82, 152, 0.12);
    backdrop-filter: blur(6px);
}

.offer-details h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.8rem;
}

.offer-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}

.offer-benefits li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #4CAF50, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 12px 25px -18px rgba(42, 82, 152, 0.65);
}

.offer-benefits strong {
    color: #1f2937;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.4rem;
}

.offer-benefits p {
    color: #4a5568;
    margin: 0;
    line-height: 1.55;
    font-size: 0.98rem;
}

@media (max-width: 992px) {
    .offer-wrapper {
        grid-template-columns: 1fr;
    }

    .offer-details {
        padding: 2.2rem 2rem;
    }
}

@media (max-width: 768px) {
    .offer-section {
        padding: 3.5rem 0;
    }

    .offer-intro h2 {
        font-size: 1.8rem;
    }

    .offer-benefits li {
        gap: 0.9rem;
    }
}

/* Seção Autoridade */
.authority-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
}

.authority-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.authority-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a5298;
    background: rgba(42, 82, 152, 0.08);
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.authority-text h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.authority-text p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.authority-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.authority-highlights li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: #1f2937;
    line-height: 1.5;
    font-size: 0.99rem;
}

.authority-highlights i {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.authority-portrait {
    position: relative;
}

.portrait-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 65px -35px rgba(15, 43, 71, 0.6);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(42, 82, 152, 0.18));
    padding: 1.1rem;
}

.portrait-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .authority-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .authority-portrait {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .authority-section {
        padding: 3.5rem 0;
    }

    .authority-text h2 {
        font-size: 1.8rem;
    }
}

/* Seção FAQ */
.faq-section {
    padding: 5rem 0;
    background: radial-gradient(circle at top left, rgba(76, 175, 80, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(42, 82, 152, 0.08), transparent 60%),
                #ffffff;
}

.faq-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-header p {
    color: #4a5568;
    font-size: 1.02rem;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    border: 1px solid rgba(42, 82, 152, 0.1);
    box-shadow: 0 18px 45px -35px rgba(15, 43, 71, 0.6);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
    border-color: rgba(76, 175, 80, 0.45);
    box-shadow: 0 24px 55px -32px rgba(15, 43, 71, 0.65);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    padding: 1.4rem 1.6rem;
    font-size: 1.02rem;
    color: #1f2937;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    width: 26px;
    height: 26px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: #2a5298;
    transition: transform 0.25s ease;
    transform-origin: center;
}

.faq-icon::before {
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.6rem;
}

.faq-item.open .faq-answer {
    padding-bottom: 1.4rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin-top: 0.6rem;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3.5rem 0;
    }

    .faq-header h2 {
        font-size: 1.7rem;
    }

    .faq-question {
        padding: 1.2rem 1.3rem;
        font-size: 0.98rem;
    }

    .faq-answer {
        padding: 0 1.3rem;
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Estilos do Hero */
 .hero {
    position: relative;
    background: radial-gradient(circle at 10% 15%, rgba(34, 197, 94, 0.12), transparent 55%),
                radial-gradient(circle at 80% 8%, rgba(37, 99, 235, 0.1), transparent 60%),
                linear-gradient(180deg, #f7fbff 0%, #ffffff 65%, #f4faf5 100%);
    color: #1f2a44;
    padding: 60px 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.22), rgba(34, 197, 94, 0));
    filter: blur(40px);
    z-index: 0;
}

.hero::before {
    width: 480px;
    height: 480px;
    top: -220px;
    left: -160px;
}

.hero::after {
    width: 380px;
    height: 380px;
    bottom: -180px;
    right: -140px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0));
}

.hero-content {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 18px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 0 10px;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    padding: 0 10px;
    line-height: 1.6;
}

/* Lista de benefícios */
.benefits-list {
    list-style: none;
    margin: 0 auto 2.2rem;
    padding: 0 10px;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: center;
}

.benefits-list li {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.55;
    text-align: left;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.benefits-list i {
    color: #22c55e;
    font-size: 1.15rem;
    margin-top: 0.1rem;
}

/* Estilos do Vídeo */
.video-container {
    margin: 0 auto 2.8rem;
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    max-width: 780px;
    height: 0;
    overflow: visible;
    border-radius: 24px;
}

/* Garante que o iframe ocupe toda a área responsiva do container */
.video-container iframe,
.video-container .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 32px 65px -30px rgba(15, 23, 42, 0.55);
}

.video-container::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(59, 130, 246, 0.18));
    filter: blur(18px);
    z-index: 0;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.28), rgba(29, 78, 216, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 24px;
    box-shadow: 0 32px 65px -30px rgba(15, 23, 42, 0.55);
    overflow: hidden;
}

.video-placeholder i {
    position: relative;
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.9;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 1;
}

.video-placeholder:hover i {
    transform: scale(1.08);
    opacity: 1;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: transform 0.4s ease;
}

.video-placeholder:hover::after {
    transform: scale(1.08);
}

/* Botão CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2a5298 100%);
    color: white;
    text-decoration: none;
    padding: 0.95rem 1.8rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 1.5rem 0;
    border: none;
    cursor: pointer;
    box-shadow: 0 18px 45px -25px rgba(34, 197, 94, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px -25px rgba(34, 197, 94, 0.7);
}

/* Estilos para a seção Sobre o Curso */
.about-course {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(243, 250, 245, 0.85) 0%, #ffffff 65%);
    position: relative;
    overflow: hidden;
}

.about-course::before,
.about-course::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    z-index: 0;
}

.about-course::before {
    top: -140px;
    right: -160px;
    width: 320px;
    height: 320px;
    background: rgba(42, 82, 152, 0.14);
}

.about-course::after {
    bottom: -160px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: rgba(76, 175, 80, 0.16);
}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1.15;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.about-image {
    flex: 0.85;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 28px 65px -40px rgba(15, 23, 42, 0.4);
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    max-width: 420px;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.14), rgba(42, 82, 152, 0.12));
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 28px 65px -40px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(42, 82, 152, 0.18);
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 65%);
    top: -60px;
    right: -80px;
}

.image-placeholder i {
    font-size: 4.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    opacity: 0.75;
}

.image-placeholder span {
    color: #2a5298;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-course h2 {
    font-size: 2.3rem;
    color: #12324b;
    line-height: 1.25;
}

.about-course p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.75;
}

.highlight {
    color: #1d4ed8;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.45), rgba(29, 78, 216, 0.35));
    z-index: -1;
    border-radius: 3px;
}

.features-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-badge {
    align-self: flex-start;
    background: rgba(29, 78, 216, 0.12);
    color: #1d4ed8;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.features-header h3 {
    font-size: 1.35rem;
    color: #1f2937;
    line-height: 1.5;
    max-width: 520px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature {
    background: #ffffff;
    padding: 2rem 1.75rem;
    border-radius: 20px;
    box-shadow: 0 24px 45px -35px rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(37, 99, 235, 0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 14px;
    border: 1px dashed rgba(15, 118, 110, 0.18);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.feature:hover::after {
    opacity: 0.65;
    transform: scale(1.02);
}

.feature > * {
    position: relative;
    z-index: 1;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px -35px rgba(29, 78, 216, 0.45);
}

.feature-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #16a34a 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 1.4rem;
    box-shadow: 0 18px 38px -25px rgba(29, 78, 216, 0.55);
    animation: floatIcon 4.8s ease-in-out infinite;
}

.feature h3 {
    color: #0f172a;
    margin-bottom: 0.55rem;
    font-size: 1.18rem;
    font-weight: 700;
}

.feature p {
    color: #475569;
    font-size: 0.97rem;
    margin: 0;
    line-height: 1.6;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .about-image {
        margin-top: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2.5rem auto 0;
    }

    .feature {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .about-course {
        padding: 3.5rem 0 3rem;
    }

    .about-course h2 {
        font-size: 1.8rem;
    }

    .image-placeholder {
        min-height: 260px;
    }
}

/* Seção de Provas Sociais */
.social-proof {
    padding: 5rem 0 4.8rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(236, 249, 244, 0.6) 55%, rgba(226, 241, 255, 0.45) 100%);
    position: relative;
    overflow: hidden;
}

.proof-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.proof-eyebrow {
    display: inline-block;
    padding: 0.45rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1d4ed8;
    background: rgba(29, 78, 216, 0.12);
}

.proof-header h2 {
    font-size: 2.2rem;
    color: #0f172a;
}

.proof-header p {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.65;
}

.proof-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.proof-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    margin: 0 -0.75rem;
}

.proof-slide {
    flex: 0 0 calc(100% / 3);
    box-sizing: border-box;
    padding: 0 0.75rem;
}

.proof-slide img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.4);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 3.8rem 0 3.5rem;
    }

    .proof-header h2 {
        font-size: 1.85rem;
    }

    .proof-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .proof-slide {
        flex: 0 0 100%;
    }
}

.the-method {
    padding: 5rem 0;
    background: radial-gradient(circle at top left, rgba(76, 175, 80, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(42, 82, 152, 0.12), transparent 60%),
                #ffffff;
    position: relative;
}

.the-method::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 8%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.12);
    filter: blur(30px);
    z-index: 0;
}

.the-method::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: 6%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(42, 82, 152, 0.12);
    filter: blur(35px);
    z-index: 0;
}

.the-method .container {
    position: relative;
    z-index: 1;
}

.method-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.method-intro h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.method-intro p {
    font-size: 1.05rem;
    color: #4a5568;
    text-align: left;
}

/* Texto dos pilares do MZPA dentro do método */
.method-pillars {
    text-align: center;
    margin-top: 0.8rem;
}

.method-pillars > p {
    font-weight: 600;
    color: #1f2937;
}

.pillars-list {
    list-style: disc inside;
    margin: 0.4rem auto 0;
    padding: 0;
    line-height: 1.6;
}

.method-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2.8rem;
    margin-bottom: 4rem;
    flex-wrap: nowrap;
    position: relative;
}

/* Ilustração abaixo das etapas */
.method-illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 2.5rem;
}

.method-illustration img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.method-step {
    background: linear-gradient(145deg, #ffffff 0%, #f2f7ff 100%);
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 22px 50px -32px rgba(12, 35, 62, 0.55);
    border: 1px solid rgba(42, 82, 152, 0.12);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    min-width: 240px;
    max-width: 270px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-step::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(42, 82, 152, 0.18));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.method-step:hover::after {
    opacity: 0.12;
}

.method-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -35px rgba(15, 43, 71, 0.7);
}

.method-step > * {
    position: relative;
    z-index: 1;
}

.step-marker {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #22c55e 0%, #2563eb 100%);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-details h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 0.6rem;
}

.step-details p {
    font-size: 0.98rem;
    color: #5a6b85;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    .method-steps {
        gap: 2rem;
    }

    .method-step {
        max-width: 260px;
    }
}

@media (max-width: 960px) {
    .method-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
    }

    .method-step {
        width: 100%;
        max-width: 420px;
    }

    .method-illustration img {
        border-radius: 0;
        max-width: 560px;
    }

    .method-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .method-illustration {
        margin: 0.6rem auto 1.8rem;
    }

    .method-illustration img {
        max-width: 92vw;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .method-illustration img {
        max-width: 94vw;
        border-radius: 0;
    }
}

/* ===== 5 Pilares (ilustração restaurada) ===== */
.pillars-illustration {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 1.5rem 0;
}

/* Esconde a imagem mobile por padrão */
.pillars-illustration.mobile-only {
    display: none;
}

/* Estilo para a imagem de desktop */
.pillars-illustration:not(.mobile-only) {
    display: block;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .pillars-illustration:not(.mobile-only) {
        display: none;
    }
    
    .pillars-illustration.mobile-only {
        display: block;
    }
}

.pillars-illustration img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* Cabeçalho da seção dos 5 níveis */
.pillars-section {
    padding: 3.8rem 0 2.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.pillars-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pillars-header h3 {
    font-size: 1.8rem;
    color: #0f172a;
}

.pillars-subtitle {
    color: #475569;
    font-size: 1.02rem;
}

@media (max-width: 960px) {
    .pillars-illustration img {
        max-width: 700px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .pillars-section {
        padding: 3rem 0 1.8rem;
    }

    .pillars-header h3 {
        font-size: 1.5rem;
    }

    .pillars-illustration {
        margin: 0.6rem auto 0;
    }

    .pillars-illustration:not(.mobile-only) {
        display: none; /* Esconde a imagem original no mobile */
    }
    
    .pillars-illustration.mobile-only {
        display: block; /* Mostra apenas a imagem mobile */
        text-align: center;
        margin: 2rem auto;
        max-width: 100%;
    }
    
    .pillars-illustration.mobile-only img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .pillars-illustration img {
        max-width: 94vw;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .pillars-illustration img {
        max-width: 95vw;
        border-radius: 0;
    }
}

.journey {
    text-align: center;
    margin-top: 3.5rem;
}

.journey h3 {
    font-size: 1.7rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.journey-subtitle {
    color: #475569;
    margin-bottom: 2.8rem;
    font-size: 1.02rem;
}

.journey-brainstorm {
    position: relative;
    width: min(100%, 880px);
    margin: 0 auto;
    padding: 5rem 2rem;
    border-radius: 32px;
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.12), transparent 60%),
                radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.1), transparent 55%),
                #f8fbff;
    min-height: 520px;
    overflow: hidden;
}

.journey-brainstorm::after {
    content: '';
    position: absolute;
    inset: 1.5rem;
    border-radius: 26px;
    border: 1px dashed rgba(148, 163, 184, 0.25);
    pointer-events: none;
}

.journey-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    min-height: 220px;
    padding: 1.8rem 1.5rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 40px 80px -45px rgba(15, 23, 42, 0.55);
    z-index: 3;
    text-align: center;
}

.core-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.journey-core strong {
    font-size: 1.15rem;
    line-height: 1.4;
}

.journey-node {
    position: absolute;
    width: 200px;
    padding: 1.25rem 1.15rem;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 55px -40px rgba(15, 23, 42, 0.45);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    align-items: flex-start;
    z-index: 4;
}

.journey-node::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.28), rgba(34, 197, 94, 0.28));
    border-radius: 999px;
    z-index: -1;
}

.node-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(34, 197, 94, 0.85));
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 16px 30px -22px rgba(37, 99, 235, 0.6);
}

.node-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.05rem;
    line-height: 1.4;
}

.journey-node--1 {
    top: 4%;
    left: 50%;
    transform: translate(-50%, -20%);
}

.journey-node--1::after {
    width: 3px;
    height: 140px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.journey-node--2 {
    top: 32%;
    left: 4%;
    transform: translateY(-50%);
}

.journey-node--2::after {
    width: 180px;
    height: 3px;
    top: 52%;
    left: calc(100% - 16px);
    transform: translateY(-50%);
}

.journey-node--3 {
    top: 32%;
    right: 4%;
    transform: translateY(-50%);
}

.journey-node--3::after {
    width: 180px;
    height: 3px;
    top: 52%;
    right: calc(100% - 16px);
    transform: translateY(-50%);
}

.journey-node--4 {
    bottom: 8%;
    left: 16%;
}

.journey-node--4::after {
    width: 3px;
    height: 165px;
    top: -125px;
    left: 58%;
    transform: translateX(-50%) rotate(-28deg);
    transform-origin: top center;
}

.journey-node--5 {
    bottom: 8%;
    right: 16%;
}

.journey-node--5::after {
    width: 3px;
    height: 165px;
    top: -125px;
    left: 42%;
    transform: translateX(-50%) rotate(28deg);
    transform-origin: top center;
}

@media (max-width: 1024px) {
    .journey-brainstorm {
        padding: 4rem 1.5rem;
        min-height: 480px;
    }

    .journey-node {
        width: 180px;
    }

    .journey-node--2 {
        left: 6%;
    }

    .journey-node--3 {
        right: 6%;
    }

    .journey-node--4 {
        left: 18%;
    }

    .journey-node--5 {
        right: 18%;
    }
}

@media (max-width: 900px) {
    .journey-brainstorm {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        padding: 3.2rem 1.5rem;
        min-height: unset;
    }

    .journey-brainstorm::after {
        display: none;
    }

    .journey-core {
        position: static;
        transform: none;
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .journey-node {
        position: static;
        transform: none;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .journey-node::after {
        display: none;
    }
}

@media (max-width: 520px) {
    .journey h3 {
        font-size: 1.5rem;
    }

    .journey-subtitle {
        font-size: 0.98rem;
    }

    .journey-core {
        max-width: 280px;
    }

    .journey-node {
        max-width: 320px;
    }
}

.audience {
    padding: 5.2rem 0 4.8rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, rgba(42, 82, 152, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.audience::before,
.audience::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.75;
    z-index: 0;
}

.audience::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -160px;
    background: rgba(42, 82, 152, 0.12);
}

.audience::after {
    width: 360px;
    height: 360px;
    bottom: -160px;
    left: -140px;
    background: rgba(34, 197, 94, 0.12);
}

.audience-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.2rem;
    position: relative;
    z-index: 1;
}

.audience-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a5298;
    background: rgba(42, 82, 152, 0.08);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
}

.audience-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin: 1.3rem 0 1rem;
    line-height: 1.35;
}

.audience-header p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
}

.audience-bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}

.audience-bubble {
    position: relative;
    padding: 2rem 1.8rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42, 82, 152, 0.12);
    box-shadow: 0 20px 45px -30px rgba(15, 43, 71, 0.45);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: bubbleFloat 6s ease-in-out infinite;
}

.audience-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.18), rgba(42, 82, 152, 0.18));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.audience-bubble:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px -32px rgba(15, 43, 71, 0.55);
}

.audience-bubble:hover::before {
    opacity: 0.22;
}

.audience-bubble > * {
    position: relative;
    z-index: 1;
}

/* Method Section */
.the-method {
    padding: 5rem 0;
    background-color: #fff;
}

.the-method h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: #1f2937;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-text {
    flex: 1;
}

.method-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.method-illustration {
    flex: 1;
    display: none; /* Hide by default */
    justify-content: center;
    align-items: center;
}

.method-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 992px) {
    .method-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    
    .method-illustration {
        display: flex; /* Show on mobile */
        margin-top: 2rem;
    }
    
    .method-text p {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }
}

.bubble-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2a5298, #4CAF50);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 12px 25px -18px rgba(42, 82, 152, 0.8);
}

.audience-bubble p {
    margin: 0;
    color: #1f2937;
    line-height: 1.55;
    font-size: 0.98rem;
}

.audience-bubble strong {
    color: #1b365b;
}

.audience-ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cta-primary,
.cta-secondary {
    position: relative;
    overflow: hidden;
}

.cta-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cta-primary:hover::after {
    opacity: 1;
}

.cta-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.18));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: -1;
}

.cta-secondary:hover::after {
    opacity: 1;
}

.final-offer__card {
    background: #f3f5f9;
    border-radius: 32px;
    padding: 3rem 2.6rem;
}

@media (max-width: 768px) {
    .audience {
        padding: 3.5rem 0 3rem;
    }

    .audience-header h2 {
        font-size: 1.7rem;
    }

    .audience-bubble {
        padding: 1.8rem 1.5rem;
    }

    .audience-ctas {
        margin-top: 2rem;
        flex-direction: column;
        align-items: stretch;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero {
        padding: 15px 0;
    }
    
    h1 {
        font-size: 1.75rem; /* 28px */
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    h2 {
        font-size: 1.75rem !important; /* 28px */
        text-align: center !important;
    }
    
    .subheadline {
        font-size: 0.9375rem; /* 15px */
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .benefits-list {
        margin-bottom: 0.8rem;
        gap: 0.5rem;
        justify-content: flex-start; /* Alinha os itens à esquerda */
        margin-left: 0;
        padding-left: 1rem; /* Adiciona espaço para os bullets */
    }
    
    .benefits-list li {
        font-size: 0.9375rem; /* 15px */
        padding: 0.4rem 0.7rem;
        margin: 0.2rem 0.15rem 0.2rem 0; /* Ajusta as margens */
        text-align: left; /* Garante que o texto fique alinhado à esquerda */
        line-height: 1.35; /* reduz altura da linha dos bullets */
    }
    
    .video-container {
        padding-bottom: 56.25%;
        margin: 0.8rem auto;
        width: 100%;
        border-radius: 16px;
    }

    .video-container iframe,
    .video-container .hero-video {
        border-radius: 16px;
    }
    
    .video-placeholder i {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
        width: 90%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding-bottom: 58%;
        width: 100%;
    }
}
