/* ===== VARIÁVEIS DE CORES & TIPOGRAFIA ===== */
:root {
    --primary: #FF8FA3;
    --primary-light: #FFB3C6;
    --primary-dark: #FF4D6D;
    --secondary: #84DCC6; /* Soft mint contrast */
    --accent: #FFD166; /* Star / badge color */
    
    --bg-light: #FAF9F6;
    --text-dark: #2D3142;
    --text-muted: #6B708A;
    
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --glass-bg: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-dark);
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.8em;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* ===== NAVEGAÇÃO ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-main);
}
.logo span { color: var(--primary-dark); }

.desktop-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}
.desktop-nav a:hover { color: var(--primary); }

/* Nav right wrapper (CTA + hamburger) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,77,109,0.08); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* Animate to X when open */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,77,109,0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.mobile-nav.open {
    max-height: 420px;
    padding: 12px 0 20px;
}
.mobile-nav-link {
    display: block;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}
.mobile-nav-link:hover {
    background: rgba(255,77,109,0.05);
    color: var(--primary-dark);
}
.mobile-nav-cta {
    display: block;
    margin: 16px 24px 0;
    text-align: center;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-light);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: var(--primary-light);
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(255,179,198,0.2) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle farthest-side, rgba(128,90,213,0.15), rgba(255,255,255,0));
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -20%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle farthest-side, rgba(0,123,255,0.15), rgba(255,255,255,0));
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Badge */
.badge-viral {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 77, 109, 0.07);
    color: var(--primary-dark);
    border: 1px solid rgba(255, 77, 109, 0.3);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 22px;
}

/* Hero Headline */
.seo-h1 {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    opacity: 1;
    letter-spacing: 0.2px;
}
.hero-visual-h2 {
    font-family: var(--font-main);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}
.hero-highlight {
    color: var(--primary-dark);
    font-style: italic;
    display: block;
}

/* Hero Subtitle */
.hero .subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.65;
    font-family: var(--font-main);
    font-weight: 400;
    max-width: 520px;
}

/* Hero CTA Box */
.hero-cta-box {
    background: #fff;
    border: 1.5px solid #e0ddd8;
    border-radius: 14px;
    padding: 22px 24px 18px;
    margin-bottom: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.hero-cta-box label {
    display: block;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.97rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.hero-urgency {
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
}
.hero-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d8d8d0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #fff;
    margin-bottom: 12px;
    transition: border-color 0.2s;
}
.hero-input:focus {
    outline: none;
    border-color: var(--primary-dark);
}
.hero-input::placeholder { color: #aaa; }

/* CTA Button */
.btn-hero-cta {
    width: 100%;
    background: var(--primary-dark);
    color: #fff;
    padding: 16px 24px;
    border: none;
    border-radius: 9px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-main);
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.2s;
    display: block;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.35);
}
.btn-hero-cta:hover {
    background: #e0304d;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.5);
}

/* Trust Row */
.hero-trust-row {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #777;
    font-family: var(--font-main);
    justify-content: center;
}

/* Mini Review */
.hero-mini-review {
    font-size: 0.87rem;
    color: #888;
    font-style: italic;
    font-family: var(--font-main);
}

/* Keep existing group/pulse for other uses */
.input-group {
    display: flex;
    gap: 10px;
}
.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
}
.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}
.animate-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255, 77, 109, 0.5); }
    70%  { transform: scale(1.04); box-shadow: 0 0 0 10px rgba(255, 77, 109, 0);   }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255, 77, 109, 0);   }
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
}
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.5);
    position: relative;
}
.glass-card img {
    width: 100%;
    border-radius: 12px;
    margin: 10px 0;
    transition: transform 0.3s ease;
}
.glass-card img:hover { transform: scale(1.02); }

