:root {
    /* Premium Clean Palette */
    --cor-1: #06283D;      /* Azul Escuro (Backgrounds) */
    --cor-2: #08131D;      /* Grafite (Cards/Surfaces) */
    --cor-3: #00AEEF;      /* Azul Limpeza (Accents & Glows) */
    --cor-4: #F8FCFF;      /* Branco Suave */
    --cor-5: #DCE7EF;      /* Cinza Claro (Muted Text) */
    --cor-agua: #2EE6A6;   /* Verde Água (Secundário) */
    --cor-whatsapp: #25D366;
    --cor-whatsapp-hover: #1EBE5D;
    --cor-erro: #E31E24;   /* Frente dos Flip Cards */
    
    --bg-glass: rgba(8, 19, 29, 0.6);
    --border-glass: rgba(0, 174, 239, 0.15);
    --border-glow: rgba(0, 174, 239, 0.4);

    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background-color: var(--cor-1);
    color: var(--cor-4);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-bubbles {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='5' fill='none' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='80' cy='60' r='12' fill='none' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.05'/%3E%3Ccircle cx='40' cy='80' r='3' fill='none' stroke='%2300AEEF' stroke-width='1' stroke-opacity='0.1'/%3E%3C/svg%3E");
    background-size: 150px 150px;
}
.bg-waves {
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 15px);
}
.bg-dots {
    background-image: radial-gradient(rgba(0, 174, 239, 0.15) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
}

/* Drop Animation for Testimonials Background */
@keyframes fall { 0% { transform: translateY(-100px) rotate(0deg); opacity: 0; } 20% { opacity: 0.5; } 80% { opacity: 0.5; } 100% { transform: translateY(100vh) rotate(360deg); opacity: 0; } }
.snowflakes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.snowflake { position: absolute; color: rgba(255, 255, 255, 0.15); font-size: 1.2rem; filter: blur(1px); animation: fall linear infinite; }

h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 1rem; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { color: var(--cor-5); font-size: 1.05rem; font-weight: 300; }
.text-gradient { background: linear-gradient(180deg, #FFFFFF 0%, var(--cor-5) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-accent { color: var(--cor-3); text-shadow: 0 0 20px rgba(0, 174, 239, 0.4); }

/* Layout & Spacing */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 2; }
.section { padding: 5rem 0; position: relative; } 
.text-center { text-align: center; }
.grid { display: grid; gap: 2rem; }

.glass-card {
    background: var(--bg-glass); border: 1px solid var(--border-glass);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 20px; padding: 2.5rem; transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
}
.glass-card:hover { border-color: var(--border-glow); transform: translateY(-5px); background: rgba(8, 19, 29, 0.8); }

/* Elegant Dividers (Water Drop variant) */
.elegant-divider { display: flex; align-items: center; justify-content: center; padding: 2.5rem 0; opacity: 0; transform: translateY(20px); transition: all 1s ease; position: relative; z-index: 2; }
.elegant-divider.active { opacity: 1; transform: translateY(0); }
.divider-line { height: 1px; width: 120px; background: linear-gradient(90deg, transparent, rgba(0,174,239,0.5), transparent); position: relative; }
.divider-center { position: relative; margin: 0 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--cor-3); text-shadow: 0 0 10px rgba(0,174,239,0.6); }
.div-particle { position: absolute; border-radius: 50%; background: var(--cor-3); opacity: 0.6; filter: blur(1px); }
.dp1 { width: 6px; height: 6px; top: -10px; left: -10px; animation: floatUp 3s infinite alternate; }
.dp2 { width: 4px; height: 4px; bottom: -5px; right: -15px; animation: floatUp 4s infinite alternate-reverse; }
.dp3 { width: 3px; height: 3px; top: 5px; right: -8px; animation: pulseGlow 2s infinite; }

@keyframes floatUp { 0% { transform: translateY(0) scale(1); opacity: 0.3; } 100% { transform: translateY(-15px) scale(1.5); opacity: 0.8; } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.2; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px var(--cor-3); } }
@keyframes pulse-soft { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } 50% { box-shadow: 0 0 20px 5px rgba(37, 211, 102, 0.4); } }

