/* ==========================================================================
   CSS Design System for GaranteCopa 2026 LP
   Style: Sporty Brutalist-Premium
   Palette: Graphite Dark (#121518), Neon Green (#00E676), Gold (#FFD600)
   NO INDIGO (Ban Checked)
   placeholder <label> aria-label original was strike del
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --bg-color: #121518;
    --card-bg: #1a1e22;
    --card-border: #2c3239;
    
    --primary: #00E676;       /* Neon Green */
    --accent: #FFD600;        /* Gold/Yellow */
    --text-main: #ffffff;
    --text-muted: #90a4ae;
    --text-dark: #0a0c0e;
    
    --shadow-glow-green: 0 0 15px rgba(0, 230, 118, 0.4);
    --shadow-glow-gold: 0 0 15px rgba(255, 214, 0, 0.4);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    --font-header: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #0b0c0e;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 2. Container Layout */
.page-container {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--bg-color);
    border-left: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    padding: 0 16px 80px 16px;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* 3. Urgency Banner */
.urgency-banner {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background-color: #B71C1C; /* Dark, rich sports red instead of cheap gradient */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-header);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    padding: 6px 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.pulse-icon {
    animation: icon-pulse 1s infinite alternate;
}

@keyframes icon-pulse {
    from { transform: scale(1); opacity: 0.8; }
    to { transform: scale(1.2); opacity: 1; }
}

/* 4. Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 12px 0;
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-accent {
    font-size: 18px;
}

.logo-highlight {
    color: var(--primary);
}

.header-badge {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
}

/* 5. Hero Section */
.hero-section {
    padding: 32px 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-header);
    font-size: clamp(24px, 8vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-images-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 24px auto 40px auto;
    width: 100%;
    max-width: 480px;
    padding: 10px;
}

.hero-img-card {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 6px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 45%;
}

.hero-img-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.cover-card {
    transform: rotate(-3deg) translateY(0);
    z-index: 2;
}

.sheet-card {
    transform: rotate(3deg) translateY(10px);
    z-index: 1;
}

.hero-images-showcase:hover .cover-card {
    transform: rotate(-1deg) scale(1.02);
    z-index: 3;
}

.hero-images-showcase:hover .sheet-card {
    transform: rotate(1deg) translateY(5px) scale(1.02);
    z-index: 3;
}

.floating-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background-color: var(--accent);
    color: var(--text-dark);
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(255, 214, 0, 0.25);
    z-index: 4;
}

/* CTA Buttons */
.cta-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 16px;
    padding: 14px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.35);
}

