/* assets/css/main.css - Tema Estádio de Futebol com Efeitos Visuais Dinâmicos */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
    --bg-pitch-dark: #050c08;
    --bg-stadium-green: #0a1f14;
    --bg-card-stadium: rgba(10, 31, 20, 0.72);
    --bg-card-hover: rgba(16, 46, 30, 0.85);
    
    --border-green: rgba(0, 230, 118, 0.28);
    --border-green-glow: rgba(0, 230, 118, 0.6);
    --border-gold: rgba(255, 193, 7, 0.5);

    --neon-green: #00e676;
    --neon-green-dark: #00c853;
    --accent-gold: #ffc107;
    --accent-blue: #0284c7;

    --text-white: #ffffff;
    --text-subtle: #a7f3d0;
    --text-muted: #80b99c;

    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --shadow-stadium-glow: 0 0 30px rgba(0, 230, 118, 0.25);
    --shadow-gold-glow: 0 0 30px rgba(255, 193, 7, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    background-color: var(--bg-pitch-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    background-color: var(--bg-pitch-dark);
    background-image: 
        radial-gradient(ellipse at 50% -10%, rgba(0, 230, 118, 0.22) 0%, rgba(10, 31, 20, 0.6) 45%, var(--bg-pitch-dark) 85%),
        linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    background-attachment: fixed;
}

/* Background Video & Stadium Overlay */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: saturate(1.4) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 10%, rgba(0, 230, 118, 0.15) 0%, rgba(5, 12, 8, 0.85) 65%, var(--bg-pitch-dark) 100%),
        linear-gradient(to bottom, rgba(5, 12, 8, 0.5) 0%, var(--bg-pitch-dark) 100%);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Efeito Glassmorphic de Estádio */
.stadium-card {
    background: var(--bg-card-stadium);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stadium-card:hover {
    border-color: var(--border-green-glow);
    box-shadow: var(--shadow-stadium-glow);
    transform: translateY(-5px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 12, 8, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-green);
    padding: 14px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.5px;
}

.brand-logo img {
    height: 38px;
    object-fit: contain;
}

.brand-badge {
    background: var(--neon-green);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.6);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

/* Botão Shimmer Efeito */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: rotate(30deg) translateX(-100%);
    transition: transform 0.8s ease;
}

.btn-shimmer:hover::after {
    transform: rotate(30deg) translateX(100%);
}

.btn-header-cta {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    color: #000 !important;
    font-family: var(--font-heading);
    font-weight: 800 !important;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    transition: all 0.25s ease;
}

.btn-header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.7);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 70px;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* Dynamic Live Pulsing Beacon */
.hero-live-beacon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 230, 118, 0.12);
    border: 1px solid var(--neon-green);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.beacon-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--neon-green);
    animation: beaconPulse 1.4s infinite;
}

@keyframes beaconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 40%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-subtle);
    margin-bottom: 36px;
    line-height: 1.65;
}

/* Card Principal Play Store & Activation Box */
.primary-playstore-card {
    background: linear-gradient(180deg, rgba(10, 31, 20, 0.9) 0%, rgba(5, 12, 8, 0.95) 100%);
    border: 2px solid var(--neon-green);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 36px;
    text-align: center;
    box-shadow: var(--shadow-stadium-glow);
}

.btn-playstore-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(2, 132, 199, 0.5);
    transition: all 0.25s ease;
}

.btn-playstore-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(2, 132, 199, 0.7);
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.4);
    transition: all 0.25s ease;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 230, 118, 0.7);
}

/* Downloader Secondary Box */
.downloader-secondary-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed var(--border-green);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    text-align: left;
}

.code-badge-display {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

.btn-copy-code {
    background: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-copy-code:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5);
}

/* Sections General */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-subtle);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Showcase Grid (Banners do Futebol) */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card-stadium);
    border: 1px solid var(--border-green);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-stadium-glow);
}

.showcase-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image {
    transform: scale(1.06);
}

.showcase-body {
    padding: 24px;
}

.showcase-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.15);
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 230, 118, 0.3);
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.showcase-text {
    font-size: 0.9rem;
    color: var(--text-subtle);
}

/* Devices Section */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
}

.device-item {
    background: var(--bg-card-stadium);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.device-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--neon-green);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.2);
}

.device-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.device-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

/* Pricing Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px;
}

.plan-card {
    background: var(--bg-card-stadium);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s ease;
}

.plan-card.popular {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.08) 0%, rgba(10, 31, 20, 0.95) 100%);
    box-shadow: var(--shadow-gold-glow);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8800 100%);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.plan-desc {
    color: var(--text-subtle);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.plan-price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.popular .plan-price-val {
    color: var(--accent-gold);
}

.plan-price-period {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #d1fae5;
    margin-bottom: 12px;
}

.plan-features-list li::before {
    content: "⚽";
    font-size: 0.85rem;
}

/* FAQ Accordion */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card-stadium);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-question {
    padding: 22px 28px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-question::after {
    content: "⚽";
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--neon-green);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 28px 22px 28px;
    color: var(--text-subtle);
    font-size: 0.95rem;
    display: none;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--border-green);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Floating WhatsApp Button */
.float-whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.6);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-whatsapp-btn:hover {
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.3rem;
    }
    .nav-links {
        display: none;
    }
    .downloader-secondary-box {
        flex-direction: column;
        text-align: center;
    }
}
