:root {
    --color-black: #141515;
    --color-cream: #F5F3EF;
    --color-cream-dark: #E8E5DF;
    --color-gold: #C9A96E;
    --color-green: #15282f;
    --color-green-light: rgba(45, 90, 74, 0.1);
    --color-white: #FFFFFF;
    --color-orange: #F0524B;
    --font-primary: 'ivy-presto-display', serif;
    --font-secondary: 'Raleway', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-green);
    color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-cream);
}

.microcopy {
    font-size: 13px;
    margin-top: 16px !important;
    opacity: 0.7;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-cream);
    color: var(--color-green);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-orange);
    color: var(--color-cream);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-green);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border: 2px solid var(--color-green);
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 24px 60px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-cream);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-cream);
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-filter {
    font-size: 0.95rem;
    color: var(--color-cream);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    max-width: 1400px;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0 24px;
    scroll-snap-type: x mandatory;
}

.carousel-card {
    flex: 0 0 auto;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.carousel-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(232, 229, 223, 0.3);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    text-align: center;
    margin-bottom: 24px;
    color: var(--color-cream);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-cream);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-closing {
    font-size: 1.15rem;
    text-align: center;
    color: var(--color-green);
    font-style: italic;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* WHY IMAGE SECTION */
.why-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.why-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 40px;
    color: var(--color-green);
}

.why-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.why-photo {
    flex: 0 0 280px;
}

.why-photo img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid var(--color-green-light);
    box-shadow: var(--shadow-lg);
}

.pain-list {
    list-style: none;
    margin: 0;
    flex: 1;
    max-width: 450px;
}

.pain-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    text-align: left;
}

.transition-text {
    max-width: 700px;
    margin: 50px auto 0;
    text-align: center;
    font-weight: 500;
    color: var(--color-black);
}

.pain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--color-green);
    border-radius: 50%;
}

.transition-text {
    font-weight: 500;
    color: var(--color-black);
    margin-top: 40px;
}

/* BEFORE & AFTER GRID */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.before-after-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(232, 229, 223, 0.3);
}

.before-after-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* HOW IT WORKS - STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 24px rgba(232, 229, 223, 0.3);
}

.step-number {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-green);
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-black);
}

