:root {
    /* Color Palette */
    --bg-light-pink: #FAF3F4;
    --bg-white: #FFFFFF;

    --contrast-light-pink: #F1C6CC;
    --contrast-pink: #D75A70;
    /* Rosa de contraste mais forte e elegante */

    --brand-forest: #1A3322;
    /* Verde forest bem escuro e sofisticado */
    --brand-forest-light: #2A4D35;
    /* Verde forest um tom acima para hovers */

    --text-body: #4A5D50;
    /* Cinza-esverdeado para textos comuns visando leitura suave */

    --accent-green: #3D604A;
    /* Verde médio para destaques secundários */
    --accent-green-hover: #2D4837;

    /* Typography */
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Layout */
    --container-max: 1200px;
    --section-padding: max(4rem, 6vw);
    --border-radius-lg: 1.5rem;
    --border-radius-md: 1rem;
    --border-radius-full: 9999px;

    /* Shadows & Glass */
    --shadow-soft: 0 8px 30px rgba(26, 51, 34, 0.05);
    /* Tonalizada pro verde */
    --shadow-float: 0 15px 35px rgba(26, 51, 34, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(12px);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light-pink);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.badge,
.btn {
    color: var(--brand-forest);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-contrast {
    color: var(--contrast-pink);
}

/* Base Components */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--border-radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--brand-forest);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn--primary {
    background-color: var(--brand-forest);
    color: var(--bg-white) !important;
    box-shadow: 0 8px 25px rgba(26, 51, 34, 0.25);
}

.btn--primary:hover {
    background-color: var(--brand-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 51, 34, 0.35);
}

.btn--secondary {
    background-color: var(--accent-green);
    color: var(--bg-white) !important;
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}

.btn--secondary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    padding: calc(var(--section-padding) * 1) 0 var(--section-padding);
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Interactive Floating Elements */
.hero__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-green);
    box-shadow: var(--shadow-float);
    will-change: transform;
}

.float-icon--1 {
    top: 15%;
    left: 8%;
    animation: float1 6s ease-in-out infinite;
    color: var(--contrast-pink);
}

.float-icon--2 {
    top: 75%;
    left: 5%;
    animation: float2 8s ease-in-out infinite reverse;
}

.float-icon--3 {
    top: 20%;
    right: 12%;
    animation: float3 7s ease-in-out infinite;
    color: var(--accent-green);
}

.float-icon--4 {
    top: 60%;
    right: 5%;
    animation: float1 9s ease-in-out infinite 1s;
    color: var(--brand-forest);
}

/* Animations Keyframes */
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(15px, -15px) scale(1.1);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(20px) rotate(5deg);
    }
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    padding-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Fade circular imponente posicionado exatamente atras do texto no Desktop 
   para garantir leitura sem sujar o resto da imagem inteira */
.hero__content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    /* Puxa o brilho pro centro do texto (mais à esquerda) */
    transform: translate(-50%, -50%);
    width: 130%;
    /* Ligeiramente mais estreito para não invadir a imagem */
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(26, 51, 34, 0.95) 0%, rgba(26, 51, 34, 0.6) 40%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-body);
    max-width: 95%;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero__microcopy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--brand-forest);
    opacity: 0.8;
}

.hero__microcopy i {
    color: var(--accent-green);
    font-size: 1.125rem;
}

/* Hero Visual & Glassmorphism */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 51, 34, 0.15);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
    max-width: 480px;
    width: 100%;
}

.hero__image-wrapper:hover {
    transform: rotate(0deg) translateY(-8px);
}

.hero__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero__glass-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: var(--shadow-float);
    transform: rotate(-2deg);
    animation: float1 5s ease-in-out infinite;
}

.glass-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-green);
}

.glass-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.glass-text strong {
    font-family: var(--font-heading);
    color: var(--brand-forest);
    font-size: 1.125rem;
    line-height: 1.2;
}

.glass-text span {
    font-size: 0.8125rem;
    color: var(--text-body);
}

