:root {
    /* ===== BASE ===== */
    --color-cream: #F3F3F3;
    --color-warm-white: #FFFFFF;
    --color-surface-soft: #F7F6FB;

    /* ===== BRAND / ACCENT (ROXO PRINCIPAL) ===== */
    --color-primary: #065E8B;
    --color-accent: #632CFF;

    /* Roxo (mantido — protagonistas) */
    --color-sage: #632CFF;
    --color-sage-dark: #4F22D6;
    --color-sage-light: #E8E1FF;

    /* Magenta/púrpura claro (usado como acento secundário) */
    --color-terracotta: #C94BFF;
    --color-terracotta-dark: #9D35D8;

    --color-sand: #E9E3FF;

    /* ===== ROSA (presente na logo, usado como sotaque sutil) ===== */
    --color-pink: #EC4899;
    --color-pink-dark: #DB2777;
    --color-pink-soft: #FCE7F3;
    /* Versão muito translúcida para fundos decorativos */
    --color-pink-glow: rgba(236, 72, 153, 0.10);

    /* ===== SUPPORT COLORS ===== */
    --color-blue-light: #2DAAFF;
    --color-teal: #23CED3;

    /* ===== TEXT ===== */
    --color-text: #2A2927;
    --color-text-light: #605D57;
    --color-text-muted: #B0AEAA;

    /* ===== BORDERS / SHADOWS ===== */
    --color-border: rgba(99, 44, 255, 0.12);
    --shadow-soft: 0 4px 24px rgba(42, 41, 39, 0.08);
    --shadow-medium: 0 8px 40px rgba(42, 41, 39, 0.12);
    --shadow-purple: 0 10px 28px rgba(99, 44, 255, 0.26);
    --color-border-strong: rgba(99, 44, 255, 0.22);
    --shadow-accent-soft: 0 10px 30px rgba(99, 44, 255, 0.08);
    /* Sombra rosa (sutil, usada em hovers especiais) */
    --shadow-pink-soft: 0 8px 24px rgba(236, 72, 153, 0.16);

    /* ===== TYPOGRAPHY ===== */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;

    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-warm-white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ===== SKIP LINK (acessibilidade) ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    background: var(--color-sage-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 8px;
    outline: 3px solid var(--color-pink);
    outline-offset: 2px;
}

/* ===== FOCUS VISIBLE GLOBAL (acessibilidade) ===== */
:focus-visible {
    outline: 3px solid var(--color-pink);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--color-pink);
    outline-offset: 3px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo span {
    /* Rosa sutil — homenagem à cor da logo */
    background: linear-gradient(90deg, var(--color-sage-dark), var(--color-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-sage-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    /* Underline com gradiente roxo→rosa (acento sutil) */
    background: linear-gradient(90deg, var(--color-sage), var(--color-pink));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-sage-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-sage) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--color-sage-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    /* Tamanho mínimo de toque (44x44 WCAG AAA) */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação do hambúrguer feita 100% por classe (CSP-safe) */
.nav-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 44, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    /* Substituído magenta por rosa real — acento da marca */
    background: radial-gradient(circle, rgba(236, 72, 153, 0.10) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-sage-dark);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    color: #fff;

    padding: 16px 32px;
    border-radius: 50px;
    border: none;

    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    cursor: pointer;
    box-shadow: 0 8px 22px rgba(99, 44, 255, 0.16);

    transform: translateZ(0);
    backface-visibility: hidden;

    transition:
        box-shadow 0.25s ease,
        filter 0.25s ease,
        transform 0.15s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-sage), var(--color-sage-dark));
    filter: brightness(0.95);
    box-shadow: var(--shadow-purple);
    transform: translate(0, -2px);
}

.btn-primary:active {
    transform: translateZ(0) scale(0.98);
}

.btn-primary svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: scale(1.05);
}

.btn-about-cta {
    box-shadow: 0 8px 24px rgba(99, 44, 255, 0.18);
}

.btn-about-cta:hover {
    box-shadow: var(--shadow-purple);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-text);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--color-sand);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-secondary:hover {
    border-color: var(--color-pink);
    color: var(--color-pink-dark);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 200px 200px 40px 40px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 3/4;
    max-height: 560px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    /* Borda em gradiente roxo→rosa via mask (sutil) */
    border: 3px solid var(--color-pink);
    border-radius: 50%;
    opacity: 0.45;
}

.hero-credentials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-sand);
}

.hero-credential {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-credential svg {
    width: 16px;
    height: 16px;
    color: var(--color-sage);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--color-warm-white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(143, 166, 138, 0.1);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-sage);
    flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--color-sage-dark);
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-highlight {
    background: var(--color-surface-soft);
    /* Borda esquerda com gradiente roxo→rosa (acento) */
    border-left: 4px solid;
    border-image: linear-gradient(180deg, var(--color-accent), var(--color-pink)) 1;
    padding: 22px 26px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.8;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 100px 0;
    background: var(--color-cream);
}