#preloader {
    position: fixed; inset: 0; background: var(--cor-1); z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-image: radial-gradient(circle at center, rgba(0, 174, 239, 0.15) 0%, var(--cor-1) 70%);
}
.preloader-logo { 
    width: 220px; max-width: 80%; animation: pulse-logo 2.5s ease-in-out infinite alternate; 
    margin-bottom: 2rem; filter: drop-shadow(0 0 15px rgba(0, 174, 239, 0.4)); object-fit: contain;
}
.preloader-bar-container {
    width: 200px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.preloader-bar {
    height: 100%; background: linear-gradient(90deg, var(--cor-3), var(--cor-agua));
    width: 0%; animation: load-bar 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes pulse-logo { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.05); opacity: 1; } }
@keyframes load-bar { 0% { width: 0%; } 40% { width: 50%; } 100% { width: 100%; } }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.1rem 2.2rem; border-radius: 50px; font-weight: 600; font-family: var(--font-title);
    font-size: 1.05rem; text-decoration: none; transition: var(--transition);
    cursor: pointer; border: none; gap: 0.6rem; letter-spacing: 0.5px; position: relative; overflow: hidden;
    text-align: center;
}
.btn-wa { 
    background-color: var(--cor-whatsapp); color: #fff; 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255,255,255,0.2); 
}
.btn-wa:hover { 
    background-color: var(--cor-whatsapp-hover); transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), inset 0 2px 0 rgba(255,255,255,0.2); 
}
.btn-glow {
    background: rgba(8, 19, 29, 0.6); color: var(--cor-3); border: 1px solid var(--cor-3);
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.1); backdrop-filter: blur(5px);
}
.btn-glow:hover {
    background: rgba(0, 174, 239, 0.1); color: #fff;
    box-shadow: 0 0 25px rgba(0, 174, 239, 0.4);
    border-color: #fff; transform: translateY(-3px);
}
.icon-img { object-fit: contain; flex-shrink: 0; }
.icon-img-sm { width: 16px; height: 16px; }
.icon-img-md { width: 22px; height: 22px; }

header {
    position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 100;
    width: 95%; max-width: 1000px; padding: 0.6rem 1rem;
    background: rgba(6, 40, 61, 0.55); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: var(--transition);
}
header.scrolled {
    top: 0.8rem; width: 92%; background: rgba(6, 40, 61, 0.85);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 15px rgba(0, 174, 239, 0.1);
    border-color: rgba(0, 174, 239, 0.3); padding: 0.5rem 1rem;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo-nav-container { display: flex; align-items: center; gap: 0.5rem; height: 35px; text-decoration: none; }
.logo-icon { height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 0 5px rgba(0,174,239,0.5)); transition: var(--transition); }
.logo-text { height: 70%; width: auto; object-fit: contain; filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); transition: var(--transition); }

.nav-links { display: flex; gap: 1.2rem; align-items: center; margin-left: auto; }
.nav-links a.menu-link { 
    color: var(--cor-4); text-decoration: none; font-weight: 500; font-size: 0.85rem;
    font-family: var(--font-body); transition: var(--transition); opacity: 0.8;
}
.nav-links a.menu-link:hover { color: var(--cor-3); opacity: 1; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--cor-4); font-size: 1.5rem; cursor: pointer; padding: 0.3rem; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 6rem; overflow: hidden; }
.hero-bg { 
    position: absolute; inset: 0; z-index: 0;
    background-image: url('https://res.cloudinary.com/dm9mnc97u/image/upload/v1780167288/Design_sem_nome_3_retelj.png');
    background-size: cover; background-position: center;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(6, 40, 61, 0.95) 0%, rgba(6, 40, 61, 0.8) 40%, rgba(6, 40, 61, 0.3) 100%);
}

.hero-content { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-content-inner { max-width: 650px; }

.badge-premium {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; border-radius: 50px;
    background: rgba(0, 174, 239, 0.15); border: 1px solid var(--border-glass);
    color: #fff; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1.5rem; backdrop-filter: blur(5px);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; justify-content: flex-start; }

.roller-wrapper { background: var(--cor-2); padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); overflow: hidden; position: relative; box-shadow: inset 0 0 20px rgba(0,0,0,0.5); z-index: 2; }
.roller-wrapper::before, .roller-wrapper::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.roller-wrapper::before { left: 0; background: linear-gradient(to right, var(--cor-2), transparent); }
.roller-wrapper::after { right: 0; background: linear-gradient(to left, var(--cor-2), transparent); }

.roller-track-left { display: flex; white-space: nowrap; width: max-content; animation: scroll-left 35s linear infinite; }
.roller-track-right { display: flex; white-space: nowrap; width: max-content; animation: scroll-right 35s linear infinite; }

.roller-item { display: inline-flex; align-items: center; font-family: var(--font-title); font-size: 1.1rem; font-weight: 500; padding: 0 2rem; color: var(--cor-5); letter-spacing: 0.5px; }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.flip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; perspective: 1000px; }
.flip-card { background-color: transparent; height: 260px; perspective: 1000px; cursor: pointer; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); } /* Hover Desktop */
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); } /* Toque Mobile */