/* =======================================
   PROBLEM SECTION
   ======================================= */
.problem {
    background-color: var(--bg-white);
    padding: var(--section-padding) 0;
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--bg-white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}

.problem__container {
    position: relative;
    z-index: 1;
}

.problem__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problem__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.2;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--brand-forest);
    margin-bottom: 2rem;
}

.problem__list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.problem__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.problem__list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--contrast-pink);
    font-weight: bold;
}

.problem__quote {
    background-color: var(--bg-light-pink);
    border-left: 4px solid var(--brand-forest);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.problem__quote strong {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-forest);
    font-weight: normal;
}

.highlight-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-forest);
}

.solution-card {
    background: var(--bg-light-pink);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(215, 90, 112, 0.15);
    /* Tom do rosa com opacidade */
    box-shadow: var(--shadow-soft);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-forest);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.solution-card p {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
}

.solution-divider {
    border: 0;
    height: 1px;
    background: rgba(26, 51, 34, 0.1);
    margin: 2rem 0;
}

/* =======================================
   NETFLIX IMMERSIVE HERO OVERRIDES
   ======================================= */
/* Transformando a .hero default em modo Immersive */
.hero {
    background-color: var(--brand-forest);
    color: var(--bg-white);
    min-height: 80vh;
}

/* Background Immersive */
.hero__background {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    /* Traz a imagem mais para a esquerda preenchendo o espaço ganho pelo fade menor */
    height: 100%;
    z-index: 0;
}

.hero__image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 30%;
    /* Traz a Rita mais perto do centro sem cortar */
}

/* O Gradiente Imersivo */
.hero__overlay {
    position: absolute;
    inset: 0;
    /* Somente um pequeno gradiente horizontal nas bordas. 
       Morre na linha azul (perto dos 20-30%), garantindo que a Rita está limpa! */
    background:
        linear-gradient(to right, var(--brand-forest) 0%, var(--brand-forest) 5%, transparent 25%),
        linear-gradient(to top, var(--brand-forest) 0%, transparent 15%);
}

.hero__container {
    grid-template-columns: 1.15fr 0.85fr;
    /* Libera mais espaço para o texto ir pra direita */
    align-items: center;
}

/* Textos no modo Dark (Netflix/Immersive) */
.hero h1,
.hero .hero__headline,
.hero .hero__microcopy {
    color: var(--bg-white);
}

.hero .hero__subheadline {
    color: rgba(255, 255, 255, 0.85);
}

.hero .hero__microcopy i {
    color: var(--contrast-pink);
}

.hero .badge {
    background-color: rgba(26, 51, 34, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--contrast-pink);
    font-weight: 600;
}

.hero .btn--primary {
    background-color: var(--contrast-pink);
    color: var(--bg-white) !important;
}

.hero .btn--primary:hover {
    background-color: #bd4056;
}

/* Ícones Flutuantes adaptados ao fundo escuro */
.hero__floating-elements {
    z-index: 2;
}

