/* ============================================
   MÉTODO CUIDAR E PROSPERAR - LANDING PAGE
   Paleta: preto, cinza escuro, cinza claro, rosa, rosa claro
   ============================================ */

:root {
    --color-black: #1a1a1a;
    --color-dark-gray: #4a4a4a;
    --color-mid-gray: #767676;
    --color-light-gray: #f5f5f5;
    --color-bg-soft: #fafafa;
    --color-border: #e5e5e5;
    --color-pink: #ff6b8a;
    --color-pink-hover: #f04e72;
    --color-pink-dark: #cc3366;
    --color-light-pink: #ffd9e1;
    --color-light-pink-bg: #fff4f6;
    --color-white: #ffffff;
    --color-success: #2bb673;

    --font-serif: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.12);

    --max-width: 1200px;
    --max-width-narrow: 820px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, audio {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== LAYOUT ===== */
.section {
    padding: 90px 24px;
    position: relative;
}

.section-light {
    background: var(--color-light-gray);
}

.section-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.container-narrow {
    max-width: var(--max-width-narrow);
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-black);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-dark-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.section-text {
    font-size: 1.05rem;
    color: var(--color-dark-gray);
    margin-bottom: 18px;
    line-height: 1.7;
}

.section-text-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-text-emphasis {
    font-weight: 600;
    color: var(--color-pink);
    font-size: 1.15rem;
    margin-top: 24px;
}

.highlight {
    color: var(--color-pink);
}

/* ===== HERO ===== */
.section-hero {
    background: linear-gradient(180deg, var(--color-light-pink-bg) 0%, var(--color-white) 100%);
    text-align: center;
    padding-top: 60px;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo {
    width: 180px;
    height: auto;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    max-width: 900px;
    margin: 0 auto 18px;
    color: var(--color-black);
}

.hero-highlight {
    color: var(--color-pink-dark);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: var(--color-dark-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* ===== HERO PHOTO (placeholder enquanto VSL não é gravado) ===== */
.hero-photo {
    width: 80vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    margin: 0 auto 36px;
    background: var(--color-light-pink-bg);
    border: 2px dashed var(--color-light-pink);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mid-gray);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Quando uma foto real é inserida, remove o estilo de placeholder */
.hero-photo:has(img) {
    background: transparent;
    border: none;
    padding: 0;
}

.hero-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== VSL PLAYER ===== */
.vsl-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.vsl-container {
    position: relative;
    width: 80vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.vsl-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsl-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.vsl-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.vsl-play-btn {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255, 107, 138, 0.5);
    transition: transform 0.2s ease;
}

.vsl-play-btn:hover {
    transform: scale(1.08);
}

.vsl-play-btn svg {
    width: 36px;
    height: 36px;
    margin-left: 4px;
}

.vsl-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.vsl-container:hover .vsl-controls,
.vsl-container.playing .vsl-controls {
    opacity: 1;
}

.vsl-ctrl-btn {
    color: var(--color-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.vsl-ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.vsl-progress {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    overflow: hidden;
    cursor: not-allowed; /* Não permite avançar */
    pointer-events: none;
}

.vsl-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-pink);
    transition: width 0.2s linear;
}

.vsl-time {
    color: var(--color-white);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    min-width: 90px;
    text-align: center;
}

/* ===== SOCIAL PROOFS ===== */
.social-proofs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    margin-bottom: 32px;
}

.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.proof-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pink);
}

.proof-icon svg {
    width: 100%;
    height: 100%;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.25s ease;
    cursor: pointer;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-pink);
    color: var(--color-white);
    box-shadow: 0 8px 22px rgba(255, 107, 138, 0.35);
}

.btn-primary:hover {
    background: var(--color-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 138, 0.45);
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-dark-gray);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(180deg, #ffd0a8 0%, #f5a874 100%);
    color: var(--color-black);
    width: 100%;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 22px rgba(245, 168, 116, 0.35);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 168, 116, 0.45);
}

