/* ==========================================================================
   CONFIGURAÇÕES GERAIS & VARIÁVEIS (Inspiração: Apple, Stripe & Linear)
   ========================================================================== */
:root {
    --primary: #6F3DFF;
    --primary-light: #F4F0FF;
    --primary-glow: rgba(111, 61, 255, 0.12);
    --accent: #C610BD; /* Magenta Mourart */
    --accent-light: #FFF0FC;
    --accent-glow: rgba(198, 16, 189, 0.15);
    --yellow-orange: #FF9F00; 
    --lilac: #D6C7FF;
    --bg-white: #FFFFFF;
    --bg-light: #F9F8FF;
    --bg-dark: #110626; 
    --text-main: #111111;
    --text-muted: #4F4F4F;
    --text-light-muted: #C0B6DC;
    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-pill: 50px;
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

body { 
    overflow-x: hidden; 
}

section {
    position: relative;
    overflow: visible;
}

/* ==========================================================================
   LAYOUT ESTRUTURAL Ultra-Respirável
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 50px;
}

.container-narrow {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 0 50px;
}

.min-100vh {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-padding { 
    padding: 160px 0 160px 0; 
}

/* Espaçamento extra no topo da seção de problemas para acomodar seus pés sem cobrir textos */
.problems-section {
    padding-top: 240px !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 100px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mt-6 { margin-top: 6rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 4rem; }
.pt-5 { padding-top: 4rem; }
.line-top { border-top: 1px solid rgba(111, 61, 255, 0.08); }
.margin-auto { margin-left: auto; margin-right: auto; }

/* Iluminação de Fundo */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.45;
}

.shape-1 { top: -10%; right: -10%; width: 50vw; height: 50vw; background: var(--primary-glow); }
.shape-2 { bottom: -10%; left: -10%; width: 45vw; height: 45vw; background: var(--accent-glow); }

/* ==========================================================================
   SISTEMA DE TRANSIÇÕES FLUIDAS (Dividers em Curvas)
   ========================================================================== */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

/* ==========================================================================
   ESTILIZAÇÃO DOS LOGOTIPOS
   ========================================================================== */
.brand-logo {
    height: 35px; 
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s var(--transition-smooth);
}

.logo-link:hover .brand-logo {
    transform: scale(1.02);
}

/* ==========================================================================
   INTERCALAÇÃO DE CORES NATIVAS
   ========================================================================== */
body .hero-section {
    background-color: #700DD5;
    color: #FFFFFF;
    padding-top: 140px; 
    padding-bottom: 40px; /* Reduzido para acabar logo após o botão rosa */
    overflow: visible !important; /* IMPORTANTE: Permite a saída da imagem */
}

body .break-section, 
body .niches-section, 
body .spoiler-section, 
body .partnership-section {
    background-color: var(--bg-dark);
    color: #FFFFFF;
}

body .problems-section, 
body .about-section, 
body .flow-section, 
body .services-section, 
body .cta-final-section {
    background-color: var(--bg-white);
    color: var(--text-main);
}

/* ==========================================================================
   PRIMEIRA DOBRA (Hero Section) & CORREÇÃO DOS PÉS ENTRANDO NA OUTRA SEÇÃO
   ========================================================================== */
body .hero-section .hero-title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
    color: #FFFFFF;
}

body .hero-section .hero-subtitle.orange-glow {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.4rem; 
    color: var(--yellow-orange);
    margin-bottom: 1.4rem;
    line-height: 1.3;
}

body .hero-section .hero-story {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.92rem; 
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 1.8rem;
    max-width: 540px;
}

body .hero-section .hero-story em { font-style: italic; opacity: 0.95; }
body .hero-section .hero-story strong { font-weight: 700; color: #FFFFFF; }
body .hero-section .story-highlight { font-family: var(--font-title); font-size: 1.1rem; color: #FFFFFF; font-weight: 600; }

/* Posicionamento estratégico para a imagem vazar para baixo da onda */
body .hero-section .hero-image-wrapper {
    position: relative;
    transform: translateY(130px);
    z-index: 15;
}

/* Ajuste fino da sua imagem PNG */
body  .hero-section .main-img {
    box-shadow: none !important; /* Removido o quadrado cinza */
    border-radius: 0 !important;
    background: transparent !important;
    filter: none !important; 
}

/* ==========================================================================
   ELEMENTOS DE DESTAQUE ROSA/MAGENTA MOURART (#C610BD)
   ========================================================================== */
body .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--accent);
    color: var(--bg-white);
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    /*box-shadow: 0 12px 32px rgba(198, 16, 189, 0.3);*/
    transition: transform 0.3s var(--transition-smooth), /*box-shadow 0.3s, background-color 0.3s;*/
}

body .btn-primary:hover {
    transform: translateY(-4px);
    background: #DC1CD1;
    /*box-shadow: 0 20px 40px rgba(198, 16, 189, 0.45);*/
}

.underline-sketch::after { 
    content: ''; 
    position: absolute; 
    bottom: -5px; 
    left: 0; 
    width: 100%; 
    height: 3px; 
    background: var(--accent); 
    border-radius: 2px; 
}