.hero .float-icon {
    background: rgba(26, 51, 34, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .float-icon--2 {
    color: rgba(255, 255, 255, 0.8);
}

.hero .float-icon--4 {
    color: rgba(255, 255, 255, 0.9);
}

/* Glass Card flutuando embaixo modificado pro Dark Mode do Netflix Style */
.hero__visual {
    justify-content: center;
    padding-top: 10vh;
    /* Para empurrar um ladinho a mais e colocar abaixo do peito dela */
    z-index: 2;
}

.hero__glass-card {
    left: auto;
    bottom: 2rem;
    position: relative;
    transform: rotate(2deg);
    background: rgba(26, 51, 34, 0.45);
    border-color: rgba(255, 255, 255, 0.15);
    max-width: 320px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero__glass-card .glass-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--contrast-pink);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero__glass-card .glass-text strong {
    color: var(--bg-white);
}

.hero__glass-card .glass-text span {
    color: rgba(255, 255, 255, 0.75);
}


/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }

    /* O blur estático lá de trás dela agora funciona no celular tbm pra focar o clareamento só no box de texto e salvar a pele da modelo */
    .hero__content::before {
        display: block;
        width: 150vw;
        height: 125%;
        left: 50%;
        background: radial-gradient(ellipse at center, rgba(26, 51, 34, 0.95) 0%, rgba(26, 51, 34, 0.75) 40%, transparent 70%);
    }

    /* Foto ocupa SOMENTE a metade superior da hero. O restante e verde solido natural do bg */
    .hero__background {
        width: 100%;
        height: 50%;
        /* So metade de cima! */
        position: absolute;
        top: 0;
        left: 0;
    }

    .hero__image-bg {
        object-position: center 25%;
        /* Enquadra no rosto (pula o ceu excessivo da foto) */
        transform: none;
    }

    /* Overlay simples: so um fade suave na borda inferior da foto pro verde */
    .hero__overlay {
        background: linear-gradient(to top, var(--brand-forest) 0%, transparent 40%);
    }

    .hero__container,
    .problem__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__container {
        padding-top: calc(100vw * 0.65);
        /* Empurra texto pra baixo da janela da foto */
        padding-bottom: calc(var(--section-padding) * 0.75);
        /* Cortando espaco morto abaixo do botao */
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Texto agrupa lá pra baixo da tela */
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .hero__actions {
        align-items: center;
    }

    .hero__visual {
        display: none;
        /* Esconde o glass card no mobile pra limpar o espaco */
    }

    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .float-icon--1 {
        top: 10%;
        left: 5%;
    }

    .float-icon--2 {
        top: 75%;
        left: 85%;
    }

    .float-icon--3 {
        top: 50%;
        left: 5%;
    }

    .float-icon--4 {
        top: 30%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .solution-card {
        padding: 2.5rem 1.5rem;
    }

    .hero__headline {
        font-size: clamp(2.2rem, 8vw, 2.75rem);
    }
}

/* =======================================
   ADDITIONAL KEYFRAMES
   ======================================= */
@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes orbit {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -15px) rotate(90deg);
    }

    50% {
        transform: translate(0, -30px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, -15px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-25px, 10px);
    }

    66% {
        transform: translate(15px, -20px);
    }
}

@keyframes pendulum {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0);
    }

    50% {
        transform: rotate(15deg) translateY(-10px);
    }
}

@keyframes sway {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    25% {
        transform: translateX(12px) rotate(3deg);
    }

    75% {
        transform: translateX(-12px) rotate(-3deg);
    }
}

@keyframes auto-scroll {
    0% {
        transform: translateX(0);
    }

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

/* =======================================
   SECTION 3: PARA QUEM E
   ======================================= */
.para-quem {
    background-color: var(--bg-light-pink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.para-quem__container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.para-quem__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--brand-forest);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.para-quem__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-body);
    text-align: center;
    margin-bottom: 48px;
}

.para-quem__items {
    display: flex;
    flex-direction: column;
}

.para-quem__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    border-bottom: 1px solid rgba(26, 51, 34, 0.08);
    border-radius: 8px;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.para-quem__item i {
    font-size: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
    transition: color 300ms ease;
}

.para-quem__item span {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-body);
}

.para-quem__item:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.para-quem__item:hover i {
    color: var(--contrast-pink);
}

.para-quem__closing {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--brand-forest);
    text-align: center;
    margin-top: 48px;
}

/* Decorative floating icons */
.para-quem__decor-lotus {
    position: absolute;
    top: -30px;
    right: -60px;
    font-size: 80px;
    opacity: 0.06;
    color: var(--brand-forest);
    pointer-events: none;
    animation: breathe 6s ease-in-out infinite;
}

.para-quem__decor-sparkle {
    position: absolute;
    bottom: 20px;
    left: -40px;
    font-size: 40px;
    opacity: 0.05;
    color: var(--brand-forest);
    pointer-events: none;
    animation: float2 8s ease-in-out infinite;
}