.btn-whats {
    background: #25d366;
    color: var(--color-white);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.btn-whats:hover {
    background: #1eb955;
    transform: translateY(-2px);
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 50px;
}

.guarantee-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    font-size: 0.85rem;
    color: var(--color-mid-gray);
    margin-top: 7px;
}

.guarantee-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.guarantee-row svg {
    color: var(--color-pink);
}

/* ===== IMAGE GRIDS / PLACEHOLDERS ===== */
.image-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.image-grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 624px;
    margin: 0 auto 32px;
}

/* Card de matéria tem o tamanho natural da imagem, sem moldura branca */
.image-grid-2 .news-placeholder:has(img) {
    aspect-ratio: auto;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.image-grid-2 .news-placeholder > img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.image-placeholder,
.news-placeholder,
.testimonial-img {
    aspect-ratio: 1 / 1;
    background: var(--color-light-pink-bg);
    border: 2px dashed var(--color-light-pink);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-mid-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.image-placeholder:hover,
.news-placeholder:hover,
.testimonial-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Quando uma imagem real for inserida dentro do placeholder,
   o estilo "vazio" (borda tracejada e fundo) some automaticamente */
.image-placeholder:has(img),
.news-placeholder:has(img),
.testimonial-img:has(img) {
    background: transparent;
    border: none;
    padding: 0;
    overflow: hidden;
}

.image-placeholder > img,
.news-placeholder > img,
.testimonial-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Exceção: o print do depoimento (placeholder vertical) deve aparecer inteiro, sem corte */
.image-placeholder-tall > img {
    object-fit: contain;
}

.news-placeholder {
    aspect-ratio: 4 / 5;
    background: var(--color-white);
    border: 2px dashed var(--color-border);
}

.image-placeholder-tall {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

/* ===== AUDIO + PRINT (SEÇÃO 3) ===== */
.audio-and-print {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.audio-card {
    background: var(--color-light-pink-bg);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.audio-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audio-icon svg {
    width: 32px;
    height: 32px;
}

.audio-player {
    width: 100%;
    margin-bottom: 12px;
}

.audio-caption {
    font-size: 0.9rem;
    color: var(--color-mid-gray);
    margin-top: 10px;
}

/* ===== NOME DA AUTORA + ALTURA EQUIVALENTE (SEÇÃO 3) ===== */
.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    height: 100%;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--color-pink-dark);
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Card de áudio define a altura natural da linha */
.testimonial-item > .audio-card {
    width: 100%;
    flex-shrink: 0;
}

/* Print do depoimento estica para combinar com a altura do card de áudio */
.testimonial-item > .image-placeholder-tall {
    aspect-ratio: auto;
    max-width: 100%;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
}

/* ===== TESTIMONIALS ACCORDION (SEÇÃO 4) ===== */
.testimonials-accordion {
    position: relative;
    overflow: hidden;
    max-height: 720px;
    transition: max-height 0.6s ease;
    margin-bottom: 24px;
}

.testimonials-accordion.expanded {
    max-height: 12000px;
}

/* Layout masonry: colunas de largura fixa, altura natural de cada print */
.testimonials-grid {
    columns: 4;
    column-gap: 16px;
}

.testimonials-grid .testimonial-img {
    width: 100%;
    margin: 0 0 16px 0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    display: block;
}

/* Quando há imagem real, libera a altura para o tamanho natural do print */
.testimonials-grid .testimonial-img:has(img) {
    aspect-ratio: auto;
    height: auto;
}

.testimonials-grid .testimonial-img > img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Placeholders ainda em quadrado (até serem trocados por imagens reais) */
.testimonials-grid .testimonial-img:not(:has(img)) {
    aspect-ratio: 1 / 1;
}

.hidden-testimonial {
    /* Visíveis no DOM mas ocultadas pelo overflow do accordion */
}

.testimonials-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, var(--color-light-gray) 80%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.testimonials-accordion.expanded .testimonials-fade {
    opacity: 0;
}

.testimonials-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

#testimonialsToggleIcon {
    transition: transform 0.3s ease;
}

#testimonialsToggleIcon.rotated {
    transform: rotate(180deg);
}

/* ===== CHECK LIST (SEÇÃO 5) ===== */
.check-list {
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    font-size: 1.05rem;
    color: var(--color-dark-gray);
    line-height: 1.6;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-light-pink);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b8a'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}

/* ===== TRILHA MCP (SEÇÃO 6) ===== */
.trilha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.trilha-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--color-border);
}