.how-it-works .section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--color-warm-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Detalhe rosa sutil no topo do card no hover */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-sage), var(--color-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    /* Número com gradiente roxo→rosa (acento elegante) */
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-accent);
    opacity: 0.55;
    line-height: 1.1;
    margin-bottom: 16px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 100px 0;
    background: #F7F6FB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(99, 44, 255, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(42, 41, 39, 0.06);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(42, 41, 39, 0.10);
    border-color: rgba(236, 72, 153, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #E8E1FF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #632CFF;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ===== CREDENTIALS / FORMATION ===== */
.credentials {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(99, 44, 255, 0.08), transparent 32%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.06), transparent 32%),
        var(--color-cream);
}

.credentials .container {
    display: block;
}

.credentials-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.credential-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--color-warm-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.credential-card-featured {
    position: relative;
    background: var(--color-warm-white);
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow-accent-soft);
    overflow: hidden;
}

.credential-card-featured::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    /* Gradiente roxo→rosa na barra de destaque */
    background: linear-gradient(180deg, var(--color-accent), var(--color-pink));
}

.credential-card-featured h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--color-text);
    font-variant-numeric: lining-nums tabular-nums;
}

.credential-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--color-accent);
    background: var(--color-sage-light);
    flex-shrink: 0;
}

.credential-icon svg {
    width: 22px;
    height: 22px;
}

.credential-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
}

.credential-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--color-text);
}

.credential-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: var(--transition);
}

.credential-link:hover {
    color: var(--color-pink-dark);
    opacity: 0.95;
}

.credential-card p,
.formation-item p,
.formation-list span {
    color: var(--color-text-light);
    line-height: 1.6;
}

.formation-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
}

.formation-column {
    background: transparent;
    padding: 28px;
    border-radius: 0;
}

.formation-column h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.formation-item {
    padding-left: 18px;
    border-left: 3px solid var(--color-accent);
}

.formation-item+.formation-item {
    margin-top: 22px;
}

.formation-item strong,
.formation-list strong {
    display: block;
    font-size: 0.98rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.formation-list {
    list-style: none;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.formation-list li {
    position: relative;
    padding-left: 24px;
}

.formation-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    /* Marcador com gradiente roxo→rosa */
    background: linear-gradient(135deg, var(--color-accent), var(--color-pink));
    box-shadow: 0 0 0 6px rgba(236, 72, 153, 0.08);
}

@media (max-width: 900px) {

    .credentials-grid,
    .formation-wrapper {
        grid-template-columns: 1fr;
    }

    .credentials {
        padding: 72px 0;
    }
}

@media (max-width: 600px) {

    section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .hero .container {
        gap: 32px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .about,
    .how-it-works,
    .benefits,
    .credentials,
    .faq,
    .cta-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-header,
    .how-it-works .section-header,
    .benefits .section-header,
    .faq .section-header {
        margin-bottom: 40px;
    }

    .about .container {
        gap: 36px;
    }

    .steps-grid,
    .benefits-grid {
        gap: 20px;
    }

    /* Esconder trust-bar em mobile (declarado uma vez só) */
    .trust-bar {
        display: none;
    }

    .credential-card,
    .formation-column {
        padding: 22px;
    }

    .formation-wrapper {
        padding: 16px;
        border-radius: 24px;
    }
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.faq .section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-sand);
}

/* O <h3> wrapper não deve ter estilos visuais — só semântica para a11y */
.faq-question-wrapper {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-sage-dark);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--color-sage);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--color-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
            #632CFF 0%,
            #6B4FE6 55%,
            #EC4899 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .section-title {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section .section-title em {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(252, 231, 243, 0.5);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: var(--color-sage-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-body);
    box-shadow: 0 10px 30px rgba(42, 41, 39, 0.14);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(42, 41, 39, 0.2);
    color: var(--color-pink-dark);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-brand a {
    color: var(--color-sage-light);
    text-decoration: none;
    font-weight: 600;
}

.footer-brand a:hover {
    color: var(--color-pink-soft);
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-pink-soft);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-pink-soft);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    z-index: 899;
    padding: 40px 24px;
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-sand);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--color-sage-dark);
}

.mobile-menu .btn-primary {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
    color: #fff;
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero-text {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-credentials {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
        max-height: 420px;
    }

    .hero-image-decoration {
        display: none;
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
        order: 2;
    }

    .about .container>div:not(.about-image) {
        order: 1;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .credentials .container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-credentials {
        flex-direction: column;
        gap: 12px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ===== ACESSIBILIDADE: respeita prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    /* Mostrar imediatamente o conteúdo escondido pelo reveal */
    .reveal {
        opacity: 1;
        transform: none;
    }

    /* Não pulsar o WhatsApp */
    .whatsapp-float {
        animation: none;
    }

    .hero-content,
    .hero-image {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