.flip-card-front, .flip-card-back { position: absolute; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 16px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 2rem 1.5rem; }

.flip-card-front { background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(8, 19, 29, 0.8)); border: 1px solid rgba(227, 30, 36, 0.3); color: var(--cor-4); }
.flip-card-front .icon { font-size: 2.5rem; margin-bottom: 1rem; filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.5)); }
.flip-card-front h4 { font-size: 1.2rem; line-height: 1.3; }
.tap-hint { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 1.5rem; animation: pulse-opacity 2s infinite; font-weight: 300; background: rgba(0,0,0,0.3); padding: 0.3rem 0.8rem; border-radius: 20px;}
@keyframes pulse-opacity { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.flip-card-back { background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(8, 19, 29, 0.9)); border: 1px solid rgba(37, 211, 102, 0.4); color: var(--cor-4); transform: rotateY(180deg); padding: 1.5rem; justify-content: space-between; }
.flip-card-back p { font-size: 0.95rem; margin-bottom: 1rem; color: var(--cor-4); font-weight: 400; line-height: 1.4; }
.flip-card-back .icon { font-size: 2rem; margin-bottom: 0.5rem; color: var(--cor-whatsapp); filter: drop-shadow(0 0 5px rgba(37,211,102,0.5)); }
.flip-card-back .btn-mini { background: var(--cor-whatsapp); color: #fff; text-decoration: none; padding: 0.6rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; width: 100%; transition: var(--transition); box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.flip-card-back .btn-mini:hover { background: var(--cor-whatsapp-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5); }

.specialist-section { position: relative; z-index: 2; padding-top: 4rem; }
.specialist-wrapper { 
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: rgba(255,255,255,0.02); padding: 3rem 2rem; border-radius: 24px; 
    border: 1px solid rgba(255,255,255,0.05); max-width: 800px; margin: 0 auto;
}
.badge-specialist { background: rgba(0,174,239,0.1); color: var(--cor-3); font-family: var(--font-title); font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; padding: 0.4rem 1.2rem; border-radius: 20px; border: 1px solid rgba(0,174,239,0.2); margin-bottom: 1.5rem; text-transform: uppercase; display: inline-block;}
.specialist-img-box { width: 220px; max-width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); position: relative; margin-bottom: 1.5rem; }
.specialist-img-box::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,40,61,0.6), transparent); opacity: 0.6; }
.specialist-img-box img { width: 100%; height: auto; display: block; aspect-ratio: 4/5; object-fit: cover; }

.specialist-name { font-size: 2rem; color: var(--cor-4); margin-bottom: 0.2rem; }
.specialist-role { font-size: 1rem; color: var(--cor-3); font-weight: 500; margin-bottom: 1.5rem; }
.specialist-wrapper p.bio { margin-bottom: 2rem; font-size: 1.15rem; line-height: 1.6; color: var(--cor-4); font-weight: 300; max-width: 700px;}

.stats-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-bottom: 2rem; width: 100%; }
.stat-card-elegant { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 1rem; border-radius: 12px; text-align: center; transition: var(--transition); }
.stat-card-elegant:hover { background: rgba(0,174,239,0.05); border-color: rgba(0,174,239,0.2); transform: translateY(-3px); }
.stat-card-elegant .num { font-family: var(--font-title); font-size: 2rem; font-weight: 800; color: var(--cor-4); margin-bottom: 0.5rem; text-shadow: 0 0 15px rgba(0,174,239,0.3); display: flex; align-items: center; justify-content: center; gap: 2px; }
.stat-card-elegant .lbl { font-size: 0.85rem; color: var(--cor-5); font-weight: 400; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.5px; }

.specialist-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; width: 100%;}
.btn-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff; border: none;
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3), inset 0 2px 0 rgba(255,255,255,0.2);
}
.btn-ig:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 39, 67, 0.6), inset 0 2px 0 rgba(255,255,255,0.2);
}

