/* ==========================================================================
   LEILÃO NOZAP - CAPTURE PAGE / LANDING PAGE CSS SYSTEM
   Design Focus: High Conversion, Vibrant Mobile-First UI, Glassmorphism, Micro-animations
   ========================================================================== */

:root {
    /* Brand Colors */
    --nz-green-primary: #1B7A48;
    --nz-green-bright: #22C55E;
    --nz-green-hover: #15803D;
    --nz-green-glow: rgba(34, 197, 94, 0.4);
    --nz-green-light-bg: #ECFDF5;
    
    --nz-dark-bg: #0B131F;
    --nz-dark-card: #111C2D;
    --nz-dark-border: rgba(255, 255, 255, 0.08);

    --nz-text-main: #0F172A;
    --nz-text-muted: #64748B;
    --nz-text-white: #FFFFFF;

    --nz-gold: #E0A82E;
    --nz-red: #EF4444;

    /* Fonts */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-slab: 'Roboto Slab', serif;

    /* Border Radius & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-cta: 0 10px 30px rgba(27, 122, 72, 0.35);
    --shadow-glow: 0 0 25px rgba(34, 197, 94, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: #F8FAFC;
    color: var(--nz-text-main);
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: 70px; /* Space for sticky bar */
}

/* Typography Helpers */
.font-slab {
    font-family: var(--font-slab);
}

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TOP URGENCY BAR
   ========================================================================== */
.top-bar {
    background: #09101D;
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.live-dot-container {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #4ADE80;
    font-size: 11px;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.top-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #CBD5E1;
    font-size: 12px;
}

.timer-badge {
    background: #EF4444;
    color: #FFFFFF;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

/* ==========================================================================
   MAIN HEADER
   ========================================================================== */
.main-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.brand-logo:hover {
    transform: scale(1.03);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F1F5F9;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--nz-text-main);
    border: 1px solid #E2E8F0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 32px 0 24px 0;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.hero-badge-wrap {
    margin-bottom: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid #FDE68A;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.85rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #0F172A;
    max-width: 820px;
    margin: 0 auto 16px auto;
}

.highlight-green {
    color: var(--nz-green-primary);
    background: linear-gradient(120deg, #1B7A48 0%, #22C55E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--nz-text-muted);
    max-width: 680px;
    margin: 0 auto 24px auto;
    line-height: 1.5;
}

/* Spots Counter Box */
.spots-box {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    max-width: 580px;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.spots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
}

.group-name-tag {
    background: #0F172A;
    color: #FFFFFF;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.spots-count {
    color: var(--nz-red);
    font-size: 14px;
    font-weight: 700;
}

.progress-bar-bg {
    height: 12px;
    background: #E2E8F0;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 50%, #22C55E 100%);
    border-radius: var(--radius-full);
    transition: width 0.5s ease-in-out;
}

.spots-subtext {
    font-size: 12px;
    color: #64748B;
    text-align: center;
    font-weight: 500;
}

/* CTA Buttons */
.cta-wrapper {
    max-width: 580px;
    margin: 0 auto;
}

.btn-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-cta);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: ctaBreathe 2.5s infinite;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(34, 197, 94, 0.5);
}

.btn-whatsapp-cta:active {
    transform: translateY(0) scale(0.98);
}

@keyframes ctaBreathe {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(27, 122, 72, 0.35);
    }
    50% {
        box-shadow: 0 10px 35px rgba(34, 197, 94, 0.6);
    }
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    animation: shineAnimation 4s infinite;
}

@keyframes shineAnimation {
    0% { transform: translateX(-100%) rotate(30deg); }
    20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.wa-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s ease;
}

.btn-whatsapp-cta:hover .wa-icon-img {
    transform: scale(1.08);
}

.step-wa-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.sticky-wa-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

.btn-text-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-main-text {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.btn-sub-text {
    font-size: 0.78rem;
    opacity: 0.9;
    font-weight: 500;
}

.guarantee-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: #64748B;
    font-weight: 600;
    flex-wrap: wrap;
}

/* ==========================================================================
   LIVE ACTIVITY SECTION (SOCIAL PROOF TICKER)
   ========================================================================== */