/* =======================================
   SECTION 4: METODO GAIA
   ======================================= */
.metodo {
    background-color: var(--bg-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.metodo__header {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.metodo__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.2;
    color: var(--brand-forest);
    text-align: center;
    margin-bottom: 1rem;
}

.metodo__gaia {
    background: linear-gradient(135deg, var(--brand-forest), var(--accent-green), var(--contrast-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metodo__intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
}

.metodo__steps {
    max-width: 900px;
    margin: 0 auto;
}

.metodo__step {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metodo__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26, 51, 34, 0.06);
}

.metodo__number {
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(215, 90, 112, 0.1);
    line-height: 0.9;
    min-width: 120px;
    text-align: center;
    transition: opacity 500ms ease;
}

.metodo__step:hover .metodo__number {
    opacity: 0.15;
}

.metodo__step-content {
    flex: 1;
}

.metodo__step-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--brand-forest);
    margin-bottom: 12px;
    line-height: 1.2;
}

.metodo__step-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-body);
}

.metodo__subitems {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.metodo__sub {
    padding: 16px 20px;
    background: var(--bg-light-pink);
    border-radius: 12px;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 300ms ease;
}

.metodo__sub:hover {
    background: rgba(241, 198, 204, 0.4);
    transform: translateY(-2px);
}

.metodo__sub i {
    font-size: 20px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.metodo__sub span {
    color: var(--text-body);
}

.metodo__divider {
    width: 2px;
    height: 48px;
    border-left: 2px dashed rgba(26, 51, 34, 0.1);
    margin-left: 84px;
}

.metodo__cta {
    text-align: center;
    margin-top: 56px;
}

/* Decorative floating icons */
.metodo__decor-compass {
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 56px;
    opacity: 0.04;
    color: var(--brand-forest);
    pointer-events: none;
    animation: float3 7s ease-in-out infinite;
}

.metodo__decor-spiral {
    position: absolute;
    bottom: 10%;
    left: 3%;
    font-size: 48px;
    opacity: 0.04;
    color: var(--contrast-pink);
    pointer-events: none;
    animation: float1 9s ease-in-out infinite;
}

/* =======================================
   SECTION 5: MODULOS (Dark)
   ======================================= */
.modulos {
    background-color: var(--brand-forest);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modulos__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
}

.modulos__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: #FFFFFF;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.modulos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.modulos__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 28px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modulos__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(215, 90, 112, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modulos__card-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.15);
    transition: all 300ms ease;
}

.modulos__card:hover .modulos__card-icon {
    opacity: 0.5;
    color: var(--contrast-pink);
}

.modulos__card-num {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--contrast-pink);
    margin-bottom: 12px;
    font-weight: 500;
}

.modulos__card-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: normal;
}

