:root {
    --color-primary: #7fae93;
    --color-primary-dark: #588f6f;
    --color-bg-dark: #0D0D0D;
    --color-bg-light: #F5F5F5;
    --color-bg-lighter: #FAFAFA;
    --color-text-dark: #0D0D0D;
    --color-text-muted: #4A4A4A;
    --color-text-white: #FFFFFF;
    
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
}

body {
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 600px; }
.container-md { max-width: 800px; }
.container-lg { max-width: 1000px; }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-primary { color: var(--color-primary); }
.text-white { color: var(--color-text-white); }
.text-dark { color: var(--color-text-dark); }
.text-muted { color: var(--color-text-muted); }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-green { color: #22C55E; }
.bg-black { background-color: var(--color-bg-dark); }
.bg-white { background-color: #FFF; }
.bg-primary { background-color: var(--color-primary); }
.bg-green { background-color: #22C55E; }

.block { display: block; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }

/* Spacing Utilities */
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }

.pt-3 { padding-top: 12px; }
.pb-24 { padding-bottom: 96px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.p-4 { padding: 16px; }

/* Typography */
h1 { font-size: clamp(28px, 6vw, 50px); font-weight: 900; line-height: 1.1; margin-bottom: 8px; color: var(--color-text-dark); }
.txt-hero-sub { font-size: clamp(16px, 3vw, 24px); font-weight: 700; color: var(--color-text-muted); margin-top: 8px; }
.txt-desc { font-size: clamp(14px, 3vw, 17px); color: var(--color-text-muted); line-height: 1.6; }
h2 { font-size: clamp(22px, 4.5vw, 34px); font-weight: 900; line-height: 1.2; }
.sub-heading { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }

/* Sections */
.sect-light { background-color: var(--color-bg-light); padding: 40px 16px; }
.sect-dark { background-color: var(--color-bg-dark); padding: 40px 16px; }

@media (min-width: 768px) {
    .sect-light, .sect-dark { padding: 64px 24px; }
}

/* Base Top Bar */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.top-bar .timer {
    background-color: rgba(13, 13, 13, 0.4);
    padding: 2px 10px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Hero Elements */
.sect-hero { background-color: var(--color-bg-light); padding-top: 40px; padding-bottom: 40px; overflow: hidden;}
.hero-bg-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 85% 15%, rgba(127,174,147,.15), transparent 55%),
                radial-gradient(ellipse 50% 40% at 10% 80%, rgba(127,174,147,.1), transparent 50%);
}
.hero-image-box {
    position: relative;
    max-width: 460px;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13,13,13,.18), 0 0 0 4px rgba(127,174,147,.2);
}
.hero-image-box img { width: 100%; height: auto; display: block; }
.badge-left, .badge-right { position: absolute; top: 12px; font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 4px 12px; border-radius: 99px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.badge-left { left: 12px; background: rgba(255,255,255,0.95); color: var(--color-text-dark); }
.badge-right { right: 12px; background: var(--color-primary); color: #fff; }

.review-box {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    border: 1px solid rgba(127,174,147,.3);
    box-shadow: 0 4px 16px rgba(13,13,13,.06);
    max-width: 400px;
    margin-bottom: 20px;
}
.stars { font-size: 13px; margin-bottom: 6px; }
.reviewer-info { font-size: 9px; font-weight: 700; color: var(--color-text-muted); letter-spacing: 0.5px; margin-top: 6px; font-style: normal; text-transform: uppercase;}

.price-box {
    background: linear-gradient(to right, #F5F5F5, #FAFAFA);
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 16px;
    max-width: 320px;
    margin-bottom: 16px;
}
.price-old-wrap { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px; }
.price-old { font-size: 14px; color: var(--color-text-muted); text-decoration: line-through; }
.discount-badge, .discount-badge-dark, .discount-badge-primary { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 99px; color: #fff; }
.discount-badge { background: var(--color-text-dark); }
.discount-badge-dark { background: var(--color-text-dark); }
.discount-badge-primary { background: var(--color-primary); }

.price-current { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.currency { font-size: 18px; color: var(--color-text-muted); }
.amount { font-size: 36px; font-weight: 700; color: var(--color-text-dark); }
@media(min-width: 768px) { .amount { font-size: 48px; } }
.economy-text { font-size: 12px; font-weight: 600; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; letter-spacing: 0.5px;
    padding: 16px 36px; border-radius: 12px; border: none; cursor: pointer;
    transition: all 0.3s; text-decoration: none; width: 100%; max-width: 320px;
}
.btn-primary {
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 10px 20px rgba(127,174,147,.3);
}
.btn-primary:hover { box-shadow: 0 15px 25px rgba(127,174,147,.5); transform: scale(1.02); }

.btn-dark {
    background: linear-gradient(to bottom, #333, #0D0D0D); color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.2);
}
.btn-dark:hover { box-shadow: 0 15px 25px rgba(0,0,0,.4); transform: scale(1.02); }

.hero-fine-print { font-size: 12px; max-width: 320px; color: var(--color-text-muted); line-height: 1.5; }
.guarantee-text { font-size: 11px; color: var(--color-text-muted); }

.avatars { display: flex; justify-content: center; margin-bottom: 8px; }
.avatar-img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.avatar-img.stacked { margin-left: -8px; }
.social-proof { font-size: 13px; color: var(--color-text-muted); }

/* List Cards (Familiar / Imagine) */
.card-list { display: flex; gap: 12px; margin-top: 20px; }
.flex-col { flex-direction: column; }
.card-item {
    border: 1px solid rgba(127,174,147,.15);
    box-shadow: 0 4px 16px rgba(13,13,13,.06);
    border-radius: 8px; padding: 16px;
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 14px; line-height: 1.6;
}
.card-item .emoji { font-size: 20px; line-height: 1; flex-shrink: 0; }
.mini-badge {
    font-size: 12px; font-weight: 700; color: var(--color-primary);
    background: rgba(127,174,147,.1); padding: 4px 8px; border-radius: 4px;
    flex-shrink: 0;
}
.underline-glow { text-decoration: underline; text-decoration-color: rgba(127,174,147,.4); }

/* Sliders */
.slider-wrapper { overflow: hidden; white-space: nowrap; }
.slider-fade { position: absolute; top:0; bottom:0; width: 30px; z-index: 10; pointer-events: none; }
.slider-fade.left { left: 0; background: linear-gradient(to right, var(--color-bg-dark), transparent); }
.slider-fade.right { right: 0; background: linear-gradient(to left, var(--color-bg-dark), transparent); }
.slider-track { display: inline-flex; gap: 16px; padding: 0 16px; }
.slide { width: 280px; flex-shrink: 0; border-radius: 12px; overflow: hidden; }
.slide img { width: 100%; display: block; }
@media(min-width: 768px) { .slide { width: 380px; } }

/* Grid Pets */
.grid-pets {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px;
}
@media(min-width: 640px) { .grid-pets { grid-template-columns: repeat(3, 1fr); gap: 12px;} }
@media(min-width: 768px) { .grid-pets { grid-template-columns: repeat(4, 1fr); } }

.pet-card {
    background: #fff; border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 16px rgba(13,13,13,.08);
    border: 1px solid rgba(127,174,147,.2);
}
.pet-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pet-name { text-align: center; font-size: 11px; font-weight: 700; padding: 6px 4px; color: var(--color-text-dark); }

/* Video */
.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px; padding: 14px; padding-bottom: 16px;
    box-shadow: 0 0 0 2px var(--color-primary), 0 30px 60px rgba(0,0,0,.4);
    max-width: 240px; position: relative;
}
.notch { width: 68px; height: 18px; background: #1a1a1a; border-radius: 0 0 12px 12px; margin: 0 auto 6px; }
.phone-mockup video { border-radius: 28px; width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; background: #000; }

/* Pricing */
.grid-pricing { display: grid; gap: 24px; align-items: stretch; max-width: 1024px; margin: 0 auto; }
@media(min-width: 768px) { .grid-pricing { grid-template-columns: 1fr 1fr; } }
.pricing-card {
    background: #fff; border-radius: 12px; border: 2px solid #E5E5E5;
    box-shadow: 0 4px 20px rgba(0,0,0,.06); overflow: hidden;
    display: flex; flex-direction: column; position: relative;
}
.pricing-card.card-premium {
    border-color: var(--color-primary);
    background: linear-gradient(to bottom, #f0f7f3, #fff);
    box-shadow: 0 8px 40px rgba(127,174,147,.2);
}
.popular-tag {
    position: absolute; top: 0; right: 0; z-index: 10;
    background: var(--color-primary); color: #fff;
    padding: 6px 16px; font-size: 12px; font-weight: 700; border-bottom-left-radius: 12px;
}
.pricing-img-wrap { width: 100%; aspect-ratio: 16/10; object-fit: cover; overflow: hidden;}
.pricing-img-wrap img { width: 100%; height: 100%; object-fit: cover;}
.pricing-header { padding: 24px 24px 0; }
.features-list { padding-top: 16px; border-top: 1px solid #E5E5E5; margin-top: auto;}
.features-list ul { list-style: none; }
.features-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; font-size: 14px; color: var(--color-text-muted); }
.features-list .check { width: 20px; height: 20px; background: rgba(127,174,147,.1); border: 1px solid rgba(127,174,147,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.pricing-content { padding: 0 24px 24px; display: flex; flex-direction: column; flex-grow: 1; margin-top: 24px;}
.price-box-card { background: linear-gradient(to right, #F5F5F5, #FAFAFA); border: 1px solid #E5E5E5; border-radius: 12px; padding: 16px; }

/* Bonus */
.bonus-grid { display: flex; flex-direction: column; gap: 14px; max-width: 680px; margin: 0 auto; }
.bonus-card {
    border: 1px solid rgba(127,174,147,.2);
    box-shadow: 0 4px 16px rgba(13,13,13,.08);
    border-radius: 8px; overflow: hidden;
}
.bonus-card.full .bonus-img-wrap { aspect-ratio: 16/9; }
.bonus-tag { position: absolute; top: 10px; left: 10px; background: #0D0D0D; color: #fff; font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 99px; z-index: 2; }
.bonus-img-wrap { position: relative; background: #f5f5f5; aspect-ratio: 16/10; overflow: hidden; }
.bonus-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bonus-content { padding: 16px; }
.bonus-content h3 { font-size: 15px; font-weight: 900; line-height: 1.2; margin-bottom: 6px; }
.bonus-content .desc { font-size: 13px; color: var(--color-text-muted); }
.bonus-price { display: flex; align-items: center; gap: 10px; }
.bonus-price .old { font-size: 13px; text-decoration: line-through; opacity: 0.5; font-weight: 600; }
.badge-free { font-size: 11px; font-weight: 900; padding: 2px 12px; border-radius: 99px; color: #fff; }
.bonus-total { text-align: center; padding: 16px; border: 2px solid var(--color-primary); border-radius: 8px; font-size: 13px; font-weight: 700; max-width: 680px; margin: 16px auto 0;}
@media(min-width: 640px) { .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; } }

/* FAQ */
.faq-accordion { max-width: 600px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(127,174,147,.2); }
.faq-btn {
    width: 100%; background: none; border: none; color: var(--color-text-dark); text-align: left;
    padding: 16px 0; font-size: 15px; font-weight: 700; font-family: var(--font-sans);
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.faq-btn .icon { color: var(--color-primary); font-size: 18px; }
.faq-btn.active .icon { transform: rotate(180deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s; font-size: 14px; line-height: 1.6; }
.faq-content.open { max-height: 500px; padding-bottom: 16px; }

/* Footer and Sticky */
.border-t-footer { border-top: 1px solid rgba(255,255,255,0.05); }
.sticky-bottom {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 2px solid var(--color-primary);
    padding: 8px 16px 12px;
    box-shadow: 0 -8px 30px rgba(0,0,0,.6);
    transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-bottom.visible { transform: translateY(0); }
.sticky-content {
    max-width: 400px; width: 100%; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.sticky-text {
    font-size: 13px; font-weight: 800; font-style: italic; color: var(--color-primary);
    margin-bottom: 4px; text-align: center; letter-spacing: 0.5px;
}
.sticky-btn {
    width: 100%; max-width: 320px; padding: 12px 20px; font-size: 14px; border-radius: 99px;
    box-shadow: 0 4px 15px rgba(127,174,147,.4); margin: 0 auto;
    animation: stickyPulse 2s infinite;
}
.sticky-btn:hover {
    box-shadow: 0 6px 20px rgba(127,174,147,.6); transform: scale(1.02);
}
@keyframes stickyPulse {
    0% { box-shadow: 0 0 0 0 rgba(127,174,147, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(127,174,147, 0); }
    100% { box-shadow: 0 0 0 0 rgba(127,174,147, 0); }
}

/* Base Animations */
.animate-up { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.animate-up.visible { opacity: 1; transform: translateY(0); }

/* Reviewers */
.grid-3 { display: grid; gap: 14px; }
@media(min-width: 640px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.reviewer-card-btm { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid rgba(13,13,13,0.05); width: 100%; }
.reviewer-card-btm img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.reviewer-card-btm .name { font-size: 13px; font-weight: 700; color: #0D0D0D; }
.reviewer-card-btm .role { font-size: 12px; color: var(--color-text-muted); }
@keyframes scrollAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sales Notification */
.sales-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #0D0D0D;
    border: 1px solid rgba(127,174,147,.3);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; /* Ignore clicks when hidden */
}
.sales-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sn-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
}
.sn-close:hover {
    color: rgba(255,255,255,0.8);
}
.sn-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    flex-shrink: 0;
}
.sn-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.sn-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 12px;
}
.sn-title {
    font-size: 12px;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 2px;
    font-family: var(--font-sans);
}
.sn-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    line-height: 1.3;
}
@media(max-width: 768px) {
    .sales-notification {
        bottom: 120px; /* Above the sticky CTA */
        left: 16px;
        right: 16px;
        max-width: none;
    }
}
.badge-hoje-gratis {
    background: #22C55E;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 99px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(34,197,94,0.3);
}