.live-activity-section {
    padding: 16px 0;
    background: #0B131F;
    color: #FFFFFF;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.activity-card {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 18px;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22C55E;
}

.activity-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px #22C55E;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.4s ease;
}

.ticker-thumb {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.2);
}

.ticker-info {
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

.ticker-user {
    color: #E2E8F0;
}

.ticker-details {
    font-size: 12px;
    color: #94A3B8;
}

.price-old {
    text-decoration: line-through;
    color: #64748B;
}

.price-new {
    color: #4ADE80;
    font-weight: 800;
}

/* ==========================================================================
   PRODUCT SHOWCASE GRID
   ========================================================================== */
.showcase-section {
    padding: 48px 0;
    background: #FFFFFF;
}

.section-title-wrap {
    margin-bottom: 36px;
}

.section-tag {
    font-size: 12px;
    font-weight: 800;
    color: var(--nz-green-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--nz-green-light-bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #0F172A;
    margin-top: 10px;
    line-height: 1.25;
}

.section-sub {
    color: var(--nz-text-muted);
    font-size: 15px;
    margin-top: 6px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.product-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EF4444;
    color: #FFFFFF;
    font-weight: 900;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

.product-img-wrap {
    width: 100%;
    height: 190px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-bottom: 1px solid #F1F5F9;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    min-height: 42px;
    line-height: 1.3;
}

.price-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.price-row.highlight {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px dashed #E2E8F0;
}

.val-old {
    text-decoration: line-through;
    color: #94A3B8;
    font-weight: 600;
}

.val-new {
    color: var(--nz-green-primary);
    font-weight: 900;
    font-size: 15px;
}

.btn-product-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.2s ease;
}

.btn-product-cta:hover {
    background: var(--nz-green-primary);
}

.sec-cta-container {
    max-width: 580px;
    margin: 20px auto 0 auto;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
    padding: 48px 0;
    background: #F1F5F9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.step-card {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-num {
    position: absolute;
    top: -14px;
    left: 20px;
    background: var(--nz-green-primary);
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--nz-text-muted);
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
    padding: 40px 0;
    background: #0B131F;
    color: #FFFFFF;
}

.trust-box {
    text-align: center;
}

.trust-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.trust-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #F8FAFC;
}

.trust-item p {
    font-size: 13px;
    color: #94A3B8;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 48px 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 720px;
    margin: 32px auto;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: #F8FAFC;
}

.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
    color: #0F172A;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 400;
    color: var(--nz-green-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--nz-text-muted);
    font-size: 14px;
    background: #FFFFFF;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 12px 20px 20px 20px;
    border-top: 1px solid #F1F5F9;
}

.final-cta-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    margin-top: 40px;
}

.final-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.final-cta-box p {
    font-size: 14px;
    color: #94A3B8;
    margin-bottom: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #070D17;
    color: #64748B;
    padding: 32px 0 90px 0;
    font-size: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    height: 36px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-copy {
    color: #94A3B8;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    opacity: 0.7;
}

/* ==========================================================================
   FIXED STICKY BOTTOM BAR (MOBILE FIRST)
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(34, 197, 94, 0.3);
    padding: 10px 16px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.sticky-dots {
    color: #4ADE80;
    font-weight: 700;
}

.sticky-group-lbl {
    color: #94A3B8;
    font-size: 11px;
}

.btn-sticky-cta {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    white-space: nowrap;
    animation: ctaBreathe 2s infinite;
}

/* ==========================================================================
   LIVE TOAST NOTIFICATIONS (SOCIAL PROOF POPUP)
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: 80px;
    left: 16px;
    background: rgba(15, 23, 42, 0.95);
    color: #FFFFFF;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 998;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.toast-notification.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast-img {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid #22C55E;
}

.toast-content {
    font-size: 12px;
    line-height: 1.3;
}

.toast-text {
    color: #F8FAFC;
}

.toast-time {
    color: #94A3B8;
    font-size: 10px;
    display: block;
    margin-top: 2px;
}

.toast-close {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 14px;
    color: #64748B;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-main-text {
        font-size: 1rem;
    }

    .btn-whatsapp-cta {
        padding: 15px 18px;
    }

    .top-bar-content {
        justify-content: center;
    }
}