.cta-sub {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

.trust-microcopy {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
    font-size: 11px;
    color: var(--text-muted);
}

/* 6. Section Styles */
.section-title {
    font-family: var(--font-header);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    text-align: center;
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

/* 7. Comparison Cards */
.comparison-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    overflow: hidden;
}

.card-header-status {
    padding: 10px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    color: var(--text-dark);
}

.card-header-status.red {
    background-color: #ff1744;
    color: #ffffff;
}

.card-header-status.green {
    background-color: var(--primary);
}

.comparison-list {
    list-style: none;
    padding: 16px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 12px;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

/* 8. Features Showcase */
.features-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.feature-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-img-wrapper {
    position: relative;
    width: 100%;
}

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

.feature-content {
    padding: 20px;
}

.feature-content h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.feature-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card-small {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 4px;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card-small h4 {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
}

.feature-card-small p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 9. How It Works */
.how-it-works {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 4px;
}

.step-number {
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.step-info h4 {
    font-family: var(--font-header);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* 10. UGC Showcase */
.ugc-showcase {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.ugc-img-wrapper {
    border: 4px solid #ffffff;
    border-radius: 2px;
    box-shadow: var(--shadow-card);
    transform: rotate(-1.5deg);
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}

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

/* 11. Social Proof (Marquee Testimonials) */
.testimonials-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: marquee-roll 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-roll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-50% - 8px), 0, 0); }
}

.testimonial-slide {
    width: 320px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.t-rating {
    margin-bottom: 8px;
    font-size: 14px;
}

.t-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.t-author {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

/* 12. Pricing Section */
.pricing-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.pricing-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.price-card {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 32px 20px 24px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.premium-card {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.08);
}
.premium-card:hover {
    border-color: var(--accent);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-dark);
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 9px;
    padding: 3px 10px;
    border-radius: 2px;
}

.card-badge.gold {
    background-color: var(--accent);
}

.plan-name {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.text-gold {
    color: var(--accent);
}

.plan-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 6px;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.price-amount {
    font-family: var(--font-header);
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
}

.price-cents {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.price-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.text-light {
    color: rgba(255, 255, 255, 0.7);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
    border-top: 1px solid var(--card-border);
    padding-top: 20px;
}

.plan-features li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-features li span {
    color: var(--primary);
    font-weight: bold;
}

.buy-button {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 15px;
    padding: 14px;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-button:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-green);
}

.buy-button-gold {
    background-color: var(--accent);
}

.buy-button-gold:hover {
    box-shadow: var(--shadow-glow-gold);
}

/* 13. Guarantee */
.guarantee-section {
    padding: 40px 20px;
    border-top: 1px solid var(--card-border);
    background-color: var(--card-bg);
    border-radius: 4px;
    text-align: center;
    margin: 32px 0;
}

.guarantee-badge {
    font-size: 32px;
    margin-bottom: 12px;
}

.guarantee-section h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.guarantee-section p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 14. FAQ Section */
.faq-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 4px;
}

.faq-item h4 {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.faq-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 15. Footer */
.main-footer {
    padding: 42px 0 24px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}

.footer-terms {
    margin-top: 12px;
    font-size: 9px;
    color: #4a545e;
}

/* 16. Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 999;
    animation: wa-wiggle 4s infinite;
}

.wa-icon {
    font-size: 16px;
}

@keyframes wa-wiggle {
    0%, 90%, 100% { transform: rotate(0deg) scale(1); }
    92% { transform: rotate(-8deg) scale(1.05); }
    94% { transform: rotate(8deg) scale(1.05); }
    96% { transform: rotate(-5deg) scale(1.05); }
    98% { transform: rotate(5deg) scale(1.05); }
}

/* 17. Exit Intent Popup */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.exit-popup-card {
    background-color: var(--card-bg);
    border: 1px solid var(--primary);
    border-radius: 8px;
    max-width: 480px;
    width: 100%;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 230, 118, 0.15);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

.close-btn:hover {
    color: #ffffff;
}

.popup-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.exit-popup-card h3 {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.exit-popup-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.exit-popup-card p strong {
    color: var(--primary);
}

.popup-sub {
    font-size: 11px !important;
    font-style: italic;
    color: var(--accent) !important;
    margin-bottom: 24px !important;
}

.popup-cta-btn {
    display: block;
    background-color: var(--primary);
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 16px;
    transition: transform 0.2s ease;
}

.popup-cta-btn:hover {
    transform: scale(1.02);
}

.popup-decline-btn {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-decline-btn:hover {
    color: #ffffff;
}

/* ==========================================================================
   19. Competitor Integrations & Refinements Styles
   ========================================================================== */

/* Glow tags */
.glow-tag {
    display: inline-block;
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}
.gold-badge {
    background-color: var(--accent);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow-gold);
}
.green-badge {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow-green);
}

/* Pain points Section */
.pain-points-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}
.pain-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 6px;
    transition: border-color 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pain-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.pain-icon {
    font-size: 20px;
    flex-shrink: 0;
    background-color: rgba(255, 214, 0, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.pain-text h4 {
    font-family: var(--font-header);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}
.pain-card p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Real Cost Section */
.real-cost-section {
    padding: 32px 20px;
    border-top: 1px solid var(--card-border);
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 4px solid #D32F2F; /* Subdued elegant red indicator */
    border-radius: 4px;
    margin: 24px 0;
    text-align: center;
}
.cost-comparison-box {
    margin: 16px 0;
}
.cost-value {
    font-family: var(--font-header);
    font-size: 40px;
    font-weight: 800;
    color: #ff1744;
    line-height: 1;
    margin-bottom: 8px;
}
.cost-explanation {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
.solution-highlight-box {
    background-color: rgba(0, 230, 118, 0.05);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
}

/* Neymar Kit Section */
.neymar-in-kit-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
.neymar-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 24px 0;
}
.neymar-card-box {
    position: relative;
    background-color: var(--card-bg);
    border-radius: 6px;
    padding: 10px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.neymar-card-box:hover {
    transform: translateY(-4px);
}
.border-green {
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.border-green:hover {
    border-color: var(--primary);
}
.border-gold {
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.border-gold:hover {
    border-color: var(--accent);
}
.card-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-header);
    font-weight: 800;
    font-size: 8px;
    padding: 2px 8px;
    border-radius: 2px;
    color: var(--text-dark);
}
.base-label {
    background-color: var(--primary);
}
.legend-label {
    background-color: var(--accent);
}
.neymar-img {
    max-width: 110px;
    height: auto;
    display: block;
    border-radius: 4px;
}
.neymar-microcopy {
    font-size: 11px;
    color: var(--text-muted);
}

/* Updates / Players Section */
.new-players-section, .cromas-bonus-section {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
}
.players-preview-wrapper, .cromas-preview-wrapper {
    background-color: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 16px;
}
.players-img, .cromas-img {
    width: 100%;
    height: auto;
    display: block;
}
.update-features-box, .cromas-features-box {
    padding: 20px;
    text-align: left;
}
.players-list {
    list-style: none;
}
.players-list li {
    font-size: 13px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.players-list li span {
    color: var(--primary);
    font-weight: bold;
}
.cromas-features-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}



/* 18. Responsive Adjustments */
@media (max-width: 480px) {
    .page-container {
        padding: 0 12px 60px 12px;
    }
    .hero-title {
        font-size: 28px;
    }
    .price-amount {
        font-size: 46px;
    }
    .feature-grid-small {
        grid-template-columns: 1fr;
    }
}