.label-before, .label-after {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.arrow-down {
    font-size: 1.5rem;
    margin: 10px 0;
    animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: hidden;
    margin-bottom: 15px;
}
@media (min-width: 768px) {
    .hero-carousel {
        height: 420px;
    }
}

.carousel-item {
    position: absolute;
    width: 200px;
    height: 250px;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid rgba(0,0,0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    background: #fff;
    will-change: transform, opacity, filter;
}
@media (min-width: 768px) {
    .carousel-item {
        width: 300px;
        height: 375px;
    }
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}
.glass-card .carousel-item img:hover { transform: none; } /* Overrides the previous img hover scale */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
}
.carousel-btn:hover {
    background: white;
    box-shadow: var(--shadow);
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.floating-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    background: var(--accent);
    color: #8C6A0A;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(255,209,102,0.4);
    z-index: 20;
    white-space: nowrap;
}

/* ===== SEÇÕES GERAIS ===== */
section { padding: 80px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* COMPARAÇÃO (NOVO DESIGN) */
.comparison-section { background: #f9f9f7; }
.smart-choice-badge-wrap { text-align: center; margin-bottom: 18px; }
.smart-choice-badge {
    display: inline-block;
    background: #f0f0ec;
    border: 1px solid #d8d8d0;
    color: #555;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.comparison-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 40px;
}
.comparison-table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 10px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.comp-table-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e8e8e2;
    overflow: hidden;
    position: relative;
}
.comp-traditional { border: 1px solid #e8e8e2; }
.comp-snapibaby {
    border: 2px solid #4a7c4e;
}
.smart-choice-tag {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #eef4ef;
    border: 1px solid #4a7c4e;
    color: #4a7c4e;
    padding: 4px 18px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
}
.comp-table-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 24px 16px;
}
.comp-table-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-main);
    margin: 0;
}
.comp-header-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.icon-red { background: #fde8e8; color: #c0392b; }
.icon-green { background: #e8f4e8; color: #2e7d32; }

.comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-top: 1px solid #f0f0ea;
    font-size: 0.95rem;
}
.comp-label { color: #666; }
.comp-val { font-weight: 600; }
.val-red { color: #c0392b; text-decoration: line-through; text-decoration-color: #c0392b; }
.val-bold { color: var(--text-dark); font-weight: 700; }
.val-green { color: #2e7d32; font-weight: 700; }

/* Savings Strip */
.comp-savings-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 820px;
    margin: 28px auto 0;
    background: #f5f5ee;
    border: 1px solid #e0e0d8;
    border-radius: 14px;
    padding: 22px 28px;
    flex-wrap: wrap;
}
.comp-savings-text { color: var(--text-dark); font-size: 0.95rem; line-height: 1.6; flex: 1; min-width: 200px; }
.savings-green { color: #2e7d32; }
.comp-savings-visual { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.savings-pill { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.savings-price-old { font-size: 1.5rem; font-weight: 800; color: #999; text-decoration: line-through; }
.savings-price-new { font-size: 1.5rem; font-weight: 800; color: #2e7d32; }
.savings-label-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; color: #999; text-transform: uppercase; }
.savings-arrow-icon { font-size: 1.4rem; color: #aaa; }

.price-strike { text-decoration: line-through; color: #aaa; }
.recommended-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white; padding: 5px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600;
}

/* COMO FUNCIONA */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.step { background: white; padding: 40px 20px; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.3s; }
.step:hover { transform: translateY(-5px); }
.step-icon { font-size: 3rem; margin-bottom: 15px; }

/* GALERIA (O MAIS IMPORTANTE) */
.gallery-section { background: white; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.gallery-item { text-align: center; }
.images-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.img-transformed {
    width: 100%; height: 300px; object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.images-container:hover .img-transformed { transform: scale(1.05); }
.tag-tema {
    position: absolute; bottom: 10px; left: 10px;
    background: rgba(255,255,255,0.9); padding: 5px 12px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; z-index: 2;
}
.gallery-caption {
    margin-top: 15px; font-weight: 600; color: var(--text-muted); font-size: 0.95rem;
}

/* DEPOIMENTOS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); position: relative;
    transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); }
.stars { color: var(--accent); margin-bottom: 15px; letter-spacing: 2px; }
.review-text { font-style: italic; color: #555; margin-bottom: 20px; }
.review-author-wrapper { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 15px; }
.review-author-wrapper img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-light); }
.review-author { font-weight: 700; color: var(--text-dark); margin: 0; }
.counter-box {
    margin-top: 60px; display: inline-block; background: var(--primary-light); color: var(--text-dark); padding: 20px 40px; border-radius: 40px;
}
.counter-box h3 { font-size: 3rem; margin-bottom: 5px; color: var(--primary-dark); }

/* =========================================
   PREMIUM TESTIMONIALS (ANIMATED CAROUSEL)
   ========================================= */
.premium-testimonials {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at center, #fff0f3 0%, #ffffff 100%);
    color: var(--text-dark);
    overflow: hidden;
}

.premium-bg-effects {
    position: absolute;
    inset: 0;
}
.premium-mesh {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255,143,163,0.08), rgba(255,179,198,0.1), rgba(255,77,109,0.05));
    background-size: 400% 400%;
    animation: ptGradientMove 25s linear infinite;
}
@keyframes ptGradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.premium-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.orb-1 {
    top: 30%; left: 20%;
    width: 300px; height: 300px;
    background: rgba(255,143,163,0.2);
    animation: ptOrb1Move 20s ease-in-out infinite;
}
@keyframes ptOrb1Move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(150px, 80px) scale(1.2); }
}

.orb-2 {
    bottom: 30%; right: 20%;
    width: 350px; height: 350px;
    background: rgba(132,220,198,0.2);
    animation: ptOrb2Move 22s ease-in-out infinite;
}
@keyframes ptOrb2Move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-100px, -60px) scale(1.3); }
}

.pt-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255,77,109,0.4);
    border-radius: 50%;
    animation: ptParticleFloat 4s ease-in-out infinite;
}
@keyframes ptParticleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.2; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

/* Header */
.pt-header {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}
.pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,77,109,0.08);
    border: 1px solid rgba(255,77,109,0.15);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}