.services-section .handwritten-text { color: var(--accent); }
.section-pre-title { color: var(--accent); font-weight: 500; }
.services-section .lead-text { color: var(--accent); }

body .timeline-conversation .msg-jessica { 
    background: linear-gradient(135deg, var(--primary), var(--accent)); 
    color: #fff; 
    align-self: flex-end; 
    border-bottom-right-radius: 4px; 
    /*box-shadow: 0 8px 24px rgba(198, 16, 189, 0.2);*/ 
}

body .timeline-conversation .success { border-left: 5px solid var(--accent); }
.check-item:hover .custom-box { background: var(--accent-light); border-color: var(--accent); }
.pill:hover { color: var(--accent); border-color: var(--accent); background: var(--bg-white); transform: translateY(-2px); }
.niche-card:hover { border-color: rgba(198, 16, 189, 0.3); }

/* ==========================================================================
   BARRA DE NAVEGAÇÃO SUPREMA
   ========================================================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.btn-nav {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--bg-white);
    transition: transform 0.2s var(--transition-smooth), /*box-shadow 0.2s, color 0.2s, border-color 0.2s;*/
}

.btn-nav:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ==========================================================================
   TIPOGRAFIA E DEMAIS COMPONENTES
   ========================================================================== */
.section-title { font-family: var(--font-title); font-weight: 700; font-size: 2.6rem; line-height: 1.25; letter-spacing: -0.8px; }
.huge-title { font-family: var(--font-title); font-weight: 700; font-size: 4.2rem; letter-spacing: -1.5px; line-height: 1.1; }
.story-text p { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.8rem; }
.highlight-text { font-size: 1.4rem !important; color: var(--accent) !important; font-weight: 500; }
.handwritten-text { font-family: var(--font-body); font-style: italic; color: var(--lilac); font-size: 1.35rem; margin-bottom: 1rem; }
.btn-large { padding: 22px 50px; font-size: 1.2rem; }
.whatsapp-icon { width: 22px; height: 22px; fill: currentColor; }

/* Frames e Balões */
.instagram-frame { position: relative; width: 100%; max-width: 440px; margin: 0 auto; min-height: 280px; }
.secondary-img-overlay { position: absolute; top: -20px; right: -40px; width: 170px; border-radius: var(--radius-md); /*box-shadow: 0 16px 40px rgba(0,0,0,0.1);*/ background-color: #fff; }
.position-bottom { top: auto; bottom: -20px; right: -30px; }

.comment-bubble { position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); padding: 14px 24px; border-radius: var(--radius-pill); /*box-shadow: 0 12px 32px rgba(0,0,0,0.05);*/ font-size: 0.95rem; font-weight: 500; border: 1px solid rgba(111,61,255,0.08); white-space: nowrap; color: var(--text-main); z-index: 5; }
.cb-1 { top: 40%; left: -30px; }
.cb-2 { bottom: 30%; right: -20px; }

