@charset "utf-8";

/* VARIÁVEIS DE COR E IDENTIDADE ACENTUADAS NO AZUL */
:root {
    --azul-profundo: #061224;  /* Fundo escuro esportivo */
    --azul-medio: #0a2540;     /* Seções intermediárias */
    --azul-principal: #0052cc; /* Tom das ações */
    --azul-claro: #00b4d8;     /* Destaques de ícones */
    --neon-destaque: #00f5d4;  /* Tom chamativo para conversão */
    --fonte-esporte: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
    font-family: var(--fonte-esporte);
    color: #f8f9fa;
    background-color: var(--azul-profundo);
    overflow-x: hidden;
}

/* Customização de Backgrounds */
.bg-azul-profundo {
    background-color: var(--azul-profundo) !important;
}

.bg-azul-suave {
    background-color: var(--azul-medio) !important;
}

.bg-azul-gradient {
    background: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-principal) 100%);
}

.text-azul-claro {
    color: var(--azul-claro);
}
.text-neon {
    color: var(--neon-destaque);
}

.tracking-wide {
    letter-spacing: 2px;
}

/* Títulos das Seções */
.section-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO BANNER - Puxando da pasta local */
.hero-section {
    background: linear-gradient(rgba(6, 18, 36, 0.65), rgba(6, 18, 36, 0.9)), 
                url('../imagens/chamada1.png') no-repeat center center;
    background-size: cover;
    min-height: 70vh;
    padding: 120px 0;
}

.text-shadow {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Botão Moderno */
.btn-action {
    background-color: var(--neon-destaque);
    color: var(--azul-profundo);
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.btn-action:hover {
    background-color: #00d1b2;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.5);
    color: var(--azul-profundo);
}

/* Cards de Estrutura */
.card-esporte {
    border-radius: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0, 180, 216, 0.1) !important;
}

.card-esporte:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 216, 0.5) !important;
}

/* Estilização Customizada do Formulário */
.custom-input {
    background-color: var(--azul-profundo) !important;
    border: 1px solid rgba(0, 180, 216, 0.2) !important;
    color: #fff !important;
    border-radius: 8px;
}

.custom-input:focus {
    border-color: var(--azul-claro) !important;
    box-shadow: 0 0 0 0.25rem rgba(0, 180, 216, 0.25) !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* WHATSAPP FIXO FLUTUANTE */
.btn-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Customização do Logo no Banner */
.logo-hero {
    max-height: 180px; /* Altura ideal para dar destaque sem sumir com o texto */
    width: auto;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5)); /* Destaca o logo sobre o fundo */
    transition: transform 0.3s ease;
}

.logo-hero:hover {
    transform: scale(1.05); /* Efeito suave ao passar o mouse */
}