.trilha-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.trilha-flag {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-white);
}

.trilha-flag svg {
    width: 26px;
    height: 26px;
}

.flag-1 { background: #ef4444; }  /* Vermelho */
.flag-2 { background: #f97316; }  /* Laranja */
.flag-3 { background: #f59e0b; }  /* Amarelo / âmbar */
.flag-4 { background: #3b82f6; }  /* Azul */
.flag-5 { background: #22c55e; }  /* Verde */

.trilha-level {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Cor do texto um tom mais escuro do que a bandeira, para garantir contraste no fundo branco */
.flag-1 ~ .trilha-level { color: #dc2626; }  /* Vermelho */
.flag-2 ~ .trilha-level { color: #ea580c; }  /* Laranja */
.flag-3 ~ .trilha-level { color: #d97706; }  /* Amarelo / âmbar */
.flag-4 ~ .trilha-level { color: #2563eb; }  /* Azul */
.flag-5 ~ .trilha-level { color: #16a34a; }  /* Verde */

.trilha-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--color-black);
    line-height: 1.25;
}

.trilha-mission {
    color: var(--color-dark-gray);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* ===== COMPARATIVO (SEÇÃO 7) ===== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.compare-card {
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
}

.compare-bad {
    background: var(--color-light-gray);
    border-top: 4px solid var(--color-mid-gray);
}

.compare-good {
    background: var(--color-light-pink-bg);
    border-top: 4px solid var(--color-pink);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-border);
}

.compare-bad .compare-header svg {
    color: var(--color-mid-gray);
}

.compare-good .compare-header svg {
    color: var(--color-success);
}

.compare-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
}

.compare-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--color-dark-gray);
    line-height: 1.55;
}

.compare-bad .compare-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-mid-gray);
    font-weight: bold;
}

.compare-good .compare-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* ===== PILLS (SEÇÃO 9) ===== */
.pills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
    max-width: 1000px;
}

.pill {
    display: inline-block;
    padding: 12px 22px;
    background: var(--color-white);
    color: var(--color-dark-gray);
    border: 1.5px solid var(--color-light-pink);
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: default;
}

.pill:hover {
    background: var(--color-light-pink-bg);
    border-color: var(--color-pink);
    color: var(--color-pink);
    transform: translateY(-2px);
}

/* ===== ACCESS LIST (SEÇÃO 10) ===== */
.access-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.access-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--color-black);
    font-weight: 500;
    transition: transform 0.2s ease;
}

.access-list li:hover {
    transform: translateX(4px);
}

.access-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-light-pink);
    color: var(--color-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.access-icon svg {
    width: 18px;
    height: 18px;
}

/* ===== MENTORA (SEÇÃO 11) ===== */
.mentor-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.mentor-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-md);
    position: sticky;
    top: 30px;
}

.mentor-text p {
    margin-bottom: 18px;
    color: var(--color-dark-gray);
    line-height: 1.75;
    font-size: 1.02rem;
}

.mentor-text strong {
    color: var(--color-black);
}

/* ===== PRICE (SEÇÃO 12) ===== */
.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.price-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.price-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-white);
}

.price-title-highlight {
    color: var(--color-light-pink);
}

.price-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    text-align: center;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.5;
}

.price-features li svg {
    color: var(--color-pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-bonus-label {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-light-pink);
    font-style: italic;
    margin-top: 8px;
    margin-bottom: 12px;
}

.price-card {
    background: var(--color-white);
    color: var(--color-black);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.price-card-arrow {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-pink);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 138, 0.4);
}

.price-card-arrow svg {
    width: 26px;
    height: 26px;
}

