/* ============================================
   AJUSTE VISÃO — Landing Page CSS
   Design System: Navy + Orange + White
   Fonts: Inter (body) + Outfit (headings)
   ============================================ */

/* === Variables === */
:root {
    --navy: #0A2540;
    --navy-light: #0e3259;
    --orange: #FF6B00;
    --orange-hover: #e85f00;
    --orange-glow: rgba(255, 107, 0, 0.35);
    --buy-green: #00C853;
    --buy-green-hover: #00a846;
    --buy-green-glow: rgba(0, 200, 83, 0.45);
    --green: #0c8a4d;
    --green-bg: #e6f7ef;
    --blue-bg: #e0ecff;
    --blue-text: #1a5ccc;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text: #1A1A1A;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
    --shadow-md: 0 8px 24px rgba(10,37,64,0.1);
    --shadow-lg: 0 16px 48px rgba(10,37,64,0.14);
    --shadow-glow: 0 8px 32px var(--orange-glow);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--navy);
}

/* === Layout === */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-light {
    background-color: var(--gray-50);
}

/* === Urgency Bar === */
.urgency-bar {
    background: linear-gradient(90deg, var(--orange), #ff8c33);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.urgency-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.separator {
    opacity: 0.5;
}

/* === Header === */
.header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo-name strong {
    color: var(--orange);
}

.logo-tagline {
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
}

/* === Hero === */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    color: white;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: white;
    opacity: 1;
}

/* Price Strip */
.hero-price-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 24px 32px;
    margin-bottom: 28px;
}

.price-tag .from {
    display: block;
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.price-tag .from s {
    opacity: 0.8;
}

.price-tag .to {
    font-size: 24px;
    color: white;
}

.price-tag .to strong {
    font-size: 56px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.price-tag .to sup {
    font-size: 28px;
    color: var(--orange);
    top: -1em;
}

.price-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-badge {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.mini-badge.green {
    background: var(--green-bg);
    color: var(--green);
}

.mini-badge.blue {
    background: var(--blue-bg);
    color: var(--blue-text);
}

/* CTA Button */
.cta-btn {
    display: block;
    text-align: center;
    background: var(--orange);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 17px;
    padding: 18px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--orange-glow);
    background: var(--orange-hover);
}

.cta-btn.primary {
    background: var(--buy-green);
    box-shadow: 0 6px 28px var(--buy-green-glow), 0 0 0 0 var(--buy-green-glow);
    animation: buy-pulse 2.2s ease-in-out infinite;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.cta-btn.primary:hover {
    background: var(--buy-green-hover);
    box-shadow: 0 14px 44px var(--buy-green-glow);
    transform: translateY(-3px);
}

.cta-btn.large {
    font-size: 20px;
    padding: 22px 40px;
}

.cta-sub {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

@keyframes buy-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 28px var(--buy-green-glow), 0 0 0 0 rgba(0,200,83,0.5);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 36px var(--buy-green-glow), 0 0 0 10px rgba(0,200,83,0);
    }
}

.trust-micro {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.65;
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 420px;
}

.hero-card-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: transform var(--transition);
}

.hero-card-glass:hover {
    transform: translateY(-5px);
}

.hero-product-img {
    border-radius: var(--radius);
    width: 100%;
}

.hero-card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff4444, #ff6b00);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* === Section Common === */
section {
    padding: 90px 0;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-label.center {
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 50px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* === Problem Section === */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.problem-text h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-list li strong {
    color: var(--navy);
}

/* Glass Card */
.glass-card {
    border-radius: var(--radius-lg);
    padding: 40px;
}

.glass-card.dark {
    background: var(--navy);
    color: white;
    box-shadow: var(--shadow-lg);
}

.big-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--orange);
}

.glass-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 14px;
}

.solution-text {
    opacity: 1 !important;
    font-weight: 600;
    color: var(--orange) !important;
    margin-bottom: 0 !important;
}

/* === Benefits Section === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(10, 37, 64, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* === Testimonials Section === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.video-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    max-height: 480px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity var(--transition);
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
}

.play-overlay:hover .play-btn-circle {
    transform: scale(1.1);
}

/* === Photo Testimonials & Depoimento Cards === */
.photo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.depoimento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.depoimento-card img {
    flex-shrink: 0;
}

.depoimento-card .estrelas {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1;
}

.depoimento-card .texto {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.depoimento-card .nome {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

@media (max-width: 768px) {
    .depoimento-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* === Offer Section === */
.offer-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 90px 0;
    position: relative;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.offer-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
}

.offer-ribbon {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.offer-header h2 {
    color: white;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
}

.offer-header p {
    opacity: 0.8;
    font-size: 16px;
}

.offer-body {
    padding: 40px;
}

.offer-price-block {
    text-align: center;
    margin-bottom: 32px;
}

.offer-from {
    font-size: 15px;
    color: var(--gray-600);
}

.offer-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.offer-price .currency {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 12px;
}

.offer-price .amount {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.offer-price .cents {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-top: 12px;
}

.offer-installment {
    font-size: 14px;
    color: var(--gray-600);
}

/* Perks */
.offer-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--gray-50);
    padding: 14px 18px;
    border-radius: var(--radius);
}

.perk-icon {
    font-size: 24px;
}

.perk strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.perk small {
    font-size: 13px;
    color: var(--gray-600);
}

/* === CTA Groups (Buy Button + WhatsApp secondary link) === */
.hero-cta-group,
.offer-cta-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Make the button elements behave like the old anchor CTA */
.hero-cta-group .cta-btn,
.offer-cta-group .cta-btn {
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

/* Secondary WhatsApp text link */
.cta-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
    padding: 4px 0;
    opacity: 0.85;
}

.cta-whatsapp-link:hover {
    color: #4ade80;
    opacity: 1;
}

.cta-whatsapp-link svg {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Variant inside offer card (dark on white background) */
.offer-whatsapp-link {
    color: var(--gray-600);
}

.offer-whatsapp-link:hover {
    color: #16a34a;
}

/* === FAQ Section === */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: var(--orange);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--navy);
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--gray-50);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--orange);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* === Footer === */
.footer {
    background: #051424;
    color: white;
    padding: 40px 0;
}