.pt-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    font-family: var(--font-main);
    color: var(--text-dark);
}
.pt-title span {
    background: linear-gradient(to right, var(--primary-dark), #ff758f, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pt-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel */
.pt-carousel-area {
    margin-bottom: 60px;
}
.pt-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 350px;
    perspective: 1000px;
    z-index: 10;
}
@media (max-width: 768px) {
    .pt-carousel { height: 500px; }
}

.pt-slide {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,77,109,0.15);
    box-shadow: 0 15px 40px rgba(255,77,109,0.05);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 768px) {
    .pt-slide {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
}

.pt-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 10;
}
.pt-enter-next { transform: translateX(500px) scale(0.8) rotateY(45deg); opacity: 0; }
.pt-exit-next { transform: translateX(-500px) scale(0.8) rotateY(-45deg); opacity: 0; z-index: 0; }
.pt-enter-prev { transform: translateX(-500px) scale(0.8) rotateY(-45deg); opacity: 0; }
.pt-exit-prev { transform: translateX(500px) scale(0.8) rotateY(45deg); opacity: 0; z-index: 0; }

.pt-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255,77,109,0.1);
    font-family: serif;
    line-height: 1;
}

.pt-user-panel {
    flex-shrink: 0;
    text-align: center;
    width: 200px;
}
@media (max-width: 768px) {
    .pt-user-panel { width: 100%; }
}
.pt-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    margin: 0 auto 15px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pt-avatar-initials {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    font-family: var(--font-main);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    border: 3px solid rgba(255,255,255,0.4);
}
.pt-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.pt-role {
    color: var(--primary-dark);
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.pt-stars {
    color: #facc15;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.pt-text-panel { flex: 1; }
.pt-quote {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .pt-quote { font-size: 1.1rem; margin-bottom: 20px; }
}

.pt-results-flex {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .pt-results-flex { justify-content: center; }
}
.pt-result-badge {
    background: white;
    border: 1px solid var(--primary-light);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.pt-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
    position: relative;
}
.pt-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255,77,109,0.1);
}
.pt-btn:hover { background: var(--primary-light); color: white; transform: scale(1.1); }
.pt-dots { display: flex; gap: 8px; }
.pt-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,77,109,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.pt-dot.active { background: var(--primary); transform: scale(1.3); }