.modulos__card-detail {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.modulos__card:hover .modulos__card-detail {
    max-height: 120px;
    opacity: 1;
}

.modulos__selo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: rgba(215, 90, 112, 0.1);
    border: 1px solid rgba(215, 90, 112, 0.2);
    border-radius: 9999px;
    color: var(--contrast-pink);
    font-weight: 500;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.modulos__selo i {
    font-size: 20px;
}

.modulos__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Decorative floating icons */
.modulos__decor-book {
    position: absolute;
    top: 8%;
    left: 4%;
    font-size: 52px;
    opacity: 0.04;
    color: #FFFFFF;
    pointer-events: none;
    animation: float1 8s ease-in-out infinite;
    z-index: 1;
}

.modulos__decor-tulip {
    position: absolute;
    bottom: 12%;
    right: 6%;
    font-size: 44px;
    opacity: 0.04;
    color: var(--contrast-pink);
    pointer-events: none;
    animation: float2 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* =======================================
   SECTION 6: O QUE ESTA INCLUIDO (Bento)
   ======================================= */
.incluido {
    background-color: var(--bg-light-pink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.incluido__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--brand-forest);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.incluido__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.incluido__cell {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.incluido__cell:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(26, 51, 34, 0.08), 0 0 30px rgba(215, 90, 112, 0.08);
    border-color: rgba(215, 90, 112, 0.2);
}

.incluido__cell--span2 {
    grid-column: span 2;
}

.incluido__cell--span4 {
    grid-column: span 4;
}

.incluido__cell-icon-visible {
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 16px;
    display: block;
    transition: all 300ms ease;
}

.incluido__cell:hover .incluido__cell-icon-visible {
    color: var(--contrast-pink);
    transform: scale(1.1);
}

.incluido__cell-icon-bg {
    position: absolute;
    bottom: -8px;
    right: -8px;
    font-size: 80px;
    opacity: 0.04;
    color: var(--brand-forest);
    transition: opacity 600ms ease;
}

.incluido__cell:hover .incluido__cell-icon-bg {
    opacity: 0.08;
}

.incluido__cell-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-forest);
    line-height: 1.3;
    font-weight: normal;
}

.incluido__cell-desc {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-top: 8px;
}

/* Bonus cell */
.incluido__cell--bonus {
    background: linear-gradient(135deg, rgba(215, 90, 112, 0.08), rgba(241, 198, 204, 0.15));
    border: 1px solid rgba(215, 90, 112, 0.15);
}

.incluido__cell--bonus .incluido__cell-icon-visible {
    color: var(--contrast-pink);
}

.incluido__cell--bonus .incluido__cell-name {
    font-size: 1.375rem;
}

.incluido__bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.incluido__bonus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.incluido__bonus-item i {
    font-size: 18px;
    color: var(--contrast-pink);
    flex-shrink: 0;
}

/* Floating icons with distinct methods */
.incluido__float-orbit {
    position: absolute;
    top: 15%;
    left: -3%;
    font-size: 44px;
    opacity: 0.06;
    color: var(--brand-forest);
    pointer-events: none;
    animation: orbit 12s linear infinite;
}

.incluido__float-drift {
    position: absolute;
    bottom: 20%;
    right: -2%;
    font-size: 40px;
    opacity: 0.05;
    color: var(--brand-forest);
    pointer-events: none;
    animation: drift 15s ease-in-out infinite;
}

.incluido__float-pendulum {
    position: absolute;
    top: 60%;
    left: 50%;
    font-size: 36px;
    opacity: 0.04;
    color: var(--contrast-pink);
    pointer-events: none;
    animation: pendulum 8s ease-in-out infinite;
}

/* =======================================
   SECTION 7: DEPOIMENTOS (Carousel)
   ======================================= */
.depoimentos {
    background-color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.depoimentos__label {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    color: var(--contrast-pink);
    font-weight: 600;
    margin-bottom: 48px;
}

.depoimentos__carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.depoimentos__track {
    display: flex;
    gap: 24px;
    animation: auto-scroll 40s linear infinite;
    width: max-content;
}

.depoimentos__track:hover {
    animation-play-state: paused;
}

.depoimentos__card {
    min-width: 380px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 400ms ease;
    flex-shrink: 0;
}

.depoimentos__card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 64px;
    color: rgba(215, 90, 112, 0.12);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.depoimentos__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(26, 51, 34, 0.1);
    border-color: rgba(215, 90, 112, 0.2);
}

.depoimentos__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
    padding-top: 32px;
}

.depoimentos__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimentos__initials {
    width: 40px;
    height: 40px;
    background: var(--brand-forest);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.depoimentos__info strong {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--brand-forest);
    display: block;
}

.depoimentos__info span {
    font-size: 0.75rem;
    color: var(--text-body);
    opacity: 0.7;
}

/* Decorative sway icon */
.depoimentos__decor-sway {
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 48px;
    opacity: 0.05;
    color: var(--brand-forest);
    pointer-events: none;
    animation: sway 10s ease-in-out infinite;
}

/* =======================================
   SECTION 8: SOBRE (Split 50/50 Dark)
   ======================================= */