.post-it { position: absolute; background: #FFF9D1; color: #4A4523; padding: 16px 26px; font-weight: 500; transform: rotate(-3deg); /*box-shadow: 8px 16px 32px rgba(0,0,0,0.06);*/ font-size: 1.05rem; border-radius: 4px; top: 20px; left: -20px; white-space: nowrap; }
.inline-post-it { position: relative; display: inline-block; background: rgba(255, 255, 255, 0.08); color: var(--lilac); font-family: var(--font-title); font-weight: 600; border-radius: var(--radius-md); padding: 24px 44px; border: 1px solid rgba(255,255,255,0.1); }
.sticker-tag { position: absolute; background: #111; color: #fff; padding: 8px 18px; font-size: 0.85rem; border-radius: var(--radius-pill); font-weight: 500; top: -45px; left: 0; }
.tag-purple { background: rgba(255, 255, 255, 0.1); color: var(--lilac); position: relative; top: 0; display: inline-block; }

/* Listas e Grids */
.checklist { list-style: none; margin-top: 2.5rem; }
.check-item { display: flex; gap: 18px; margin-bottom: 1.8rem; align-items: flex-start; }
.custom-box { width: 22px; height: 22px; border: 2px solid var(--lilac); border-radius: 7px; margin-top: 4px; flex-shrink: 0; position: relative; transition: background 0.3s, border-color 0.3s; }
.check-item p { font-size: 1.15rem; color: var(--text-main); line-height: 1.5; }
.check-item p span { color: var(--text-muted); display: block; font-size: 1.05rem; margin-top: 4px; }

.timeline-conversation { display: flex; flex-direction: column; gap: 18px; margin-top: 2.5rem; width: 100%; }
.chat-line { padding: 18px 26px; border-radius: var(--radius-md); max-width: 80%; font-size: 1.05rem; line-height: 1.5; }
.msg-user { background: #F1F0F5; color: var(--text-main); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-step { background: var(--bg-white); border: 1px solid rgba(0,0,0,0.04); align-self: flex-start; /*box-shadow: 0 8px 20px rgba(0,0,0,0.01);*/ color: var(--text-main); }

.centered-illustration { max-width: 280px; width: 100%; margin-top: 4rem; height: auto; }
.big-statement { font-family: var(--font-title); font-size: 2.5rem; font-weight: 700; line-height: 1.35; letter-spacing: -0.5px; margin-bottom: 2rem; }
.sub-statement { font-size: 1.3rem; }

.s-card { background: transparent; padding: 32px; border-radius: var(--radius-md); transition: background 0.3s; }
.s-card:hover { background: var(--bg-light); }
.s-card h4 { font-family: var(--font-title); font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--text-main); }
.s-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

.promises-list { list-style: none; }
.promises-list li { font-size: 1.15rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 14px; }
.promises-list li span { color: var(--lilac); font-weight: bold; font-size: 1.25rem; }
.post-it-clear { position: relative; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 26px; border-radius: var(--radius-md); }
.cafe-illustration { max-width: 100px; margin-bottom: 2rem; }

/* ==========================================================================
   RODAPÉ PREMIUM ESCURO
   ========================================================================== */
.footer-minimal { 
    padding: 60px 0; 
    border-top: 1px solid rgba(255, 255, 255, 0.06); 
    background: var(--bg-dark); 
}
.flex-space { display: flex; justify-content: space-between; align-items: center; }
.copy-text { 
    font-size: 0.95rem; 
    color: #FFFFFF; 
    opacity: 0.95;
}

/* ==========================================================================
   SISTEMA DE ANIMAÇÕES
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 0;
    transition: opacity 1.2s var(--transition-smooth), transform 1.2s var(--transition-smooth), filter 1s ease;
    will-change: transform, opacity;
    filter: blur(6px);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(-40px); }
.reveal-scale { transform: scale(0.96); }

.visible { opacity: 1; transform: translate(0) scale(1); filter: blur(0); }
.load-fade-up { animation: cssRevealUp 1.4s var(--transition-smooth) forwards; }
.load-fade-right { animation: cssRevealRight 1.4s var(--transition-smooth) forwards;}

@keyframes cssRevealUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes cssRevealRight {
    from { opacity: 0; transform: translateX(30px); filter: blur(6px); }
    to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

.animate-float { animation: floatAnimation 6s ease-in-out infinite; }
@keyframes floatAnimation {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   RESPONSIVIDADE PREMIUM & ISOLAMENTO MOBILE (Encaixe Dinâmico)
   ========================================================================== */
@media (max-width: 1120px) {
    body .hero-section { padding-top: 160px; }
    body .hero-section .hero-title { font-size: 2rem; }
    body .hero-section .hero-subtitle.orange-glow { font-size: 1.3rem; }
    .section-title { font-size: 2.3rem; }
    .huge-title { font-size: 3.8rem; }
    .grid-2 { gap: 50px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
    .container, .container-narrow { padding: 0 24px; }
    .nav-container { padding: 16px 24px; }
    .grid-3 { grid-template-columns: 1fr; }
    .section-padding { padding: 80px 0 80px 0; }
    .secondary-img-overlay { display: none; }
    .flex-space { flex-direction: column; gap: 20px; text-align: center; }
    .chat-line { max-width: 100%; }

    .section-title { font-size: 1.9rem; letter-spacing: -0.5px; }
    .huge-title { font-size: 3rem; letter-spacing: -1px; }
    .grid-2 { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    .cb-2, .post-it { position: relative; top: 0; left: 0; right: 0; display: inline-block; margin-top: 20px; transform: none; white-space: normal; }
    
    .section-divider svg { height: 50px; }

    /* CONSERTO DA 1ª DOBRA NO MOBILE */
    body .hero-section { 
        padding-top: 110px !important; 
        padding-bottom: 40px !important;
        overflow: hidden !important; 
    }
    
    body .hero-section .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body .hero-section .hero-content {
        display: contents;
    }

    body .hero-section .sticker-tag { 
        order: 1; 
        position: relative; 
        margin: 0 auto 5px auto; 
        top: 0; 
        left: 0; 
    }

    body .hero-section .hero-title { 
        order: 2; 
        font-size: 1.75rem !important; 
        text-align: center;
        line-height: 1.3;
    }

    body .hero-section .hero-subtitle.orange-glow { 
        order: 3; 
        font-size: 1.2rem !important; 
        margin-bottom: 15px !important; 
        text-align: center;
    }

    body .hero-section .hero-image-wrapper {
        order: 4; 
        margin: 0 auto;
        width: 100%;
        max-width: 220px; 
        bottom: 0 !important; 
    }

    body .hero-section .instagram-frame {
        min-height: auto;
    }

    body .hero-section .main-img {
        max-width: 100%;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    body .hero-section .cb-1 {
        position: absolute;
        top: auto;
        bottom: -15px;
        left: 0;
        right: 0;
        width: max-content;
        margin: 0 auto;
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    body .hero-section .hero-story { 
        order: 5; 
        font-size: 0.92rem !important; 
        margin-top: 25px !important; 
        margin-bottom: 25px !important; 
        text-align: center;
        max-width: 100%;
    }

    body .hero-section .cta-wrapper { 
        order: 6; 
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    body .hero-section .btn-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}