/* Gamified Stats */
.pt-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 10;
    text-align: center;
}
@media (max-width: 768px) {
    .pt-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.pt-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pt-stat-item p { color: var(--text-muted); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px;}


/* MECÂNICA VIRAL / PREVIEW */
.viral-mechanics { background: var(--bg-light); color: var(--text-dark); padding: 100px 0; }
.viral-mechanics h2 { color: var(--text-dark); }
.mechanics-flex { display: flex; align-items: center; gap: 60px; }
.mechanics-text { flex: 1; }
.mechanics-text p { font-size: 1.1rem; color: var(--text-muted); margin: 20px 0; }
.mechanic-benefits { list-style: none; margin-top: 20px; }
.mechanic-benefits li { margin-bottom: 10px; font-size: 1.1rem; color: var(--text-dark); }
.mechanics-visual {
    flex: 1;
    background: white; padding: 30px; border-radius: 20px; border: 1px dashed var(--primary-light); text-align: center; box-shadow: var(--shadow);
}
.watermark-example { position: relative; display: inline-block; border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.watermark-example img { max-width: 100%; display: block; filter: brightness(0.9); }
.watermark-overlay {
    position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.5); color: white; padding: 5px 10px; border-radius: 8px; font-weight: 700; font-family: var(--font-main);
}
.share-buttons-mock { display: flex; gap: 10px; justify-content: center; }
.btn-share { padding: 10px 20px; border: none; border-radius: 20px; color: white; font-weight: 600; cursor: pointer; }
.btn-share.insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.btn-share.wpp { background: #25D366; }

/* BÔNUS */
.bonuses-section { background: var(--primary-light); padding: 60px 0; }
.bonus-grid { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
.bonus-card { background: white; padding: 30px; border-radius: var(--radius); width: 300px; box-shadow: var(--shadow); }

/* PRICING */
.pricing-intro { margin-bottom: 10px; }
.pricing-badge-top {
    display: inline-block;
    background: rgba(255, 77, 109, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(255, 77, 109, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.pricing-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 20px;
}
.preview-free-banner {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,209,102,0.2), rgba(255,143,163,0.15));
    border: 1px solid rgba(255,209,102,0.5);
    color: #7a5700;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; align-items: start; }
.price-card { background: white; padding: 40px 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid #eee; transition: transform 0.3s; text-align: left; }
.price-card:hover { transform: translateY(-4px); }
.price-card.popular { border: 2px solid var(--primary); position: relative; padding: 50px 30px; box-shadow: 0 12px 40px rgba(255,77,109,0.15); }
.price-card.premium-card { border: 2px solid #c9a227; position: relative; background: linear-gradient(160deg, #fffdf5 0%, #fff8e8 100%); }
.price-card.premium-card:hover { transform: translateY(-4px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #8C6A0A; padding: 5px 15px; border-radius: 20px; font-weight: 700; white-space: nowrap; font-size: 0.85rem;}
.best-value-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #f5c518, #e8a000); color: #5a3e00; padding: 5px 15px; border-radius: 20px; font-weight: 700; white-space: nowrap; font-size: 0.85rem; box-shadow: 0 3px 10px rgba(200,160,0,0.3); }
.plan-tagline { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-bottom: 8px; }
.price { font-size: 3rem; font-weight: 800; color: var(--text-dark); margin: 15px 0 5px; }
.price-savings-note { font-size: 0.85rem; color: #a07010; background: rgba(255,209,102,0.15); border: 1px solid rgba(255,209,102,0.4); border-radius: 8px; padding: 8px 12px; margin-bottom: 15px; line-height: 1.4; }
.price-card ul { list-style: none; text-align: left; margin: 20px 0; }
.price-card li { margin-bottom: 11px; padding-left: 26px; position: relative; font-size: 0.95rem; }
.price-card li.feat-yes::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: bold; }
.price-card li.feat-no { color: #bbb; }
.price-card li.feat-no::before { content: '—'; position: absolute; left: 0; color: #ccc; font-weight: bold; }
.plan-guarantee { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.price-with-old { display: flex; align-items: baseline; gap: 10px; }
.price-old-strike { font-size: 1.2rem; color: #aaa; text-decoration: line-through; font-weight: 600; }
.plan-savings-badge { display: inline-block; padding: 5px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin: 6px 0 10px; }
.plan-savings-pink { background: #fff0f3; color: #e0304d; border: 1px solid #ffd6e0; }
.plan-savings-gold { background: #fff8e0; color: #9a6500; border: 1px solid #ffe082; }
.price-savings-note { background: #fffdf0; border: 1px solid #ffe082; border-radius: 10px; padding: 10px 14px; font-size: 0.85rem; color: #7a5c00; margin-bottom: 10px; line-height: 1.5; }
.preview-why-link {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 0;
    font-family: var(--font-main);
    opacity: 0.8;
    transition: opacity 0.2s;
}
.preview-why-link:hover { opacity: 1; }

/* How Preview Works Block */
.how-preview-works {
    margin-top: 60px;
    background: linear-gradient(135deg, #fff0f5, #fdf5ff);
    border: 1px solid rgba(255,77,109,0.15);
    border-radius: 20px;
    padding: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.how-preview-inner .how-preview-icon { font-size: 2.5rem; margin-bottom: 15px; }
.how-preview-inner h3 { font-size: 1.5rem; margin-bottom: 12px; font-family: var(--font-main); }
.how-preview-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Value Comparison Strip */
.value-comparison-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    background: linear-gradient(135deg, #fff8e1, #ffecd2);
    border: 1px solid #ffe0a0;
    border-radius: 16px;
    padding: 20px 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}
.vc-left { color: var(--text-dark); }
.vc-center { color: var(--text-muted); flex: 1; min-width: 200px; }
.vc-right { color: #b56a00; font-size: 1rem; white-space: nowrap; }
.vc-arrow { margin: 0 6px; color: #e8a000; font-size: 1.2rem; }

.order-bump-mock { margin-top: 15px; font-size: 0.9rem; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 800px; margin: 40px auto 0; }
details { background: white; margin-bottom: 15px; padding: 20px; border-radius: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.03); cursor: pointer; }
summary { font-weight: 700; font-size: 1.1rem; outline: none; }
details p { margin-top: 15px; color: var(--text-muted); }

/* BLOG PREVIEW */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.blog-card { background: white; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.blog-card h4 { font-size: 1.2rem; margin-bottom: 15px; font-family: var(--font-main); }
.blog-card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }
.blog-card a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

/* FOOTER */
footer { background: var(--text-dark); color: white; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.footer-logo { color: white; }
.footer-logo span { color: var(--primary); }
.footer-col { flex: 1; min-width: 200px; }
.footer-col strong { display: block; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 10px; }
.footer-col a:hover { color: white; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* RESPONSIVO */
@media (max-width: 992px) {
    .hero-container, .comparison-grid, .mechanics-flex { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .hero-text { text-align: center; }
    .input-group { flex-direction: column; }
    .price-card.popular { transform: none; }
}
@media (max-width: 768px) {
    .steps-grid, .testimonials-grid, .blog-grid, .pricing-grid { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .bonus-grid { flex-direction: column; align-items: center; }
    .bonus-card { width: 100%; }
}
/* ============================================================
   MOBILE RESPONSIVO COMPLETO
   ============================================================ */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
    .hero-container, .comparison-grid, .mechanics-flex { grid-template-columns: 1fr; }
    .hero-visual-h2 { font-size: 2.6rem; }
    .hero-text { text-align: center; }
    .hero .subtitle { max-width: 100%; }
    .hero-mini-review { text-align: center; }
    .input-group { flex-direction: column; }
    .price-card.popular { transform: none; }
    .hero-image-wrapper { max-width: 480px; margin: 0 auto; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    /* Nav */
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }

    /* Hero */
    .hero { padding: 40px 0 50px; }
    .hero-container {
        gap: 28px;
        grid-template-columns: 1fr; /* stack to single column */
    }
    .hero-headline-block .hl-line1,
    .hero-headline-block .hl-line2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    .hero-visual-h2 { font-size: 1rem !important; line-height: 1.5 !important; }
    .badge-viral { font-size: 0.78rem; padding: 6px 12px; }
    .hero-image-wrapper { display: none; } /* Hide carousel on mobile — focus on conversion */
    .hero-cta-box { padding: 18px 16px 14px; }
    .btn-hero-cta { font-size: 1rem; padding: 15px 20px; }
    .hero-trust-row { font-size: 0.74rem; gap: 10px; }
    .hero .subtitle { font-size: 0.97rem; }

    /* Comparison table fix */
    .comparison-section { padding: 40px 0; }
    .comparison-grid { grid-template-columns: 1fr; gap: 12px; }
    .comp-table-card { width: 100%; }
    .comp-row {
        padding: 10px 16px;
        font-size: 0.88rem;
        align-items: flex-start;
        gap: 8px;
    }
    .comp-label { flex: 0 0 110px; font-size: 0.84rem; }
    .comp-val { flex: 1; text-align: right; font-size: 0.9rem; }
    .comp-savings-strip {
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px;
        text-align: center;
        margin: 16px auto 0;
    }
    .comp-savings-visual { justify-content: center; }
    .comp-table-header { padding: 20px 16px 12px; }

    /* How it works */
    .steps-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .step { padding: 28px 18px; }

    /* Gallery */
    .gallery-section { padding: 40px 0; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 28px;
    }
    .img-transformed { height: 180px; }
    .gallery-caption { font-size: 0.82rem; margin-top: 8px; }

    /* Premium Testimonials */
    .premium-testimonials { padding: 60px 0; }
    .pt-header { margin-bottom: 36px; }
    .pt-title { font-size: 2rem; }
    .pt-subtitle { font-size: 0.97rem; }
    .pt-carousel { height: 540px; }
    .pt-slide {
        flex-direction: column;
        padding: 24px 18px;
        text-align: center;
        gap: 20px;
    }
    .pt-user-panel { width: 100%; }
    .pt-quote { font-size: 1rem; margin-bottom: 16px; }
    .pt-results-flex { justify-content: center; }
    .pt-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Pricing */
    .pricing { padding: 50px 0; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .price-card { padding: 28px 20px; }
    .price { font-size: 2.8rem; }
    .pricing-subtitle { font-size: 0.92rem; }

    /* Bonus */
    .bonus-grid { flex-direction: column; align-items: center; }
    .bonus-card { width: 100%; }

    /* Sections general */
    section { padding: 48px 0; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.9rem; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-card-img { height: 180px; }

    /* FAQ */
    .faq-item { padding: 18px 16px; }
    .faq-q { font-size: 0.95rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col { text-align: center; }
    .footer { padding: 40px 0 24px; }

    /* Why Choose Us */
    .wcu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .hero-visual-h2 { font-size: 1.75rem; }
    .hero { padding: 30px 0 44px; }
    .pt-title { font-size: 1.75rem; }
    .pt-stat-item h3 { font-size: 1.8rem; }
    .pt-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pt-carousel { height: 580px; }
    .pt-slide { padding: 18px 14px; }
    .price { font-size: 2.4rem; }
    .badge-viral { font-size: 0.72rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .img-transformed { height: 150px; }
    .comp-label { flex: 0 0 90px; }
    .section-title { font-size: 1.45rem; }
    .wcu-grid { grid-template-columns: 1fr; }
    .container { padding: 0 14px; }
}

/* ============================================================
   MOBILE STICKY BUY BAR (aparece só no mobile)
   ============================================================ */
.sticky-buy-bar {
    display: none;
}
@media (max-width: 768px) {
    .sticky-buy-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0; right: 0;
        z-index: 999;
        background: white;
        border-top: 1px solid #f0d0d8;
        padding: 12px 16px;
        align-items: center;
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(255,77,109,0.15);
    }
    .sticky-buy-bar .sticky-price {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-dark);
        white-space: nowrap;
    }
    .sticky-buy-bar .sticky-price span {
        font-size: 0.8rem;
        color: #aaa;
        font-weight: 400;
        text-decoration: line-through;
        margin-left: 4px;
    }
    .sticky-buy-bar .sticky-cta {
        flex: 1;
        background: var(--primary-dark);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 14px 10px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        font-family: var(--font-main);
        box-shadow: 0 4px 15px rgba(255,77,109,0.4);
        transition: 0.2s;
    }
    .sticky-buy-bar .sticky-cta:active { transform: scale(0.98); }
    /* Prevent content from being hidden behind bar */
    body { padding-bottom: 70px; }
}

/* MEIOS DE PAGAMENTO */
.payment-strip {
    margin-top: 40px;
    padding: 24px 30px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.payment-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.pay-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pay-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}
.pay-logo svg {
    display: block;
    border-radius: 6px;
}
@media (max-width: 600px) {
    .payment-logos { gap: 8px; }
    .pay-logo svg { width: 48px; height: 30px; }
}

/* WHY THOUSANDS OF MOMS CHOOSE US */
.why-choose-us { margin: 50px 0 40px; }
.wcu-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) { .wcu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .wcu-grid { grid-template-columns: 1fr; } }
.wcu-card {
    background: white;
    border: 1px solid #eeeee8;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.wcu-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.wcu-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 14px;
}
.wcu-icon-green { background: #e8f4e8; color: #2e7d32; }
.wcu-icon-blue { background: #e8eef8; color: #1565c0; }
.wcu-icon-gold { background: #fdf6e3; color: #b8860b; }
.wcu-icon-pink { background: #fde8ef; color: #c2185b; }
.wcu-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; font-family: var(--font-main); color: var(--text-dark); }
.wcu-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }



