/* ==========================================
   AQUABLOCK - LANDING PAGE ALTA CONVERSÃO
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2540;
    --accent: #00d4aa;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --white: #fff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    padding-top: 125px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   MEGA URGENCY BAR
   ========================================== */
.mega-urgency {
    background: linear-gradient(90deg, #c0392b, #e74c3c, #c0392b);
    background-size: 200% 100%;
    animation: urgencyPulse 3s ease infinite;
    color: white;
    padding: 10px 15px 6px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

@keyframes urgencyPulse {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.urgency-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 14px;
    margin-bottom: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: pulse 1s infinite;
}

.live-dot-small {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    max-width: 400px;
    margin: 0 auto 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2ecc71;
    border-radius: 3px;
    animation: progressGlow 2s ease infinite;
}

@keyframes progressGlow {

    0%,
    100% {
        box-shadow: 0 0 5px #2ecc71;
    }

    50% {
        box-shadow: 0 0 15px #2ecc71;
    }
}

.progress-text {
    font-size: 12px;
    opacity: 0.9;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
}

.btn-header {
    background: linear-gradient(135deg, var(--success), #1e8449);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    padding: 40px 0 50px;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.breaking-news {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 8px 15px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breaking-tag {
    background: var(--danger);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(180deg, transparent 50%, rgba(39, 174, 96, 0.3) 50%);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.7;
}

.proof-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid var(--success);
    margin-bottom: 25px;
}

.proof-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.proof-quote {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    font-style: italic;
}

.proof-author {
    font-size: 13px;
    color: var(--success);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit i {
    color: var(--success);
    font-size: 16px;
}

.mega-cta {
    display: block;
    background: linear-gradient(135deg, var(--success), #1e8449);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    transition: all 0.3s;
    animation: megaPulse 2s infinite;
}

@keyframes megaPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(39, 174, 96, 0.6);
    }
}

.mega-cta:hover {
    transform: translateY(-3px);
}

.cta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cta-old {
    text-decoration: line-through;
    opacity: 0.8;
    font-size: 14px;
}

.cta-arrow {
    font-size: 18px;
}

.cta-new {
    font-size: 24px;
    font-weight: 900;
}

.cta-off {
    background: var(--danger);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.cta-text {
    display: block;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-sub {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
}

.trust-row {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--gray-500);
    flex-wrap: wrap;
}

.trust-row span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-row i {
    color: var(--accent);
}

.hero-visual {
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.badge-off {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--danger);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
}

.product-card img {
    border-radius: 15px;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.stars {
    color: #f1c40f;
    font-size: 14px;
}

.reviews {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 5px;
}

.sold {
    background: var(--success);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
    color: white;
}

.problem-section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
}

.text-danger {
    color: var(--danger);
    text-decoration: underline;
}

.section-sub {
    text-align: center;
    opacity: 0.8;
    margin-bottom: 40px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.icon-cockroach i {
    transform: rotate(45deg);
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    opacity: 0.8;
}

.loss-calculator {
    background: rgba(231, 76, 60, 0.2);
    border: 2px solid var(--danger);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.loss-calculator h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.calc-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.calc-item {
    text-align: center;
}

.calc-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--danger);
}

.calc-item.highlight .calc-value {
    font-size: 2.5rem;
    color: #fff;
}

.calc-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ==========================================
   SOLUTION SECTION
   ========================================== */
.solution-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.solution-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.solution-visual {
    position: relative;
    text-align: center;
}

.solution-visual img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-seal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.guarantee-seal strong {
    display: block;
    font-size: 18px;
}

.guarantee-seal span {
    font-size: 11px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), #00b894);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.feature strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.feature span {
    font-size: 14px;
    color: var(--gray-500);
}

.legal-alert {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0056b3, #003d80);
    padding: 25px;
    border-radius: 15px;
    color: white;
}

.legal-alert i {
    font-size: 35px;
    opacity: 0.9;
}

.legal-alert p {
    font-size: 15px;
    margin: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: 60px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial {
    background: var(--gray-100);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--gray-200);
}

.t-header {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.t-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.t-header strong {
    display: block;
    color: var(--gray-900);
}

.t-header span {
    font-size: 13px;
    color: var(--gray-500);
}

.t-header .stars {
    font-size: 12px;
}

.testimonial p {
    font-size: 14px;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.verified {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.video-proof {
    margin-bottom: 40px;
}

.video-proof h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-grid video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    background: #000;
}

.tv-seal {
    display: block;
    margin: 0 auto;
    max-width: 180px;
}

/* ==========================================
   OFFER SECTION
   ========================================== */
.offer-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.offer-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    margin-bottom: 30px;
    font-size: 15px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 13px;
    white-space: nowrap;
}

.offer-card h3 {
    text-align: center;
    font-size: 1.4rem;
    color: var(--gray-900);
    margin: 15px 0 20px;
}

.offer-includes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.offer-includes span {
    font-size: 14px;
    color: var(--gray-700);
}

.offer-includes .highlight {
    background: rgba(0, 212, 170, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--accent);
}

.offer-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-compare {
    margin-bottom: 10px;
}

.old-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.line-through {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 16px;
}

.tag-off {
    background: var(--danger);
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
}

.final-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 10px;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 10px;
}

.savings-box {
    background: var(--success);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent), #00b894);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s;
    animation: megaPulse 2s infinite;
}

.buy-button:hover {
    transform: translateY(-3px);
}

.buy-button i {
    font-size: 28px;
}

.buy-main {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.buy-sub {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.trust-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.trust-seals i {
    color: var(--success);
    margin-right: 5px;
}

.countdown-box {
    text-align: center;
    background: var(--gray-100);
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

.countdown-box strong {
    color: var(--danger);
    font-family: monospace;
    font-size: 18px;
    margin-left: 8px;
}

.triple-guarantee {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    max-width: 600px;
    margin: 40px auto 0;
    color: white;
}

.triple-guarantee img {
    width: 70px;
}

.triple-guarantee h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.triple-guarantee p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.8;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.faq-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-900);
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

/* ==========================================
   FINAL CTA
   ========================================== */
.final-cta {
    background: var(--success);
    padding: 50px 0;
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.final-cta p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.final-cta .mega-cta {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    color: var(--success);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.final-cta .mega-cta:hover {
    background: #f8f8f8;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: var(--gray-900);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

footer p {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    margin: 0 12px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ==========================================
   STICKY MOBILE
   ========================================== */
.sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 15px;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.sticky-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.sticky-viewers {
    color: var(--success);
}

.sticky-stock {
    color: var(--danger);
    font-weight: 600;
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--success), #1e8449);
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.sticky-price {
    font-size: 20px;
    font-weight: 900;
}

.sticky-cta {
    font-size: 14px;
}

/* ==========================================
   TOAST
   ========================================== */
.purchase-toast {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s;
    border-left: 4px solid var(--success);
    max-width: 300px;
}

.purchase-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.purchase-toast img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.toast-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
}

.toast-info span {
    font-size: 12px;
    color: var(--gray-500);
}

.toast-action {
    color: var(--success) !important;
    font-weight: 600;
}

/* ==========================================
   EXIT POPUP
   ========================================== */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-content {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    position: relative;
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--gray-500);
}

.exit-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.exit-content h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.exit-content>p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.exit-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.exit-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.exit-old {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 18px;
}

.exit-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--success);
}

.exit-btn {
    display: block;
    background: linear-gradient(135deg, var(--success), #1e8449);
    color: white;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.exit-btn:hover {
    transform: translateY(-2px);
}

.exit-guarantee {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
        padding-bottom: 85px;
    }

    .mega-urgency {
        padding: 8px 10px 5px;
    }

    .urgency-row {
        font-size: 11px;
        gap: 10px;
    }

    .urgency-left,
    .urgency-right {
        display: none;
    }

    .header {
        top: 55px;
        padding: 10px 0;
    }

    .logo {
        height: 38px;
    }

    .btn-header {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .breaking-news {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .proof-box {
        flex-direction: column;
        text-align: center;
    }

    .trust-row {
        justify-content: center;
    }

    .problem-section h2 {
        font-size: 1.4rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .calc-row {
        gap: 20px;
    }

    .calc-value {
        font-size: 1.5rem;
    }

    .calc-item.highlight .calc-value {
        font-size: 2rem;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .legal-alert {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-grid video {
        height: 220px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 4rem;
    }

    .triple-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }

    .sticky-mobile {
        display: block;
    }

    footer {
        padding-bottom: 100px;
    }

    .purchase-toast {
        bottom: 100px;
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .exit-content {
        padding: 30px 20px;
    }

    .exit-content h3 {
        font-size: 1.5rem;
    }

    .exit-new {
        font-size: 2rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 3.5rem;
    }
}

/* ==========================================
   REPELENTE SPECIFIC STYLES
   ========================================== */
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
}

.footer-logo {
    margin-bottom: 15px;
}

.proof-icons {
    font-size: 30px;
    display: flex;
    gap: 10px;
}

.product-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 15px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pest-icons {
    font-size: 40px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.repel-waves {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    animation: wavesPulse 1.5s infinite;
}

@keyframes wavesPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.how-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--success), #1e8449);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.step h3 {
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step p {
    color: var(--gray-500);
    font-size: 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.danger-box {
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid var(--danger);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.danger-box h3 {
    margin-bottom: 10px;
}

.danger-box p {
    font-size: 14px;
    opacity: 0.9;
}

.guarantee-icon {
    font-size: 50px;
}

@media (max-width: 768px) {
    .how-works {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   KITS GRID STYLES
   ========================================== */
.offer-title {
    text-align: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.kit-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.kit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.kit-card.featured {
    border-color: var(--success);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.3);
    z-index: 2;
}

.kit-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.kit-badge.economy {
    background: var(--warning);
}

.kit-card h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.kit-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 15px;
    min-height: 40px;
}

.kit-img-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.kit-img {
    max-width: 120px;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.kit-price {
    margin-bottom: 10px;
}

.kit-old {
    display: block;
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 14px;
}

.kit-new {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--success);
}

.kit-off {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
}

.kit-unit {
    display: block;
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 5px;
}

.kit-shipping {
    display: block;
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
    margin-top: 5px;
}

.kit-shipping-free {
    display: block;
    font-size: 13px;
    color: var(--success);
    font-weight: 700;
    margin-top: 5px;
}

.kit-btn {
    display: block;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.kit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.kit-btn.primary {
    background: linear-gradient(135deg, var(--success), #1e8449);
}

.offer-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    color: white;
    font-size: 14px;
}

.offer-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-benefits i {
    color: var(--accent);
}

.problem-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .kits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kit-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .kits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kit-card {
        max-width: 320px;
        margin: 0 auto;
        min-height: 450px;
    }
}

/* ==========================================
   VIDEO REVIEWS STYLES
   ========================================== */
.video-reviews-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.video-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: -65px;
    /* Crop top bar */
    left: 0;
    width: 100%;
    height: calc(100% + 130px);
    /* Compensate crop */
    transform: scale(1.25);
    /* Zoom to remove edges */
    z-index: 1;
}

/* Bloqueador de cliques no topo para não abrir o canal */
.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 2;
    pointer-events: none;
}

.video-caption {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}