.price-from {
    font-size: 1.1rem;
    color: var(--color-mid-gray);
    margin-bottom: 8px;
}

.price-from s {
    color: var(--color-mid-gray);
}

.price-installment-label {
    font-size: 1rem;
    color: var(--color-dark-gray);
    margin-bottom: 8px;
}

.price-main {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--color-pink);
    line-height: 1;
    margin-bottom: 8px;
}

.price-cash {
    font-size: 1.05rem;
    color: var(--color-dark-gray);
    margin-bottom: 24px;
}

.price-cash strong {
    color: var(--color-black);
}

.price-microcopy {
    font-size: 0.85rem;
    color: var(--color-mid-gray);
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 18px;
}

.price-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.price-badges span {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    color: var(--color-dark-gray);
    letter-spacing: 0.5px;
}

.price-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--color-mid-gray);
}

.price-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-trust svg {
    color: var(--color-pink);
}

/* ===== WHATSAPP BLOCK (SEÇÃO 13) ===== */
.whats-block {
    text-align: center;
    background: var(--color-light-pink-bg);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
}

.whats-block .section-title {
    margin-bottom: 12px;
}

.whats-block .btn {
    margin-top: 26px;
}

/* ===== FAQ (SEÇÃO 14) ===== */
.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--color-black);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.02rem;
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: var(--color-pink);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--color-pink);
    border-bottom: 2px solid var(--color-pink);
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-top: -4px;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.faq-item p {
    padding: 0 24px 22px;
    color: var(--color-dark-gray);
    line-height: 1.7;
}

.faq-item p + p {
    padding-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px 24px;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.footer-nav a:hover {
    color: var(--color-light-pink);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--color-light-pink);
    transition: width 0.25s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        gap: 20px;
        justify-content: center;
    }
}

/* ===== LEGAL PAGES (Privacidade / Termos) ===== */
.legal-page {
    padding: 80px 24px;
    background: var(--color-white);
}

.legal-container {
    max-width: 820px;
    margin: 0 auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-pink);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 28px;
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--color-pink-hover);
}

.legal-back::before {
    content: '←';
    font-size: 1.1rem;
}

.legal-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black);
    line-height: 1.2;
}

.legal-updated {
    color: var(--color-mid-gray);
    font-size: 0.92rem;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 40px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-black);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--color-dark-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 18px 24px;
    color: var(--color-dark-gray);
    line-height: 1.75;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content strong {
    color: var(--color-black);
    font-weight: 600;
}

.legal-content a {
    color: var(--color-pink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--color-pink-hover);
}

.legal-highlight {
    background: var(--color-light-pink-bg);
    border-left: 4px solid var(--color-pink);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
}

.legal-highlight p {
    margin-bottom: 0;
    color: var(--color-dark-gray);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
    .section {
        padding: 70px 20px;
    }

    .image-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .audio-and-print {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonials-grid {
        columns: 3;
    }

    .trilha-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mentor-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mentor-photo {
        max-width: 320px;
        margin: 0 auto;
        position: static;
    }

    .price-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: 56px 18px;
    }

    .vsl-container,
    .hero-photo {
        width: 92vw;
    }

    .image-grid-3,
    .image-grid-2,
    .trilha-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonials-grid {
        columns: 2;
        column-gap: 12px;
    }

    .testimonials-grid .testimonial-img {
        margin-bottom: 12px;
    }

    .image-placeholder,
    .news-placeholder {
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }

    .testimonials-accordion {
        max-height: 1080px;
    }

    .btn {
        padding: 16px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 360px;
    }

    .vsl-play-btn {
        width: 64px;
        height: 64px;
    }

    .vsl-play-btn svg {
        width: 28px;
        height: 28px;
    }

    .vsl-time {
        font-size: 0.75rem;
        min-width: 70px;
    }

    .pills-wrapper {
        gap: 8px;
    }

    .pill {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .price-card,
    .whats-block {
        padding: 36px 24px;
    }

    .compare-card {
        padding: 28px 22px;
    }

    .audio-and-print {
        max-width: 360px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}
