:root {
    /* Cores Pixar/Infantil (Pastéis vibrantes) */
    --primary-color: #A8DDFD; /* Baby blue */
    --secondary-color: #F6C667; /* Gold */
    --accent-color: #FFE27A; /* Soft yellow */
    --text-main: #1E3A5F; /* Dark blue */
    --text-light: #2C4A73; /* Slightly softer dark blue */
    
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-hover: rgba(255, 255, 255, 0.95);
    --border-glass: rgba(30, 58, 95, 0.15); /* Soft dark blue border */
    --shadow-soft: 0 15px 35px rgba(30, 58, 95, 0.08);
    --shadow-strong: 0 25px 50px rgba(30, 58, 95, 0.15);
}

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

body {
    font-family: 'Nunito', 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    background-color: var(--primary-color);
    text-align: center;
}

/* =========================================
   0. WAVE DIVIDERS (Global Fixes)
   ========================================= */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    font-size: 0;
    z-index: 15;
}
.wave-divider svg {
    display: block;
    width: calc(100% + 6px);
    margin-left: -3px;
    height: 80px;
    transform: scaleY(1.2) scaleX(1.02);
    transform-origin: center;
}

/* =========================================
   BACKGROUND MÁGICO & PARTÍCULAS
   ========================================= */
.site-background {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -2;
    background: var(--primary-color);
}

/* Removed gradient to fix wave color mismatch */

.magical-particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(246, 198, 103, 0.8);
    opacity: 0;
    top: var(--y);
    left: var(--x);
    animation: float var(--duration) ease-in-out infinite var(--delay);
}
.particle::before {
    content: "✦";
}

@keyframes float {
    0% { opacity: 0; transform: translateY(0) scale(0.8); }
    20% { opacity: 0.6; transform: translateY(-20px) scale(1.2); }
    80% { opacity: 0.6; transform: translateY(-80px) scale(1); }
    100% { opacity: 0; transform: translateY(-100px) scale(0.5); }
}

/* =========================================
   ESTRUTURA DE SEÇÕES & ANIMAÇÕES
   ========================================= */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-main);
}

.section-title.left-align {
    text-align: left;
}

/* Scroll Animations */
.animate-fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}
.animate-fade-in.visible {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-wrapper {
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
}

.hero-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('imagens/ayokemifundo1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}

.hero-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    justify-content: center;
    padding-top: 1rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.hero-text-side {
    flex: 1;
    max-width: 480px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 40px;
    border: 2px solid var(--border-glass);
    box-shadow: var(--shadow-strong);
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 183, 3, 0.15);
    color: #c97900;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.8rem;
    border: 2px solid rgba(255, 183, 3, 0.3);
}

.headline {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--accent-gold-hover);
    position: relative;
    display: inline-block;
}

.subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-video-side {
    flex: 0 0 240px;
    position: relative;
}

.video-mockup {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), 0 0 0 10px rgba(255,255,255,0.8);
    overflow: hidden;
    background: #000;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.video-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Só para não pausar acidentalmente */
}

@media (min-width: 901px) {
    .hero-text-side {
        margin-right: 320px;
    }
    
    .video-mockup-container {
        position: absolute;
        top: 50%;
        right: -320px;
        transform: translateY(-50%);
        width: 260px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}


/* =========================================
   BOTÕES CTA GERAIS
   ========================================= */
.cta-button {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(246, 198, 103, 0.4), inset 0 -4px 0 rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, #fff3c4, var(--accent-color));
    box-shadow: 0 20px 45px rgba(246, 198, 103, 0.6), inset 0 -4px 0 rgba(0,0,0,0.1);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(246, 198, 103, 0.4);
}

.arrow-icon {
    width: 26px;
    height: 26px;
    transition: transform 0.3s;
}

.cta-button:hover .arrow-icon {
    transform: translateX(8px);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    text-align: center;
}

/* =========================================
   SMALL VALUE GRID (Inside Hero)
   ========================================= */
.value-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
}

.value-card {
    border-radius: 20px;
    padding: 0.8rem 0.4rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(42, 59, 76, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.value-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.value-icon {
    font-size: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    background: rgba(255, 255, 255, 0.9);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    z-index: 1;
}

/* Contrast Colors with Glowing Effects */
.bg-yellow { background: #FFF4CC; border-color: #FFE57F; }
.bg-yellow:hover { box-shadow: 0 20px 40px rgba(255, 213, 79, 0.4), 0 0 20px rgba(255, 213, 79, 0.2); }
.bg-yellow p { color: #8A6400; }

.bg-blue { background: #E6F0FF; border-color: #AECBFA; }
.bg-blue:hover { box-shadow: 0 20px 40px rgba(138, 180, 248, 0.4), 0 0 20px rgba(138, 180, 248, 0.2); }
.bg-blue p { color: #174EA6; }

.bg-green { background: #E8F5E9; border-color: #A5D6A7; }
.bg-green:hover { box-shadow: 0 20px 40px rgba(129, 199, 132, 0.4), 0 0 20px rgba(129, 199, 132, 0.2); }
.bg-green p { color: #206224; }

.bg-orange { background: #FFEDE0; border-color: #FFCCB3; }
.bg-orange:hover { box-shadow: 0 20px 40px rgba(255, 171, 102, 0.4), 0 0 20px rgba(255, 171, 102, 0.2); }
.bg-orange p { color: #B34700; }

/* =========================================
   AWARENESS SECTION (Second Fold)
   ========================================= */

.awareness-section {
    background-color: transparent;
    position: relative;
    z-index: 5;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

.awareness-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awareness-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    margin-bottom: 5rem;
}

.awareness-bottom-row {
    width: 100%;
    display: flex;
    justify-content: center;
}

.awareness-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-wrapper {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 320px;
    perspective: 1200px;
}

.phone-mockup-wrapper:hover {
    transform: translateY(-10px);
}

.phone-mockup-frame {
    background: #000;
    border: 4px solid #737b80;
    border-radius: 45px;
    height: 620px;
    position: relative;
    
    transform: rotateY(20deg) rotateX(25deg) rotateZ(-2deg);
    transform-style: preserve-3d;
    
    box-shadow: 
        inset 0 0 0 2px #4a4a4a,
        inset 0 0 0 8px #000,
        15px 20px 25px rgba(0,0,0,0.4),
        25px 35px 50px rgba(0,0,0,0.2);
        
    z-index: 2;
    padding: 10px;
}

.phone-mockup-frame::before {
    /* Botões de volume escondidos pela perspectiva */
    display: none;
}

.phone-mockup-frame::after {
    /* Botão de energia visível no lado direito que está mais próximo */
    content: '';
    position: absolute;
    top: 140px;
    right: -8px;
    width: 6px;
    height: 55px;
    background: #8e9599;
    border-radius: 0 4px 4px 0;
    box-shadow: inset 2px 0 4px rgba(255,255,255,0.3);
}

.phone-screen {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.1);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 125px;
    height: 24px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.news-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fdfdfd;
}

.news-header {
    background: #d32f2f;
    color: white;
    padding: 35px 15px 10px;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
}

.news-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-logo {
    letter-spacing: -1px;
    font-family: 'Helvetica', sans-serif;
}

.news-content {
    padding: 15px;
    overflow-y: auto;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.2;
    color: #111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.news-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    text-align: justify;
}

.news-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    background: #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-image-slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.news-image-slider img.active {
    opacity: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 1;
}

.orange-orb {
    width: 300px;
    height: 300px;
    background: rgba(251, 133, 0, 0.4);
    top: 10%; left: -30%;
}

.awareness-content {
    flex: 1;
}

.awareness-headline {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -1px;
    text-align: center;
}

.awareness-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
}

.offer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 1rem auto 0;
    gap: 4rem;
}

.offer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    min-width: 300px;
}

.offer-text-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.offer-course-title {
    color: #E85D45; /* Coral/Orange matching image */
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

.offer-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-installments {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
    margin-bottom: -4px;
}

.offer-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.price-big {
    font-size: 3rem;
    letter-spacing: -1px;
}

.offer-warning {
    color: #E85D45;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-align: center;
    max-width: 500px;
}

.offer-right {
    display: flex;
    justify-content: center;
    flex: 1;
    min-width: 300px;
}

.egg-yolk-btn {
    background: #FFB703; /* Amarelo gema forte */
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.4), inset 0 -4px 0 rgba(0,0,0,0.1);
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.egg-yolk-btn:hover {
    transform: translateY(-5px) scale(1.03);
    background: #FFC300;
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.5), inset 0 -4px 0 rgba(0,0,0,0.1);
}

.btn-main-text {
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 2px;
    text-transform: none;
    letter-spacing: -0.5px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.btn-sub-text {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.75;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .offer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    .offer-text-group {
        flex-direction: column;
        gap: 1rem;
    }
    .offer-course-title {
        text-align: center;
    }
    .offer-warning {
        text-align: center;
        margin-top: 1rem;
    }
    .offer-right {
        width: 100%;
        justify-content: center;
    }
    .egg-yolk-btn {
        width: 100%;
    }
    .btn-main-text, .btn-sub-text {
        white-space: normal;
    }
}

/* =========================================
   2. EMOTIONAL CONNECTION SECTION
   ========================================= */
.emotion-section {
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}
.emotion-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}
.emotion-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border: 3px solid #ffffff;
    flex: 1;
    max-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.emotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.emotion-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.1));
}
.emotion-card p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
}
.emotion-card.bg-yellow { background: #FFF4CC; border-color: #FFE57F; }
.emotion-card.bg-blue { background: #E6F0FF; border-color: #AECBFA; }
.emotion-card.bg-green { background: #E8F5E9; border-color: #A5D6A7; }
.emotion-card.bg-orange { background: #FFEDE0; border-color: #FFCCB3; }
.emotion-card.bg-yellow p { color: #8A6400; }
.emotion-card.bg-blue p { color: #174EA6; }
.emotion-card.bg-green p { color: #206224; }
.emotion-card.bg-orange p { color: #B34700; }
.emotion-validation {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8);
}

/* =========================================
   3. TRANSITION / VALUE SECTION
   ========================================= */
.value-wrapper {
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
}
.value-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('imagens/ayokemifundoanimais.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}
.value-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}
.value-wrapper .section-title {
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}
.value-section {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}
.value-header {
    text-align: center;
    margin-bottom: 2rem;
}
.section-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0.5rem auto 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}
.benefit-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.check-icon {
    font-size: 2rem;
}
.benefit-item h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

/* =========================================
   4. PRODUCT EXPERIENCE SECTION
   ========================================= */
.experience-section {
    text-align: center;
}
.experience-gallery {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}
.gallery-card {
    background: var(--accent-color);
    padding: 1rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
}
.gallery-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 0 4px rgba(255,255,255,0.9);
    object-fit: cover;
}
.gallery-text {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.4;
    padding: 0 0.5rem;
}
.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* =========================================
   5. MOCKUPS SECTION
   ========================================= */
.mockup-section {
    text-align: center;
}
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
}
.mockup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(232, 245, 233, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 35px;
    padding: 2rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.empty-placeholder-9-16 {
    width: 100%;
    max-width: 230px;
    aspect-ratio: 9 / 16;
    height: auto;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), inset 0 0 0 6px rgba(255,255,255,0.8);
    border: 1px solid rgba(167, 216, 245, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mockup-label {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: -0.5rem;
}
.mockup-details {
    list-style: none;
    text-align: left;
    margin-top: 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 230px;
}
.mockup-details li {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4A5568;
    line-height: 1.5;
}
.mockup-final-line {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* EXPERIENCE WRAPPER FOR BACKGROUND IMAGE */
.experience-wrapper {
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
}
.experience-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('imagens/ayokemifundoanimais.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}
.experience-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}
.experience-wrapper .section-title, 
.experience-wrapper .section-subtitle {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.experience-section {
    text-align: center;
    position: relative;
    z-index: 1;
}
.mockup-section {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* =========================================
   6. BENEFITS FOR PARENTS
   ========================================= */
.parents-benefits-section {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.parents-benefits-content {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    padding: 2rem 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow-strong);
    border: 2px solid white;
    max-width: 800px;
    width: 100%;
}
.left-align {
    text-align: center !important;
}
.parents-bullet-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.parents-bullet-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
}
.bullet-icon {
    font-size: 1.8rem;
    margin-right: 1rem;
}

/* =========================================
   8. FINAL OFFER & CTA SECTION
   ========================================= */
.final-offer-section {
    text-align: center;
    padding-bottom: 4rem;
}
.final-offer-container {
    background: white;
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(30, 58, 95, 0.1);
    margin-top: 3rem;
    border: 3px solid rgba(167, 216, 245, 0.4);
}

/* =========================================
   9. FAQ SECTION
   ========================================= */
/* FAQ WRAPPER FOR BACKGROUND IMAGE */
.faq-wrapper {
    background-color: var(--primary-color);
    position: relative;
    width: 100%;
}
.faq-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('imagens/ayokemifundo1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 0;
}
.faq-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}
.faq-wrapper .faq-title {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.faq-section {
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}
.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: left;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}
.faq-item {
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.faq-question {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.5rem 2rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(0,0,0,0.03);
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-icon {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s;
    color: var(--text-main);
}
details[open] .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    padding: 0 2rem 1.5rem 2rem;
}

/* =========================================
   10. FOOTER
   ========================================= */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-main);
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.9;
}
.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    transition: opacity 0.3s;
}
.footer-links a:hover {
    opacity: 0.7;
}
.separator {
    color: rgba(26, 54, 93, 0.4); /* var(--text-main) with opacity */
}

/* =========================================
   RESPONSIVO / MOBILE
   ========================================= */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column; text-align: center; gap: 3rem; }
    .hero-text-side { padding: 2.5rem; }
    .hero-video-side { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
    .showcase-container { flex-direction: column; text-align: center; padding: 2.5rem; }
    .awareness-top-row { flex-direction: column; text-align: center; gap: 4rem; }
    .awareness-headline { font-size: 2.6rem; }
}

@media (max-width: 850px) {
    .headline { font-size: 2.5rem; }
    .awareness-headline { font-size: 2.2rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.2rem; }
    .faq-title { font-size: 2.2rem; }
    .emotion-validation { font-size: 1.2rem; }
    .emotion-cards { flex-direction: column; align-items: center; }
    .emotion-card { width: 100%; max-width: 400px; }
    .cards-container { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .experience-gallery { flex-direction: column; align-items: center; }
    .mockup-grid { display: flex; flex-direction: column; align-items: center; }
    .testimonials-container { flex-direction: column; align-items: center; }
    .cta-glass-box { padding: 3rem 1.5rem; border-radius: 30px; }
    .final-title { font-size: 2.2rem; }
    
    .parents-benefits-content { padding: 3rem 2rem; }
    .final-offer-container { padding: 2rem 1.5rem; }
    .faq-section { padding: 4rem 1rem; }
    .faq-question { font-size: 1.1rem; padding: 1rem; }
    
    .phone-mockup-wrapper { perspective: none; max-width: 300px; margin: 0 auto; }
    .phone-mockup-frame { transform: none; height: auto; aspect-ratio: 9/16; }
    
    /* Manter 4 colunas no mobile, mas diminuir tudo */
    .value-grid-container { gap: 0.5rem; }
    .value-card { padding: 0.8rem 0.3rem; border-radius: 15px; gap: 0.5rem; }
    .value-icon { width: 35px; height: 35px; font-size: 1.2rem; }
    .value-card p { font-size: 0.65rem; }
    
    /* Troca de fundo apenas no celular */
    .value-wrapper::before,
    .experience-wrapper::before {
        background-image: url('imagens/fundocelular.jpeg');
    }
}

@media (max-width: 480px) {
    .section { padding: 4rem 1rem; }
    .headline { font-size: 2rem; }
    .awareness-container { padding: 0 1rem; gap: 2.5rem; }
    .awareness-headline { font-size: 1.8rem; }
    .phone-mockup-frame { border-width: 10px; border-radius: 35px; height: auto; aspect-ratio: 9/16; transform: none; }
    .phone-notch { width: 100px; height: 20px; }
    .news-header { padding: 22px 10px 8px; font-size: 1rem; }
    .news-content { padding: 10px; }
    .news-title { font-size: 1.1rem; margin-bottom: 8px; }
    .news-text { font-size: 0.8rem; line-height: 1.3; }
    .awareness-cta-area { padding: 1.5rem; }
    .awareness-cta-area .cta-button { font-size: 1rem; padding: 1rem; }
    .hero-text-side { padding: 1.2rem; border-radius: 25px; }
    .magic-title { font-size: 1.8rem; }
    .glass-panel { padding: 3rem 1.5rem; border-radius: 25px; }
    .benefit-item { padding: 1.5rem; }
    
    /* Super compacto para caber 4 na mesma linha num celular */
    .value-grid-container { gap: 0.3rem; margin-top: 1rem; }
    .value-card { padding: 0.6rem 0.2rem; border-radius: 12px; border-width: 1px; gap: 0.3rem; }
    .value-icon { width: 28px; height: 28px; font-size: 1rem; }
    .value-card p { font-size: 0.55rem; line-height: 1.1; }
}

/* =========================================
   ESTRELAS FIXAS EM SEÇÕES SEM IMAGENS
   ========================================= */
.stars-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.star-static {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent-color), 0 0 20px rgba(246, 198, 103, 0.8);
    opacity: 0.8;
    top: var(--top);
    left: var(--left);
    animation: twinkle var(--duration) ease-in-out infinite alternate var(--delay);
}
.star-static::before {
    content: "✦";
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}
