@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;800;900&display=swap');

/* ============================================
   Champions Sports - style.css
   ============================================ */

:root {
    --green: #00c853;
    --gold: #ffd600;
    --dark: #0a0e17;
    --darker: #060a10;
    --card: #111927;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--darker);
    color: #e8eaf0;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* ── HERO ─────────────────────────────────── */
.hero {
    background: linear-gradient(160deg, #0b1c2c 0%, #091525 60%, #050d14 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(0, 200, 83, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(255, 214, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(0, 200, 83, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 83, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ── BADGE ────────────────────────────────── */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), #00e676);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-cta {
    display: inline-block;
    /* Fundo escuro para destacar o neon */
    background-color: #001f3f; 
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 5px;
    text-decoration: none;
    
    /* O efeito Neon */
    border: 2px solid #00d4ff;
    box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
    
    transition: all 0.3s ease;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15));
}

.btn-cta:hover {
    background-color: #00d4ff;
    color: #000;
    /* Aumenta o brilho no hover */
    box-shadow: 0 0 20px #00d4ff, 0 0 40px #00d4ff;
}

.btn-cta-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #ffee58 100%);
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.3);
}

.btn-cta-gold:hover {
    box-shadow: 0 0 50px rgba(255, 214, 0, 0.5);
}

/* ── SECTIONS ─────────────────────────────── */
.section-dark {
    background: var(--dark);
}

.section-darker {
    background: var(--darker);
}

.section-card {
    background: var(--card);
}

/* ── DIVIDER ──────────────────────────────── */
.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.5;
}

/* ── CHECK LIST ───────────────────────────── */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.check-icon {
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── ARROW LIST ───────────────────────────── */
.arrow-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.arrow-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── STAT CARDS ───────────────────────────── */
.stat-card {
    background: linear-gradient(135deg, #111927 0%, #0d1520 100%);
    border: 1px solid rgba(0, 200, 83, 0.15);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

/* ── GLOW TEXT ────────────────────────────── */
.glow-green {
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
    color: var(--green);
}

.glow-gold {
    text-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
    color: var(--gold);
}

/* ── NAVBAR ───────────────────────────────── */
nav {
    background: rgba(6, 10, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 200, 83, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* ── IMAGE HOVER ──────────────────────────── */
.img-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
    animation-delay: 0.10s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.25s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.40s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.55s;
    opacity: 0;
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 200, 83, 0);
    }
}

.pulse-btn {
    animation: pulse-green 2s infinite;
}

/* ── FORM ─────────────────────────────────── */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    color: #e8eaf0;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--green);
    background: rgba(0, 200, 83, 0.04);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-input {
    resize: vertical;
    min-height: 110px;
}

/* ── FOOTER ───────────────────────────────── */
footer {
    background: #040810;
    border-top: 1px solid rgba(0, 200, 83, 0.1);
}

/* No seu arquivo CSS principal ou tag <style> */

.imagem-fixa {
    /* Força o tamanho exato, ignorando outras regras */
    width: 420px !important;
    height: 450px !important;

    /* Garante que a imagem preencha o espaço sem distorcer, cortando se necessário */
    object-fit: cover !important;

    /* Remove qualquer transição ou transformação que cause movimento */
    transition: none !important;
    transform: none !important;

    /* Garante que a imagem seja tratada como um bloco dentro do link */
    display: block;
}

/* Remove explicitamente qualquer efeito de hover vindo de outras regras globais */
.imagem-fixa:hover {
    transform: none !important;
    scale: 1 !important;
}
