/* ============================================================
   ARQUIVO: estilos.css
   PROJETO: Clube de Cães Embu-Guaçu – Evento Real Bite
   DESCRIÇÃO: Folha de estilos geral do site.
   ============================================================ */

/* ==== SCROLLBAR MODERNO ==== */

/* WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 20px;
    background: #000; /* fundo preto */
}

::-webkit-scrollbar-track {
    background: #000; /* fundo preto */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #bfbfbf, #8c8c8c); /* cinza moderno */
    border-radius: 20px;
    border: 4px solid #000; /* cria respiro ao redor */
    transition: background 0.3s ease, border 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d9d9d9, #a6a6a6);
    border: 4px solid #222; /* leve destaque no hover */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #a6a6a6 #000; /* thumb cinza moderno + fundo preto */
}


/* ------------------------------
   VARIÁVEIS GLOBAIS
   ------------------------------ */
:root {
    --gold: #d4a64a;
    --dark: #0b0b0b;
}

/* ------------------------------
   CONFIGURAÇÃO GLOBAL
   ------------------------------ */
body {
    background: #f3f3f3;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

/* ------------------------------
   HEADER
   ------------------------------ */
.header {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
}

.header img {
    height: 65px;
}

/* Ícones do Instagram e Login */
.header-icons img {
    height: 28px;
    filter: brightness(1.1);
}

/* Ajuste do texto ao lado do logo */
.header-title span {
    font-size: 1.3rem;
    display: block;
    font-weight: 600;
}
.header-title .sub {
    font-size: 1rem;
    opacity: .8;
}

/* ------------------------------
   HERO (Banner principal)
   ------------------------------ */
.hero {
    height: 80vh;
    background: url('imagens/banner_clube_de_caes.png') center/cover no-repeat;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 6px #000;
}

/* Overlay escuro para dar contraste ao texto */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 650px;
    margin: 20px auto;
}

/* ------------------------------
   BOTÃO DOURADO
   ------------------------------ */
/* Botão dourado com fundo sólido */
.btn-gold {
    background: var(--gold) !important;   /* garante fundo dourado */
    color: #000 !important;
    font-weight: 700;
    text-shadow: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
    z-index: 0; /* volta ao padrão */
}


/* Efeito de brilho dourado animado */
.btn-gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 45%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: golden-shine 3s linear infinite;
     z-index: 1; /* brilho acima do fundo, mas atrás do texto */
    pointer-events: none;
}

/* Keyframe da animação */
@keyframes golden-shine {
    0% { left: -120%; }
    100% { left: 120%; }
}

.btn-gold:hover {
    background: #e2b45b !important;
    color: #000;
}

/* ------------------------------
   CARD DO EVENTO
   ------------------------------ */
.event-card {
    background: white;
    border-radius: 15px;
    padding: 45px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* ------------------------------
   PATROCINADORES
   ------------------------------ */
.sponsor-logo {
    max-height: 200px;
    margin: 20px;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.95);
}

/* Efeito hover nos logos */
.sponsor-logo:hover {
    transform: scale(1.12);
    filter: brightness(1.25);
}

/* Logo animado */
.fade-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-zoom.show {
    opacity: 1;
    transform: scale(1);
}

/* ------------------------------
   ANIMAÇÕES DE ENTRADA SUAVE
   ------------------------------ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------
   RODAPÉ
   ------------------------------ */
footer {
    background: #FFF;
    color: #ccc;
    padding: 50px 0;
}

.footer-final {
    background: black;
    color: white;
}

/* ------------------------------
   BOTÃO WHATSAPP FLUTUANTE
   ------------------------------ */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 15px 18px;
    border-radius: 50%;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-btn img {
    width: 70px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ------------------------------
   RESPONSIVIDADE (MOBILE)
   ------------------------------ */
@media (max-width: 768px) {

    /* Título menor no mobile */
    .hero-title {
        font-size: 2.6rem !important;
        margin-top: 40px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    /* Botão menor */
    .btn-gold {
        width: 80% !important;
        font-size: 1.2rem !important;
    }

    /* Logos menores */
    .sponsor-logo {
        max-width: 70% !important;
        height: auto !important;
        margin: 10px !important;
    }

    /* WhatsApp ajustado */
    .whatsapp-btn {
        right: 8px !important;
        bottom: 8px !important;
    }

    .whatsapp-btn img {
        width: 60px !important;
    }
}


/* Banner FitFurry com mesmo visual do card */
.event-banner {
    border-radius: 15px; /* mesmo do .event-card */
    width: 100%;         /* garante largura total no container */
    height: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover desktop */
@media (min-width: 769px) {
    .event-banner:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 28px rgba(0,0,0,0.25);
    }
}

/* Mobile: imagem segue exatamente a largura do card */
@media (max-width: 768px) {
    .event-banner {
        width: 100% !important;  /* igual ao card */
        max-width: 100%;         /* impede encolhimento */
        border-radius: 15px;     /* mantém o mesmo arredondamento */
        margin-bottom: 20px;     /* afasta do card */
    }
}