.sobre {
    background-color: var(--brand-forest);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sobre__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sobre__photo {
    position: relative;
}

.sobre__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.1s ease-out;
}

.sobre__name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    margin-bottom: 8px;
    line-height: 1.1;
}

.sobre__line {
    width: 60px;
    height: 3px;
    background: var(--contrast-pink);
    margin-bottom: 24px;
}

.sobre__bio {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.sobre__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.sobre__pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: background 300ms ease;
}

.sobre__pill:hover {
    background: rgba(255, 255, 255, 0.15);
}

.sobre__quote {
    position: relative;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--contrast-pink);
    border-radius: 0 12px 12px 0;
}

.sobre__quote p {
    font-style: italic;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.sobre__quote-icon {
    position: absolute;
    top: -12px;
    left: 16px;
    font-size: 32px;
    color: var(--contrast-pink);
    opacity: 0.4;
    animation: breathe 5s ease-in-out infinite;
}

/* Decorative */
.sobre__decor-star {
    position: absolute;
    top: 10%;
    right: 8%;
    font-size: 44px;
    opacity: 0.04;
    color: #FFFFFF;
    pointer-events: none;
    animation: float3 9s ease-in-out infinite;
}

/* =======================================
   SECTION 9: INVESTIMENTO (Spotlight)
   ======================================= */
.investimento {
    background-color: var(--bg-light-pink);
    padding: 100px 0;
    position: relative;
}

.investimento__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.investimento__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: var(--brand-forest);
    text-align: center;
    margin-bottom: 48px;
}

.investimento__card {
    background: var(--bg-white);
    border: 1px solid rgba(26, 51, 34, 0.08);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(26, 51, 34, 0.08);
    position: relative;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.investimento__card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(215, 90, 112, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.investimento__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(26, 51, 34, 0.12);
}

.investimento__label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-body);
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
}

.investimento__price {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--brand-forest);
    line-height: 1;
}

.investimento__cents {
    font-size: 0.5em;
    vertical-align: super;
}

.investimento__parcelas {
    font-size: 1.0625rem;
    color: var(--text-body);
    margin-top: 8px;
    margin-bottom: 32px;
}

.investimento__divider {
    width: 40px;
    height: 2px;
    background: var(--contrast-pink);
    margin: 24px auto;
}

.investimento__cta {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.125rem;
}

.investimento__cta:hover {
    transform: translateY(-2px) scale(1.02);
}

.investimento__microcopy {
    font-size: 0.8125rem;
    color: var(--text-body);
    opacity: 0.7;
    margin-top: 12px;
}

.investimento__float {
    position: absolute;
    bottom: -20px;
    right: -30px;
    font-size: 48px;
    opacity: 0.06;
    color: var(--brand-forest);
    pointer-events: none;
    animation: float1 7s ease-in-out infinite;
}

/* =======================================
   SECTION 10: GARANTIA (Dark Isolated)
   ======================================= */
.garantia {
    background-color: var(--brand-forest);
    padding: 80px 0;
}

.garantia__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.garantia__line {
    width: 40px;
    height: 2px;
    background: var(--contrast-pink);
    margin: 0 auto 32px;
}

.garantia__icon {
    font-size: 64px;
    color: var(--contrast-pink);
    margin-bottom: 24px;
    display: block;
    animation: breathe 4s ease-in-out infinite;
}

.garantia__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.garantia__text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto;
}

/* =======================================
   SECTION 11: FAQ (Accordion)
   ======================================= */
.faq {
    background-color: var(--bg-light-pink);
    padding: 100px 0;
}

.faq__container {
    max-width: 760px;
    margin: 0 auto;
}

.faq__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    color: var(--brand-forest);
    text-align: center;
    margin-bottom: 48px;
}

.faq__item {
    border-bottom: 1px solid rgba(26, 51, 34, 0.08);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}

.faq__question span {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--brand-forest);
    line-height: 1.4;
    text-align: left;
    transition: color 200ms ease;
}