.step-description {
    font-size: 0.95rem;
    color: rgba(20, 21, 21, 0.7);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* TESTIMONIALS STRIP */
.testimonials-strip {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

/* Desktop: scroll horizontal automático */
.testimonials-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: max-content;
    animation: testimonialsScrollH 60s linear infinite;
}

.testimonials-grid.paused {
    animation-play-state: paused;
}

@keyframes testimonialsScrollH {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes testimonialsScrollV {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    flex-shrink: 0;
    width: auto;
    max-width: 380px;
    height: auto;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile: scroll vertical automático */
@media (max-width: 768px) {
    .testimonials-strip {
        height: 30vh;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0 24px;
        animation: testimonialsScrollV 30s linear infinite;
    }

    .testimonial-card {
        width: 100%;
        height: auto;
    }

    .testimonial-card img {
        width: 100%;
        height: auto;
        max-height: none;
    }
}

/* FORM SECTION */
.form-section {
    background: var(--color-cream-dark);
}

.form-intro {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(20, 21, 21, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-black);
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    background: var(--color-cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 4px var(--color-green-light);
}

.form-group input::placeholder {
    color: rgba(20, 21, 21, 0.4);
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

/* ABOUT ANNA */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 50px auto 0;
}

.anna-photo {
    flex: 0 0 280px;
}

.anna-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid var(--color-green-light);
    box-shadow: var(--shadow-lg);
}

.anna-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.anna-text .highlight {
    font-weight: 600;
    color: var(--color-green);
    font-size: 1.2rem;
}

/* FOOTER */
.footer {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero {
        padding: 60px 20px 40px;
        min-height: auto;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .carousel-card {
        width: 220px;
        height: 280px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-content {
        flex-direction: column;
        gap: 30px;
    }

    .why-photo {
        flex: 0 0 auto;
    }

    .why-photo img {
        width: 220px;
        height: 280px;
    }

    .pain-list {
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .anna-photo {
        flex: 0 0 auto;
    }

    .anna-photo img {
        width: 200px;
        height: 200px;
    }

    .contact-form {
        padding: 36px 24px;
        margin: 0 16px;
    }
}

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

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

    .btn-primary,
    .btn-secondary {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .carousel-card {
        width: 200px;
        height: 250px;
    }
}

/* ===== V3 OVERRIDES ===== */

/* Hero — 2-column layout */
.hero {
    flex-direction: column;
    text-align: left;
    padding: 0;
    align-items: stretch;
    background-color: var(--color-black);
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-text h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 20px;
    opacity: 0.85;
}

.hero-body {
    font-size: 1.05rem;
    margin-bottom: 32px;
    opacity: 0.8;
    line-height: 1.8;
}

.hero-cta-wrapper {
    text-align: center;
}

.hero-cta-wrapper .microcopy {
    font-size: 13px;
    margin-top: 16px;
    opacity: 0.6;
}

.hero-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-placeholder {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 3 / 4;
    background: var(--color-green-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 1rem;
    opacity: 0.5;
}

/* Two-column section layout */
.two-col {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.two-col .col-image {
    flex: 0 0 400px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--color-green-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    font-size: 1rem;
    opacity: 0.5;
}

.col-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.two-col .col-text {
    flex: 1;
}

.two-col .col-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    text-align: left;
}

.two-col .col-text p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.two-col .col-text .transition-copy {
    font-weight: 600;
    font-style: italic;
    margin-top: 24px;
    color: var(--color-cream);
}

/* Conscientização section */
.consciencia-section {
    background: var(--color-black);
}

.consciencia-section .container {
    max-width: 100%;
}

.consciencia-section .section-title {
    text-align: center;
}

.consciencia-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.consciencia-section .emoji-line {
    font-size: 1.15rem;
    margin-top: 24px;
    font-weight: 500;
    text-align: center;
}

.consciencia-section .microcopy {
    font-style: italic;
    margin-top: 32px;
    font-size: 1rem;
    opacity: 0.7;
    text-align: center;
}

/* --- Linha do tempo / Jornada (Dobra 6) --- */
.timeline-section {
    background-color: var(--color-green);
    color: var(--color-cream);
}

.timeline-section .section-title {
    color: var(--color-cream);
}

.timeline-section .section-subtitle {
    color: rgba(245, 243, 239, 0.8);
    max-width: 600px;
    margin: 0.75rem auto 0;
}

.timeline-steps {
    position: relative;
    max-width: 680px;
    margin: 2.75rem auto 0;
    padding-left: 0;
    list-style: none;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), rgba(201, 169, 110, 0.15));
    z-index: 0;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2.25rem;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-green);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.timeline-step-body {
    padding-top: 0.6rem;
}

.timeline-step-label {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.timeline-step-content {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-cream);
}

/* Apresentação section */
.apresentacao-section .container {
    max-width: 1200px;
}

.apresentacao-layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
}

.apresentacao-text {
    flex: 1;
    text-align: left;
}

.apresentacao-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 8px;
    text-align: left;
}

.apresentacao-visual {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: sticky;
    top: 40px;
}

.apresentacao-mockup {
    width: 100%;
    height: auto;
    display: block;
}

.apresentacao-section .problem-block,
.apresentacao-section .solution-block {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .apresentacao-layout {
        flex-direction: column;
        gap: 32px;
    }

    .apresentacao-visual {
        flex: 0 0 auto;
        width: 100%;
        order: -1;
        position: static;
    }

    .apresentacao-text {
        order: 1;
    }
}

.block-subtitle {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--color-cream);
    font-family: var(--font-primary);
    font-weight: 400;
}

.apresentacao-section .problem-block p,
.apresentacao-section .solution-block p {
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.problem-list li,
.solution-list li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.7;
    padding-left: 8px;
}

.closing-question {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 32px;
    text-align: center;
    font-weight: 500;
}

/* Feedbacks subtitle */
.feedbacks-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--color-cream);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* About Anna — override */
.about-anna {
    background-color: var(--color-black);
}

.about-anna .about-content {
    align-items: flex-start;
    max-width: 1000px;
}

.about-anna .anna-photo {
    flex: 0 0 300px;
}

.about-anna .anna-photo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.about-anna .anna-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: left;
}

.anna-microcopy {
    font-style: italic;
    text-align: center;
    margin-top: 24px;
    opacity: 0.7;
    font-size: 1rem;
}

.guarantee-badge {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-cream);
    opacity: 0.85;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.guarantee-block {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 36px 40px;
    border: 1px solid rgba(245, 243, 239, 0.2);
    border-radius: var(--radius-lg);
    background: rgba(245, 243, 239, 0.05);
    text-align: center;
}

.guarantee-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.guarantee-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.guarantee-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 12px;
}

.guarantee-text:last-child {
    margin-bottom: 0;
}

/* Pricing section */
.pricing-section .anchor-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 32px;
    text-align: center;
}

