/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Espaço para header fixo */
}

/* Rolagem ultra suave para webkit (Chrome, Safari, Edge) */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-behavior: smooth;
    }
}

:root {
    --primary-green: #2B7A2B;
    --secondary-green: #3A8F3A;
    --dark-green: #1F5F1F;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --border-light: #E5E5E5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    
    /* Variáveis para highlights cards */
    --jeep-green: #0b6b4c;
    --card-bg: #fff;
    --card-bd: #e9ecef;
    --card-sh: 0 1px 6px rgba(0,0,0,.06);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Tipografia fluida para responsividade */
h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: var(--text-dark);
}

.hero-title {
    font-size: clamp(1.6rem, 6vw, 3rem);
}

.highlight {
    color: var(--primary-green);
    font-weight: 800;
}

.price-highlight {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.2em;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-tertiary {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    touch-action: manipulation;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.btn-tertiary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

/* Botão Mega Principal */
.main-purchase-button {
    margin: 40px 0;
    text-align: center;
    padding: 0 20px;
}

.btn-mega-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 20px;
    padding: 24px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(43, 122, 43, 0.3);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.btn-mega-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-mega-primary:hover::before {
    left: 100%;
}

.btn-mega-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(43, 122, 43, 0.4);
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

.btn-mega-primary .btn-icon {
    font-size: 1.5em;
    animation: pulse-fire 2s infinite;
}

.btn-mega-primary .btn-text {
    font-size: 1.3em;
    font-weight: 700;
}

.btn-mega-primary .btn-subtitle {
    font-size: 0.9em;
    opacity: 0.9;
    font-weight: 500;
}

@keyframes pulse-fire {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsivo para o botão mega */
@media (max-width: 768px) {
    .btn-mega-primary {
        min-width: 260px;
        padding: 20px 30px;
        font-size: 1.2rem;
    }
    
    .btn-mega-primary .btn-text {
        font-size: 1.2em;
    }
}

.btn-tertiary:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-jumbo {
    padding: 24px 48px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h2 {
    color: var(--primary-green);
    margin: 0;
}

/* Logo responsivo */
.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
        max-width: 150px;
    }
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.header-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Menu Hambúrguer Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 999;
    display: none;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-content .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

.sticky-content .qty-display {
    font-weight: 500;
    color: var(--text-gray);
}

.sticky-content .btn-primary {
    padding: 12px 24px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    z-index: 2;
}

.badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.badge {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--text-gray);
}

/* Prize Highlights - Cards Responsivos */
.prize-highlights { 
    margin-bottom: 32px;
    margin-top: 12px; 
}

/* Grid responsivo: 1 coluna no mobile, 2 no ≥640px */
.highlights-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 640px) {
    .highlights-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
}

/* Card do bullet */
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: 12px;
    box-shadow: var(--card-sh);
    min-height: 44px; /* Toque confortável (≥44px) */
}

/* Ícone fixo, alinhado ao topo do texto */
.hi-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11,107,76,.08);
    color: var(--jeep-green);
    margin-top: 2px; /* alinhar com primeira linha do título */
}

.hi-icon i { 
    font-size: 14px; 
}

/* Texto com hierarquia clara */
.hi-text { 
    line-height: 1.25; 
}

.hi-title {
    display: block;
    font-weight: 700;
    font-size: clamp(0.95rem, 2.8vw, 1rem);
    color: #111827; /* quase preto para legibilidade */
}

.hi-sub {
    display: block;
    margin-top: 2px;
    font-weight: 500;
    font-size: clamp(0.85rem, 2.4vw, 0.95rem);
    color: #374151;
    overflow-wrap: anywhere; /* evita estouro em telas estreitas */
}