.services-carousel-wrapper { width: 100%; overflow: hidden; padding: 1rem 0 1rem; cursor: grab; margin-top: 2rem; -webkit-overflow-scrolling: touch; }
.services-carousel-wrapper:active { cursor: grabbing; }
.services-track { display: flex; gap: 1.5rem; padding: 0 1.5rem; width: max-content; transition: transform 0.1s ease-out; }
.service-card {
    background: rgba(8, 19, 29, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px;
    padding: 2.5rem 2rem; width: 320px; display: flex; flex-direction: column; flex-shrink: 0;
    transition: var(--transition); user-select: none; backdrop-filter: blur(10px);
}
.service-card:hover { border-color: var(--cor-3); transform: translateY(-8px); background: rgba(8, 19, 29, 0.8); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.service-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.85rem; margin-bottom: 1.5rem; }
.service-icon { font-size: 2.5rem; display: inline-block; padding: 0.8rem; background: rgba(0,174,239,0.05); border-radius: 12px; border: 1px solid rgba(0,174,239,0.1); line-height: 1; }
.service-time {
    max-width: 150px;
    min-height: 38px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--cor-3);
    background: rgba(0, 174, 239, 0.1);
    padding: 0.45rem 0.75rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--font-title);
    letter-spacing: 0;
    line-height: 1.15;
    text-align: center;
    border: 1px solid rgba(0, 174, 239, 0.28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 18px rgba(0,0,0,0.16);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--cor-4); }
.service-card p { font-size: 0.95rem; margin-bottom: 2rem; flex-grow: 1; color: var(--cor-5); font-weight: 300; line-height: 1.5; }

.mini-cta {
    background: rgba(37, 211, 102, 0.1); color: var(--cor-whatsapp); border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 0.8rem; border-radius: 10px; text-align: center; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-title);
}
.mini-cta:hover { background: var(--cor-whatsapp); color: #fff; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); border-color: var(--cor-whatsapp); }

.swipe-hint { display: none; color: var(--cor-5); font-size: 0.95rem; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-weight: 300; }
.swipe-hint .finger { font-size: 1.5rem; animation: swipeAnim 1.5s infinite ease-in-out; }
@keyframes swipeAnim { 0%, 100% { transform: translateX(5px); } 50% { transform: translateX(-5px); } }

.baby-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(46, 230, 166, 0.12), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(0, 174, 239, 0.12), transparent 30%),
        rgba(8, 19, 29, 0.65);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.baby-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 3rem;
}
.section-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(46, 230, 166, 0.28);
    border-radius: 999px;
    color: var(--cor-agua);
    background: rgba(46, 230, 166, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.baby-copy h2 { max-width: 760px; }
.baby-subtitle {
    color: var(--cor-4);
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.baby-copy p:not(.baby-subtitle) {
    max-width: 680px;
    margin-bottom: 1.25rem;
}
.baby-care-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 680px;
    margin: 1.5rem 0 2rem;
}
.baby-care-strip span {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem;
    border: 1px solid rgba(46, 230, 166, 0.18);
    border-radius: 14px;
    color: var(--cor-5);
    background: rgba(6, 40, 61, 0.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.baby-care-strip strong {
    color: var(--cor-4);
    font-family: var(--font-title);
    font-size: 1rem;
}
.baby-panel {
    border-color: rgba(46, 230, 166, 0.18);
    background:
        linear-gradient(145deg, rgba(0, 174, 239, 0.08), rgba(46, 230, 166, 0.06)),
        rgba(8, 19, 29, 0.72);
    isolation: isolate;
}
.baby-panel::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}
.baby-panel-badge {
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: var(--cor-1);
    background: linear-gradient(135deg, var(--cor-agua), var(--cor-3));
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.baby-panel h3 {
    margin-bottom: 1.4rem;
    color: var(--cor-4);
}
.baby-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.baby-items span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    background: rgba(6, 40, 61, 0.42);
    color: var(--cor-5);
    font-weight: 500;
    line-height: 1.25;
}
.baby-items span::before {
    content: attr(data-icon);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.quiz-container { max-width: 800px; margin: 0 auto; text-align: center; padding: 3rem; }
.quiz-step { display: none; animation: fadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); }
.quiz-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.quiz-progress { height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 2.5rem; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); }
.quiz-bar { height: 100%; background: var(--cor-3); width: 0%; transition: width 0.5s ease; box-shadow: 0 0 10px var(--cor-3); }

.quiz-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; }
.quiz-btn {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 1.2rem; border-radius: 12px;
    color: var(--cor-4); font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
    cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: flex-start; gap: 1rem; text-align: left;
}
.quiz-btn:hover { background: rgba(0, 174, 239, 0.08); border-color: var(--cor-3); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,174,239,0.1); color: #fff; }
.quiz-btn i { font-style: normal; font-size: 1.5rem; }