.pricing-section .anchor-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.anchor-fire {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(245, 243, 239, 0.05);
    border: 1px solid rgba(245, 243, 239, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(232, 229, 223, 0.3);
}

.pricing-card.featured {
    border-color: var(--color-cream);
    background: rgba(245, 243, 239, 0.1);
}

.pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-cream);
    color: var(--color-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--color-cream);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-cream);
}

.plan-installments {
    font-size: 0.85rem;
    color: var(--color-cream);
    opacity: 0.6;
    margin-top: -16px;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.plan-features li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

.pricing-microcopy {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--color-cream-dark);
}

.faq-section .section-title {
    color: var(--color-black);
}

.faq-section .container {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(20, 21, 21, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-black);
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 24px 40px 24px 0;
    cursor: pointer;
    position: relative;
    line-height: 1.5;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: content 0.3s ease;
    color: var(--color-black);
}

.faq-item.open .faq-question::after {
    content: '−';
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 0 24px;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    color: var(--color-black);
}

/* ===== V3 RESPONSIVE ===== */

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px 40px;
        gap: 32px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-image-col {
        order: 1;
    }

    .hero-text {
        order: 0;
    }

    .hero-placeholder {
        max-width: 320px;
    }

    .two-col {
        flex-direction: column;
        gap: 32px;
    }

    .two-col .col-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .two-col .col-text h2 {
        text-align: center;
    }

    .first-impression .col-image {
        order: 1;
    }

    .first-impression .col-text {
        order: 0;
    }

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

    .about-anna .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }

    .about-anna .anna-photo {
        flex: 0 0 auto;
        width: 200px;
    }
}

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

/* Hero carousel — vertical no desktop */
.hero-image-col {
    flex: 1;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 580px;
}

.hero-image-col .hero-carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    max-width: none;
}

.hero-image-col .carousel-track {
    flex-direction: column;
    padding: 0;
    gap: 10px;
    width: 100%;
    animation: heroScrollVertical 60s linear infinite;
}

.hero-image-col .carousel-track.paused {
    animation-play-state: paused;
}

@keyframes heroScrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.hero-image-col .carousel-card {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    flex-shrink: 0;
    scroll-snap-align: unset;
}

.hero-image-col .carousel-card img {
    object-position: top center;
}

/* Mobile: carousel horizontal manual */
@media (max-width: 768px) {
    .hero-image-col {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        overflow: hidden;
        border-radius: 0;
    }

    .hero-image-col .hero-carousel {
        width: 100%;
        height: 280px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .hero-image-col .carousel-track {
        flex-direction: row;
        padding: 0 24px;
        width: max-content;
        animation: none;
        transform: none !important;
        scroll-snap-type: none;
    }

    .hero-image-col .carousel-card {
        width: 220px;
        height: 260px;
        aspect-ratio: unset;
        flex-shrink: 0;
    }

    .hero-image-col .carousel-card img {
        object-position: center;
    }
}

/* ===== END V3 ===== */

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.modal-box {
    background: var(--color-green);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 540px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* FORMULÁRIO SECTION */
#formulario {
    padding: 80px 24px;
}

.modal-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: #fff;
}

.modal-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.ml-embedded {
    margin-top: 1.5rem;
}

/* Apresentação CTA visibility */
.apresentacao-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .apresentacao-cta-mobile {
        display: block;
    }

    .apresentacao-cta-desktop {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float:hover img {
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== SCARCITY BLOCK ===== */
.scarcity-block {
    max-width: 720px;
    margin: 2.5rem auto 1.5rem;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--color-gold, #C9A96E);
    background: rgba(201, 169, 110, 0.06);
    border-radius: 4px;
    text-align: left;
}

.scarcity-headline {
    font-family: var(--font-primary, 'ivy-presto-display', serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: var(--color-gold, #C9A96E);
}

.scarcity-text {
    font-family: var(--font-secondary, 'Raleway', sans-serif);
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 0.5rem;
    color: inherit;
}

.scarcity-text:last-child {
    margin-bottom: 0;
}

.scarcity-text strong {
    font-weight: 700;
}

@media (max-width: 768px) {
    .scarcity-block {
        margin: 2rem 1rem 1.25rem;
        padding: 1.5rem 1.25rem;
    }

    .scarcity-headline {
        font-size: 1.1rem;
    }

    .scarcity-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .timeline-steps::before {
        left: 18px;
    }

    .timeline-step-number {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .briefing-box {
        padding: 1.75rem 1.25rem;
    }

    .briefing-box .objection-headline {
        font-size: 1.3rem;
    }

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