/* Dark mode opcional */
@media (prefers-color-scheme: dark) {
    .highlight-item {
        background: #111;
        border-color: #1f2937;
        box-shadow: none;
    }
    .hi-title { color: #f9fafb; }
    .hi-sub   { color: #cbd5e1; }
    .hi-icon  { background: rgba(11,107,76,.18); }
}

/* Progresso de Vendas */
.sales-progress {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.progress-text {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.remaining {
    color: #e74c3c;
    font-weight: 600;
}

.progress-bar {
    height: 12px;
    background: var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background:
        linear-gradient(90deg, var(--primary-green), var(--secondary-green)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.25) 0 12px, rgba(255,255,255,0) 12px 24px);
    background-size: 100% 100%, 40px 40px;
    transition: width 900ms cubic-bezier(.22,.61,.36,1);
}

.urgency-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Selector de Números */
.number-selector {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.number-selector h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.quantity-presets {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.qty-btn {
    padding: 12px 20px;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    min-width: 60px;
}

.qty-btn:hover, .qty-btn.active {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: var(--text-light);
}

.custom-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

#qtyInput {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.qty-controls {
    display: flex;
    gap: 4px;
}

.qty-control {
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary-green);
    background: var(--bg-white);
    color: var(--primary-green);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    touch-action: manipulation;
}

.qty-control:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.chance-display {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.chance-display span {
    font-weight: 600;
    color: var(--text-dark);
}

.quick-add {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.quick-add-btn {
    padding: 8px 16px;
    border: 1px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.quick-add-btn:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

/* CTAs Hero */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-ctas .btn-primary {
    align-self: flex-start;
}

.confirmation-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    text-align: center;
}

/* Prova Social Instantânea */
.instant-social-proof {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.winners-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.winner-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.security-seals {
    display: flex;
    gap: 16px;
}

.security-seals img {
    height: 40px;
    width: auto;
}

/* Hero Right */
.hero-right {
    position: relative;
}

.main-car-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Seção Por que esse prêmio é único */
.premio-unico {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.unique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.unique-left .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.unique-left .section-title .subtitle {
    display: block;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-gray);
    margin-top: 8px;
}

.unique-left .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.5;
}

.unique-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(11, 107, 76, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--jeep-green);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(11, 107, 76, 0.05);
    transform: translateX(4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--jeep-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.unique-right {
    position: relative;
}

.unique-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premio-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--jeep-green);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(11, 107, 76, 0.3);
}

.badge-text {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

.badge-subtitle {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* Responsivo para a seção única */
@media (max-width: 768px) {
    .premio-unico {
        padding: 60px 0;
    }
    
    .unique-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .unique-right {
        order: -1;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .image-badge {
        top: 16px;
        right: 16px;
        padding: 8px 12px;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .badge-subtitle {
        font-size: 0.7rem;
    }
}

/* Showcase Section */
.showcase {
    padding: 80px 0;
    background: var(--bg-white);
}

.video-showcase {
    position: relative;
    margin-bottom: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1; /* Sempre visível */
    transition: var(--transition);
}

.video-showcase:hover .video-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5); /* Mais escuro no hover */
}

.play-btn {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    transform: scale(1.1);
    border-color: var(--primary-green);
}

.video-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.video-indicator i {
    font-size: 1rem;
}

/* Galeria Premium */
.gallery-premium {
    position: relative;
    margin-bottom: 60px;
}

.gallery-container {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-light);
    padding: 40px 20px 20px;
    font-weight: 500;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.gallery-prev, .gallery-next {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--bg-white);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background: var(--primary-green);
}

/* CTA Lateral Fixo */
.fixed-side-cta {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
}

.fixed-side-cta .btn-primary {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 20px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Opportunity Section */
.opportunity {
    padding: 80px 0;
    background: var(--bg-light);
}

.opportunity-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.opportunity-content h2 {
    margin-bottom: 24px;
}

.opportunity-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.solution-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.solution-box h3 {
    color: var(--primary-green);
    margin-bottom: 16px;
}

/* Elementos de Urgência */
.urgency-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 40px 0;
}

.timer-display, .scarcity-indicator {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.timer-label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-gray);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.time-unit label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

.restam {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 12px;
}

.recent-sales {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Desire Section */
.desire {
    padding: 80px 0;
    background: var(--bg-white);
}

.desire-content {
    max-width: 800px;
    margin: 0 auto;
}

.experience-text {
    margin-bottom: 48px;
}

.experience-text p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.kit-auta-power {
    margin-bottom: 48px;
}

.kit-auta-power h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-green);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-card .fas {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.benefit-card h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Benefícios em Destaque */
.highlighted-benefits {
    background: var(--bg-light);
    padding: 48px 32px;
    border-radius: var(--border-radius);
    margin-top: 48px;
}

.highlighted-benefits h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-green);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.benefit-item .fas {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 4px;
    min-width: 24px;
}

.benefit-item h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.verified-winners {
    text-align: center;
    margin-bottom: 48px;
}

.verification-seal {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.verified-winners p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

/* Specs Section */
.specs {
    padding: 80px 0;
    background: var(--bg-white);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.spec-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.spec-item .fas {
    font-size: 1.8rem;
    color: var(--primary-green);
    min-width: 30px;
}

.spec-item h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.spec-item p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.spec-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
}

.spec-disclaimer p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 80px 0;
    background: var(--bg-light);
}

.how-to-buy .subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: var(--text-gray);
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.step {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .fas, .step-icon .fab {
    font-size: 2rem;
    color: var(--text-light);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--text-dark);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
    margin: 0;
}

/* Seletor Avançado */
.advanced-quantity-selector {
    background: var(--bg-white);
    padding: 48px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 48px;
    text-align: center;
}

.advanced-quantity-selector h3 {
    margin-bottom: 32px;
    color: var(--primary-green);
}

.quantity-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.chip-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    padding: 20px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.chip-btn:hover, .chip-btn.active {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.chip-btn.popular {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: var(--text-light);
}

.chip-btn.best {
    border-color: #e74c3c;
    background: #e74c3c;
    color: var(--text-light);
}

.chip-btn .qty {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.chip-btn .price {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
}

.chip-btn .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.probability-display {
    margin-bottom: 24px;
}

.probability-card {
    background: var(--bg-light);
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.prob-label {
    font-weight: 500;
    color: var(--text-gray);
}

.prob-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-green);
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-btn {
    padding: 12px 20px;
    border: 1px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.quick-btn:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

.goal-nudge {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.goal-nudge p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Resumo do Pedido */
.order-summary {
    position: sticky;
    bottom: 20px;
    background: var(--primary-green);
    color: var(--text-light);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    margin-bottom: 48px;
}

.summary-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.summary-text {
    font-size: 1.125rem;
}

.summary-content .btn-primary {
    background: var(--bg-white);
    color: var(--primary-green);
    padding: 12px 24px;
}

/* Elementos de Urgência da Seção */
.urgency-elements-section {
    margin-bottom: 48px;
}

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.urgency-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

.urgency-card h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
}

.urgency-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

.real-time-sales {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.real-time-sales h4 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.sales-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sale-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.buyer {
    font-weight: 600;
    color: var(--text-dark);
}

.action {
    color: var(--text-gray);
}

.time {
    color: var(--primary-green);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 48px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.faq-question .fas {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .fas {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-support {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.faq-support h3 {
    margin-bottom: 16px;
    color: var(--primary-green);
}

.support-contacts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.support-btn:hover {
    background: var(--primary-green);
    color: var(--text-light);
}

/* Checkout Section */
.checkout {
    padding: 80px 0;
    background: var(--bg-light);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.final-selector h3 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.final-quantity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.final-qty-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    padding: 20px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.final-qty-btn:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.final-qty-btn.popular {
    position: relative;
    outline: 2px solid #0B6B4C;
    box-shadow: 0 8px 24px rgba(11,107,76,.15);
    border-color: #0B6B4C;
    background: #0B6B4C;
    color: var(--text-light);
}

.final-qty-btn .badge{
    position:absolute; 
    top:-8px; 
    right:-8px;
    background:#0B6B4C; 
    color:#fff; 
    font-weight:700;
    font-size:.72rem; 
    padding:3px 8px; 
    border-radius:999px;
}

.final-qty-btn .qty {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.final-qty-btn .price {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Estilos para os packs da Super Promo */
.final-qty-btn.pack .sub {
    display: block; 
    font-size: .85rem; 
    color: #6b7280; 
    margin-top: 2px;
}

.final-qty-btn .tag { 
    display: inline-block; 
    margin-top: 6px; 
    font-size: .75rem; 
    background: #f3f4f6; 
    color: #0b6b4c; 
    padding: 4px 8px; 
    border-radius: 999px;
}

.final-qty-btn.popular { 
    outline: 2px solid #0b6b4c; 
    position: relative;
}

.final-qty-btn.popular .badge {
    position: absolute; 
    top: -10px; 
    right: -10px; 
    background: #0b6b4c; 
    color: #fff;
    font-size: .75rem; 
    padding: 4px 8px; 
    border-radius: 999px;
}

.super-promo {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid #f3f4f6;
}

.super-promo h3 {
    color: #0b6b4c;
    font-weight: 700;
}

.microcopy {
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}

.custom-input {
    margin-top: 16px;
}

.custom-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.custom-input input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
}

.participant-info {
    margin-top: 32px;
}

.participant-info h3 {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Checkout Right - Estilo Tradicional */
.order-summary-traditional {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    margin-bottom: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.order-summary-traditional .summary-header {
    background: #f5f5f5;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

.order-summary-traditional .summary-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
}

.order-summary-traditional .summary-body {
    padding: 16px;
}

.order-summary-traditional .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    line-height: 1.4;
}

.order-summary-traditional .summary-row .label {
    color: #666;
    font-weight: normal;
}

.order-summary-traditional .summary-row .value {
    font-weight: 500;
    color: #333;
    text-align: right;
}

.order-summary-traditional .summary-row .value.advantage {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.order-summary-traditional .summary-row.total {
    font-weight: bold;
    font-size: 16px;
    padding: 12px 0;
}

.order-summary-traditional .summary-row.total .label,
.order-summary-traditional .summary-row.total .value {
    color: #2B7A2B;
    font-weight: bold;
}

.order-summary-traditional .summary-row.chance {
    font-size: 13px;
    color: #555;
}

.order-summary-traditional .summary-row.chance .value {
    color: #2B7A2B;
    font-weight: 600;
}

.order-summary-traditional .summary-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}

.order-summary-traditional .bonus-text {
    color: #28a745;
    font-weight: 600;
}

.order-summary-traditional .discount-text {
    color: #dc3545;
    font-weight: 600;
}

/* Responsividade para mobile */
@media (max-width: 480px) {
    .order-summary-traditional .summary-row {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .order-summary-traditional .summary-row.total {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .order-summary-traditional .summary-body {
        padding: 12px;
    }
    
    .order-summary-traditional .summary-header {
        padding: 10px 12px;
    }
    
    .order-summary-traditional .summary-header h3 {
        font-size: 13px;
    }
}

.payment-section {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    text-align: center;
}

.payment-section h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.payment-info {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.security-info {
    text-align: center;
}

.security-seals-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.security-seals-checkout img {
    height: 30px;
    width: auto;
}

.regulation-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.regulation-link a:hover {
    text-decoration: underline;
}

/* Modal PIX */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal.modal-open {
    opacity: 1;
}

.modal.modal-open .modal-content {
    transform: scale(1);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
    transform: scale(0.9);
    transition: transform 0.2s ease;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-dark);
}

.close {
    color: #9ca3af;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

/* Mobile: tamanho maior para melhor toque */
@media (max-width: 768px) {
    .close {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

.close:hover {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.1);
    opacity: 1;
    transform: scale(1.05);
}

.modal-body {
    padding: 24px;
}

.pix-info {
    text-align: center;
    margin-bottom: 24px;
    background: var(--bg-light);
    padding: 16px;
    border-radius: 8px;
}

.pix-qr {
    text-align: center;
    margin-bottom: 24px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--bg-light);
    border: 2px dashed var(--border-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.qr-placeholder .fas {
    font-size: 3rem;
    margin-bottom: 8px;
}

.pix-code {
    margin-bottom: 24px;
}

.pix-code label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.code-input {
    display: flex;
    gap: 8px;
}

.code-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
}

.code-input button {
    padding: 12px 16px;
    border: none;
    background: var(--primary-green);
    color: var(--text-light);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.code-input button:hover {
    background: var(--dark-green);
}

.pix-timer {
    text-align: center;
    margin-bottom: 24px;
    color: #e74c3c;
    font-weight: 600;
}

.pix-instructions {
    margin-bottom: 24px;
}

.pix-instructions h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pix-instructions ol {
    margin-left: 20px;
}

.pix-instructions li {
    margin-bottom: 8px;
    color: var(--text-gray);
}

.pix-confirmation {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

/* === Modal de Checkout === */
#checkoutModal .modal-content {
    max-width: 500px;
}

.order-summary {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 24px;
}

.summary-header {
    margin-bottom: 16px;
}

.summary-header h4 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1rem;
}

.summary-content p {
    margin: 8px 0;
    font-size: 1rem;
}

.summary-content strong {
    color: var(--primary-green);
}

.summary-note {
    color: var(--text-gray);
    font-style: italic;
    display: block;
    margin-top: 12px;
}

.btn-jumbo {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-jumbo:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    border-color: #cccccc;
}

.btn-jumbo:disabled:hover {
    background: #cccccc;
    transform: none;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: center; /* Centralizado ao invés de flex-end */
    align-items: center;
    padding: 24px; /* Mais padding para não grudar nas bordas */
    margin-top: 16px; /* Espaço do conteúdo acima */
}

.modal-footer .btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
}

.modal-footer .btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--text-light);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #cccccc;
}

.contact-info .fas, .contact-info .fab {
    color: var(--primary-green);
    width: 20px;
}

.footer-seals {
    display: flex;
    gap: 16px;
}

.footer-seals img {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #cccccc;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Header responsivo com menu hambúrguer */
    .header-content {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Remover títulos fluidos redundantes já que usamos clamp() */
    .steps-flow {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .urgency-elements {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .quantity-chips {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .final-quantity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-contacts {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sticky-mobile-cta {
        display: block;
    }

    .fixed-side-cta {
        display: none;
    }

    .gallery-nav {
        display: none;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
    }

    /* Altura reduzida para vídeo e galeria em mobile */
    .video-showcase {
        aspect-ratio: 16/9;
        height: auto;
    }
    
    .video-indicator {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Modal de Checkout responsivo */
    #checkoutModal .modal-content {
        max-width: 95%;
        margin: 5% auto;
    }
    
    .order-summary {
        padding: 16px;
        margin-top: 16px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-footer button {
        width: 100%;
        order: 2;
    }
    
    .modal-footer .btn-secondary {
        order: 1;
    }

    .gallery-container {
        height: 300px;
    }
    
    /* Reduzir altura do vídeo para mobile muito pequeno */
    .showcase-video {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-jumbo {
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .quantity-chips {
        grid-template-columns: 1fr;
    }

    .final-quantity-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-section {
        gap: 12px;
    }

    .cta-section .btn-primary,
    .cta-section .btn-secondary,
    .cta-section .btn-tertiary {
        width: 100%;
        max-width: 300px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }

/* Scroll Smooth */
html {
    scroll-behavior: smooth;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--border-light);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Microcopy styling */
.microcopy {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin: 8px 0;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Sticky CTA spacing - evita que cubra o conteúdo quando ativo */
.has-sticky-bottom { 
    padding-bottom: 88px; 
}

/* Scroll margin para âncoras não ficarem escondidas pelo header fixo */
#participant-info { 
    scroll-margin-top: 96px; 
}

@media (max-width: 768px) { 
    #participant-info { 
        scroll-margin-top: 120px; 
    } 
}

/* CSS específico para centralização do formulário "Seus dados" no mobile */
@media (max-width: 768px) {
    .participant-info {
        margin: 32px auto !important;
        max-width: 400px;
        padding: 24px;
        background: var(--bg-white);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 2px solid var(--primary-green);
    }

    .participant-info h3 {
        text-align: center;
        color: var(--primary-green) !important;
        font-size: 1.4rem;
        margin-bottom: 24px;
        font-weight: 700;
    }

    .participant-info .form-group input {
        padding: 14px !important;
        font-size: 1rem;
        border: 2px solid var(--border-light);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .participant-info .form-group input:focus {
        border-color: var(--primary-green) !important;
        box-shadow: 0 0 0 3px rgba(11, 107, 76, 0.1);
        transform: scale(1.02);
    }

    .participant-info .form-group label {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
        display: block;
    }
}

/* Loading Dots Animation */
.loading-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green);
    animation: loading-bounce 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* === MOBILE: traz a imagem para perto do título, sem estourar === */
@media (max-width: 768px){
  /* 1) remove qualquer background-capa que tenha sido aplicado no hero */
  #hero{ 
    background: var(--hero-bg, #ffffff) !important;
  }

  /* 2) reexibe o bloco da imagem e coloca ele perto do H1 */
  .hero-content{ display:flex; flex-direction: column; gap: 12px; }
  .hero-right{ order: -1; display:block !important; }      /* imagem vem antes do texto */
  .hero-image{ margin: 6px 0 0; }

  /* 3) imagem responsiva, sem crop, com borda e sombra sutil */
  .main-car-image{
    display:block !important;
    width: 100%;
    height: auto;
    object-fit: contain;              /* garante que NADA é cortado */
    background: #fff;                 /* combina com o fundo da própria foto */
    border-radius: 12px;
    box-shadow: 0 6px 22px rgba(0,0,0,.10);
    max-height: 42vh;                 /* evita a imagem dominar a tela */
  }

  /* 4) texto escuro e sem "glow" p/ legibilidade */
  .hero-title, .hero-subtitle{ color: #111827 !important; text-shadow: none !important; }

  /* 5) destaques legíveis sobre fundo claro */
  .prize-highlights{
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
  }
  .prize-highlights .hi-title, 
  .prize-highlights .hi-sub{ color:#111827; }
}

/* Mobile-only: CTA do formulário colado embaixo (sem cobrir conteúdo) */
@media (max-width: 768px){
  .participant-info .form-cta{
    position: sticky;
    bottom: calc(env(safe-area-inset-bottom) + 0px);
    background: linear-gradient(to top, rgba(255,255,255,.98), rgba(255,255,255,.92));
    padding: 12px 0 8px;
    z-index: 5;
  }
  #goToPayment[disabled]{ filter: grayscale(.2); opacity: .7; cursor: not-allowed; }
}
/* Esconde no desktop */
@media (min-width: 769px){
  .mobile-only{ display: none !important; }
}

/* Bottom-sheet no mobile */
.modal .modal-content.modal-sheet {
  max-width: 520px;
}

@media (max-width: 480px) {
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.36);
    z-index: 10000;
  }
  .modal .modal-content.modal-sheet {
    position: fixed;
    left: 50%; 
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: none;
    border-radius: 16px;
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .modal-header {
    padding: 14px 16px;
  }
  .modal-body {
    padding: 16px 16px 100px; /* Espaço para o footer */
  }
  .modal-footer.modal-footer-sticky {
    position: fixed;
    left: 50%; 
    bottom: 16px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    background: #fff;
    display: flex; gap: 12px;
    border-top: 1px solid rgba(0,0,0,.06);
    justify-content: stretch;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 16px;
    z-index: 10001;
  }
  .modal-footer .btn-primary,
  .modal-footer .btn-secondary {
    height: 56px; /* Altura adequada para toque */
    font-size: 16px; 
    border-radius: 12px; 
    flex: 1; /* Ocupa toda largura disponível */
    width: 100%; /* Força largura total */
    max-width: none; /* Remove limitação de largura */
    font-weight: 600; /* Fonte mais destacada */
    letter-spacing: 0.5px; /* Melhor espaçamento das letras */
  }

  /* Inputs maiores e fáceis de tocar */
  #participantForm .form-group { margin-bottom: 14px; }
  #participantForm input {
    font-size: 16px; /* evita zoom no iOS */
    height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
  }
}

/* Modal desktop com melhor espaçamento */
@media (min-width: 769px) {
  .modal-content {
    max-width: 480px;
    margin: 5vh auto;
    padding: 0;
  }
  
  .modal-footer {
    padding: 32px 24px; /* Mais espaçamento no desktop */
    margin-top: 24px;
    border-top: 1px solid var(--border-light);
  }
  
  .modal-footer .btn-jumbo {
    min-width: 200px; /* Largura mínima no desktop */
    max-width: 300px; /* Largura máxima no desktop */
  }
}

/* Resumo do pedido sempre visível */
.order-summary {
  margin-top: 16px;
  padding: 16px;
  background: #ffffff; /* Branco puro ao invés do cinza claro */
  border-radius: 8px;
  border: 1px solid var(--border-light, #e9ecef);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Sombra sutil para destacar */
}

.order-summary .summary-content {
  margin: 0;
}

.order-summary .summary-content p {
  margin: 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark, #333);
  font-size: 14px; /* Texto menor para caber melhor */
  line-height: 1.4;
}

.order-summary .summary-content strong {
  color: var(--text-dark, #333); /* Mudando de verde para cinza escuro */
  font-weight: 600;
  text-align: right; /* Alinha valores à direita */
  flex-shrink: 0; /* Não permite que os valores encolham */
}

/* Mobile: layout mais compacto e responsivo */
@media (max-width: 480px) {
  .order-summary {
    padding: 16px; /* Padding consistente com modal-body */
    margin-top: 16px; /* Espaçamento padrão */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); /* Sombra mais sutil no mobile */
  }
  
  .order-summary .summary-content p {
    font-size: 14px; /* Tamanho adequado para mobile */
    flex-wrap: wrap; /* Permite quebra se necessário */
    gap: 4px;
  }
  
  /* Para telas muito pequenas, empilha verticalmente se necessário */
  @media (max-width: 360px) {
    .order-summary .summary-content p {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
    
    .order-summary .summary-content strong {
      text-align: left;
      margin-top: 2px;
    }
  }
}

/* Layout responsivo da seção checkout */
@media (max-width: 768px) {
    .checkout-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .checkout-left,
    .checkout-right {
        flex: none !important;
        min-width: auto !important;
    }
}

/* Rolagem ultra suave e customizada */
@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}

/* Para navegadores que suportam scroll customizado */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  
  /* Easing customizado para elementos com animação */
  .smooth-scroll {
    scroll-behavior: smooth;
    transition: scroll-position 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/* Melhora visual da barra de rolagem (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: rgba(43,122,43,0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(43,122,43,0.6);
}

/* ======= QUEBRAS DE LAYOUT PARA CELULAR ======= */
@media (max-width: 768px) {
  /* container mais confortável */
  .container { padding: 0 16px; }

  /* hero em 1 coluna, imagem vai para baixo (ou some) */
  .hero-content { 
    display: grid;
    grid-template-columns: 1fr;        /* cai para 1 coluna */
    gap: 24px;
  }
  /* opção A: esconde a coluna da direita no mobile */
  .hero-right { display: none; }

  /* títulos e textos mais compactos */
  .hero-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .hero-subtitle { font-size: 1rem; }

  /* cards de destaques já têm grid responsivo, mantém */
  /* progress bar e blocos com paddings menores */
  .sales-progress, .number-selector { padding: 16px; }

  /* MENU MOBILE */
  .mobile-menu-toggle { display: flex; }      /* mostra o hambúrguer */
  .nav-menu { 
    display: none;                             /* esconde menu desktop */
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
  }
  .nav-menu.open { display: flex; }           /* JS alterna essa classe */

  /* CTA no header fica menor; prioriza o sticky no mobile */
  .header-cta { display: none; }

  /* HEADER MOBILE — deixa rolar junto com o conteúdo */
  #header.header-fixed {
    position: relative;
  }

  /* STICKY CTA MOBILE — garante visível no mobile */
  .sticky-mobile-cta { display: block; }

  /* toques maiores em botões e inputs */
  .btn-primary, .btn-secondary, .btn-tertiary {
    min-height: 48px; font-size: 16px; border-radius: 12px;
  }
  input, select, textarea { 
    font-size: 16px; min-height: 44px; border-radius: 10px; 
  }
}

/* ===== Correções globais anti-overflow ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;          /* bloqueia deslize lateral */
  touch-action: pan-y;         /* só rolagem vertical */
  -webkit-text-size-adjust: 100%;
}
img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Conteiner seguro no mobile */
@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; box-sizing: border-box; }
}

/* ===== HERO: força 1 coluna no mobile e evita "lado direito" vazar ===== */
@media (max-width: 768px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-right { display: none; }            /* some com a imagem lateral no mobile */
  .main-car-image { width: 100%; height: auto; }
}

/* ===== Galeria: cada slide ocupa 100% da largura do viewport ===== */
.gallery-container { overflow: hidden; }
.gallery-slide { min-width: 100%; box-sizing: border-box; }
.gallery-slide img { width: 100%; height: auto; }

/* ===== CTA lateral: não usar no mobile (evita largura extra) ===== */
@media (max-width: 768px) {
  .fixed-side-cta { display: none; }
}

/* ===== Checkout: evitar que a coluna direita force largura ===== */
.checkout-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.checkout-left {
  flex: 2;
}

.checkout-right {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 900px) {
  .checkout-content {
    display: block !important;      /* quebra a linha; ignora inline style flex */
  }
  .checkout-right {
    min-width: 0 !important;        /* derruba o min-width:300px do HTML */
    width: 100%;
    margin-top: 24px;
  }
}

/* ===== Navegação: menu desktop some, hambúrguer aparece ===== */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; gap: 12px; }
  .mobile-menu-toggle { display: flex; }
}

/* ===== Pequenos ajustes de componentes largos ===== */
.progress-bar, .order-summary, .order-summary-final,
.urgency-elements, .benefits-list, .specs-grid, .steps-flow {
  max-width: 100%;
  overflow: hidden;
}