.quiz-back-btn {
    background: none; border: none; color: var(--cor-5); font-size: 0.95rem; font-family: var(--font-body);
    cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem; margin-bottom: 1.5rem; transition: var(--transition);
}
.quiz-back-btn:hover { color: var(--cor-3); }

.summary-box { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 1.5rem; text-align: left; margin-bottom: 2rem; }
.summary-item { margin-bottom: 0.5rem; font-size: 0.95rem; }
.summary-item strong { color: var(--cor-3); }

@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.testimonials-wrapper { position: relative; width: 100%; overflow: hidden; padding: 2rem 0 4rem; margin-top: 1rem; }
.testimonials-wrapper::before, .testimonials-wrapper::after { content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none; }
.testimonials-wrapper::before { left: 0; background: linear-gradient(to right, var(--cor-1), transparent); }
.testimonials-wrapper::after { right: 0; background: linear-gradient(to left, var(--cor-1), transparent); }

.testi-track { display: flex; width: max-content; animation: scroll-marquee 45s linear infinite; gap: 2rem; padding: 0 1rem; }
.testimonials-wrapper:hover .testi-track, .testimonials-wrapper:active .testi-track { animation-play-state: paused; }

.review-card-elegant {
    background: rgba(8, 19, 29, 0.5); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
    padding: 2.5rem; width: 400px; display: flex; flex-direction: column; gap: 1.2rem;
    white-space: normal; transition: var(--transition); flex-shrink: 0; user-select: none;
    backdrop-filter: blur(10px); z-index: 2;
}
.review-card-elegant:hover { border-color: rgba(0,174,239,0.3); transform: translateY(-5px); background: rgba(8, 19, 29, 0.9); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; }
.review-user { display: flex; align-items: center; gap: 1rem; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--cor-2), var(--cor-1)); display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; color: var(--cor-3); border: 1px solid rgba(0,174,239,0.3); }
.review-name { font-family: var(--font-title); font-weight: 600; font-size: 1.1rem; color: var(--cor-4); line-height: 1.2; }
.review-role { font-size: 0.8rem; color: var(--cor-5); }
.stars { color: #FBBF24; font-size: 1.3rem; letter-spacing: 2px; line-height: 1; margin-top: 0.5rem;}
.review-text { font-size: 1rem; font-style: italic; color: var(--cor-4); font-weight: 300; line-height: 1.6; }

/* Correção do Grid do Mapa */
.map-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.map-iframe-container { width: 100%; position: relative; min-height: 350px; border-radius: 20px 20px 0 0; }
.map-overlay-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: rgba(6,40,61,0.85); backdrop-filter: blur(10px); padding: 0.6rem 1.2rem; border-radius: 8px; border: 1px solid rgba(0,174,239,0.3); color: var(--cor-4); font-weight: 600; z-index: 2; display: flex; align-items: center; gap: 0.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.3); font-size: 0.9rem;}

/* Iframe com posicionamento absoluto para não cortar o mapa */
.map-iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; display: block; filter: invert(90%) hue-rotate(180deg) saturate(150%) brightness(85%) contrast(110%); }

.map-info { flex: 1; padding: 2.5rem 1.5rem; display: flex; flex-direction: column; justify-content: center; background: rgba(8, 19, 29, 0.4); }
.map-info h3 { color: var(--cor-3); margin-bottom: 0.5rem; font-weight: 600; }
.map-info p { margin-bottom: 1.5rem; font-size: 1rem; color: var(--cor-5); }

.region-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.region-tag { background: rgba(0, 174, 239, 0.08); border: 1px solid rgba(0, 174, 239, 0.2); color: var(--cor-4); padding: 0.4rem 0.8rem; border-radius: 50px; font-size: 0.85rem; display: inline-block; }

/* Desktop */