.footer-inner {
    text-align: center;
}

.footer .logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer .logo-name {
    color: rgba(255, 255, 255, 0.8);
}

.footer .logo-name strong {
    color: var(--orange);
}

.footer-copy {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 12px;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.35;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Floating WhatsApp === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* === Animations === */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0 100px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 340px;
    }

    .hero-price-strip {
        flex-direction: column;
        text-align: center;
    }

    .price-badges {
        flex-direction: row;
        justify-content: center;
    }

    .trust-micro {
        justify-content: center;
        flex-wrap: wrap;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-body {
        padding: 28px 20px;
    }

    .offer-price .amount {
        font-size: 56px;
    }

    .urgency-inner {
        flex-direction: column;
        gap: 4px;
    }

    .separator {
        display: none;
    }

    .header-cta span:last-child {
        display: none;
    }

    .logo-tagline {
        display: none;
    }
}

/* === Quantity Selector Modal === */
.qty-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 37, 64, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.qty-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.qty-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.qty-modal-overlay.active .qty-modal {
    transform: translateY(0) scale(1);
}

.qty-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2;
}

.qty-modal-close:hover {
    background: var(--gray-50);
    color: var(--navy);
    border-color: var(--gray-400);
}

.qty-modal-header {
    text-align: center;
    padding: 36px 32px 20px;
}

.qty-modal-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.qty-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 8px;
}

.qty-modal-header p {
    color: var(--gray-600);
    font-size: 15px;
}

/* Quantity Options Grid */
.qty-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 24px;
}

.qty-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    position: relative;
    cursor: pointer;
}

.qty-card:hover {
    border-color: var(--buy-green);
    background: rgba(0, 200, 83, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.15);
}

/* Best seller card */
.qty-card.best {
    border-color: var(--buy-green);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.06), rgba(0, 200, 83, 0.02));
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.12);
}

.qty-card.best:hover {
    box-shadow: 0 8px 28px rgba(0, 200, 83, 0.22);
}

/* Badges */
.qty-badge-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--buy-green);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.3);
}

.qty-badge-discount {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #ff4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Card Inner Layout */
.qty-card-top {
    display: flex;
    align-items: baseline;
    gap: 6px;
    min-width: 90px;
}

.qty-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.qty-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.qty-card-price {
    text-align: right;
    flex-shrink: 0;
}

.qty-total {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.qty-unit {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 2px;
}

.qty-savings {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Modal Footer */
.qty-modal-footer {
    padding: 28px 24px 24px;
}

.qty-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--gray-600);
}

.qty-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .qty-modal {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .qty-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .qty-modal-overlay.active .qty-modal {
        transform: translateY(0) scale(1);
    }

    .qty-modal:not(.active) .qty-modal {
        transform: translateY(100%) scale(1);
    }

    .qty-modal-header {
        padding: 28px 20px 16px;
    }

    .qty-options {
        padding: 0 16px;
    }

    .qty-card {
        padding: 14px 16px;
    }

    .qty-number {
        font-size: 26px;
    }

    .qty-total {
        font-size: 18px;
    }

    .qty-trust {
        gap: 10px;
    }
}

/* === Dedicated Guarantee Section === */
.guarantee-dedicated-section {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 90px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.guarantee-badge-large {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shield-badge-icon {
    font-size: 80px;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
}

.guarantee-badge-large h3 {
    color: white;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.badge-sub {
    font-size: 14px;
    opacity: 0.75;
}

.guarantee-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.25;
    font-family: var(--font-heading);
}

.guarantee-lead {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
}

.guarantee-content p {
    font-size: 16px;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.7;
}

.guarantee-bold {
    font-weight: 800;
    color: var(--navy) !important;
}

.guarantee-perks-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guarantee-perk-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-50);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), border-color var(--transition);
}

.guarantee-perk-item:hover {
    transform: translateX(4px);
    border-color: var(--orange);
}

.g-perk-icon {
    font-size: 26px;
    line-height: 1;
}

.g-perk-text strong {
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
}

@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .guarantee-badge-large {
        padding: 40px 20px;
    }
    .shield-badge-icon {
        font-size: 60px;
    }
}

/* === Como funciona === */
.how-it-works-section {
    padding: 90px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 30px;
}

.step-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px 24px 25px;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.step-card h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.how-it-works-support {
    text-align: center;
    font-size: 16px;
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
}

/* === Para quem é / Para quem não é === */
.audience-section {
    padding: 90px 0;
    background-color: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.audience-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.audience-box.negative {
    border-left: 4px solid var(--orange);
}

.audience-box.positive {
    border-left: 4px solid var(--buy-green);
}

.audience-box h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-box p {
    font-size: 15px;
    color: var(--gray-800);
    margin-bottom: 20px;
    line-height: 1.6;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-list li {
    font-size: 15px;
    color: var(--gray-800);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.audience-list li::before {
    content: "✓";
    color: var(--buy-green);
    font-weight: 800;
    flex-shrink: 0;
}

.audience-box.negative .audience-list li::before {
    content: "⚠";
    color: var(--orange);
    font-weight: 800;
}

/* Microcopy style for button subtext */
.cta-microcopy {
    display: block;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

.offer-cta-group .cta-microcopy {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