.faq__question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--contrast-pink);
    transition: width 300ms ease;
}

.faq__question:hover::after {
    width: 100%;
}

.faq__question:hover span {
    color: var(--contrast-pink);
}

.faq__toggle {
    font-size: 20px;
    color: var(--accent-green);
    transition: transform 300ms ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq__item.active .faq__toggle {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.active .faq__answer {
    max-height: 300px;
    opacity: 1;
    padding-top: 0;
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
}

.faq__cta {
    text-align: center;
    margin-top: 48px;
}

/* =======================================
   FOOTER
   ======================================= */
.footer {
    background-color: var(--brand-forest);
    padding: 40px 0;
    text-align: center;
}

.footer__line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 20px;
}

.footer__text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =======================================
   SCROLL TO TOP BUTTON
   ======================================= */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--brand-forest);
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 12px rgba(26, 51, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease, transform 300ms ease;
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 51, 34, 0.3);
}

/* =======================================
   RESPONSIVE: SECTIONS 3-11
   ======================================= */
@media (max-width: 992px) {

    /* Section 3 */
    .para-quem {
        padding: 64px 0;
    }

    .para-quem__container {
        max-width: 100%;
    }

    .para-quem__decor-lotus,
    .para-quem__decor-sparkle {
        display: none;
    }

    /* Section 4 */
    .metodo {
        padding: 64px 0;
    }

    .metodo__step {
        flex-direction: column;
        gap: 24px;
    }

    .metodo__number {
        font-size: 72px;
        min-width: auto;
    }

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

    .metodo__divider {
        margin-left: 0;
        margin: 0 auto;
    }

    .metodo__decor-compass,
    .metodo__decor-spiral {
        display: none;
    }

    /* Section 5 */
    .modulos {
        padding: 64px 0;
    }

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

    .modulos__card-detail {
        max-height: none;
        opacity: 1;
    }

    .modulos__decor-book,
    .modulos__decor-tulip {
        display: none;
    }

    /* Section 6 */
    .incluido {
        padding: 64px 0;
    }

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

    .incluido__cell--span2,
    .incluido__cell--span4 {
        grid-column: span 2;
    }

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

    .incluido__float-orbit,
    .incluido__float-drift,
    .incluido__float-pendulum {
        display: none;
    }

    /* Section 7 */
    .depoimentos {
        padding: 64px 0;
    }

    .depoimentos__track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
    }

    .depoimentos__card {
        min-width: 300px;
        scroll-snap-align: center;
    }

    .depoimentos__decor-sway {
        display: none;
    }

    /* Section 8 */
    .sobre {
        padding: 64px 0;
    }

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

    .sobre__photo {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .sobre__decor-star {
        display: none;
    }

    /* Section 9 */
    .investimento {
        padding: 64px 0;
    }

    .investimento__card {
        padding: 40px 28px;
    }

    /* Section 10 */
    .garantia {
        padding: 56px 0;
    }

    .garantia__icon {
        font-size: 48px;
    }

    /* Section 11 */
    .faq {
        padding: 64px 0;
    }

    .faq__question span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    /* Section 3 */
    .para-quem__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .para-quem__item {
        padding: 20px 12px;
    }

    /* Section 4 */
    .metodo__number {
        font-size: 56px;
    }

    .metodo__step {
        padding: 16px 0;
    }

    .metodo__cta .btn {
        width: 100%;
    }

    /* Section 5 */
    .modulos__card {
        padding: 24px 20px;
    }

    /* Section 6 */
    .incluido__bento {
        grid-template-columns: 1fr;
    }

    .incluido__cell--span2,
    .incluido__cell--span4 {
        grid-column: span 1;
    }

    .incluido__cell {
        padding: 28px 24px;
    }

    /* Section 7 */
    .depoimentos__card {
        min-width: 280px;
        padding: 28px 24px;
    }

    /* Section 8 */
    .sobre__pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* Section 9 */
    .investimento__card {
        padding: 32px 20px;
    }

    .investimento__price {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
}