html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.placar {
    font-weight: bold;
}

    .placar .gols {
        font-size: 2.5rem;
        color: #000;
    }

    .placar .x {
        font-size: 1.5rem;
        color: #666;
    }

.card {
    border-radius: 12px;
}
/* Fundo tipo gramado */
.placar-card {
    background: linear-gradient(180deg, #1e7d34, #145c26);
    border-radius: 15px;
    margin-bottom: 15px;
    animation: subirSuave 0.6s ease-out;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.placar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes subirSuave {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Escudo */
.escudo {
    max-height: 80px;
}

/* Placar */
.placar {
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 10px;
}

/* Gols */
.gols {
    font-size: 2.8rem;
    animation: zoomGol 0.4s ease-in-out;
}

@keyframes zoomGol {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* X */
.x {
    font-size: 1.6rem;
}

/* RESULTADOS */
.vitoria {
    background-color: rgba(40, 167, 69, 0.85); /* verde */
    color: #fff;
    animation: pulseGreen 1s infinite;
}

.derrota {
    background-color: rgba(220, 53, 69, 0.85); /* vermelho */
    color: #fff;
}

.empate {
    background-color: rgba(255, 193, 7, 0.85); /* amarelo */
    color: #000;
}

.bolinhas-gols {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.gol-bolinha {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #198754;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gol-bolinha:hover {
    transform: scale(1.2);
}

.card-champions {
    background: linear-gradient(135deg, #0f5132 0%, #198754 40%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

    .card-champions::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
    }

    .card-champions .match-title {
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .card-champions .escudo {
        max-height: 90px;
        transition: transform 0.3s ease;
    }

        .card-champions .escudo:hover {
            transform: scale(1.1);
        }

    .card-champions .vs-text {
        font-size: 2rem;
        font-weight: bold;
        color: #ffffff;
    }

    .card-champions .match-date {
        font-size: 0.9rem;
        color: #f8f9fa;
        letter-spacing: 1px;
    }

.nome-adversario {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.25);
    padding: 8px 15px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.card-aniversarios {
    background: linear-gradient(135deg, #0f5132 0%, #198754 40%, #ffffff 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.aniversariante-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .aniversariante-item:hover {
        transform: translateY(-3px);
        background: rgba(0, 0, 0, 0.35);
    }

.aniversariante-data {
    font-weight: 700;
    letter-spacing: 1px;
}

.aniversariante-nome {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.foto-preview {
    transition: 0.3s;
    cursor: pointer;
}

.foto-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/*.card-aniversarios {
    background: #0f5132;
    padding: 20px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.aniversariante-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}*/
.hero-title {
    font-weight: 900;
    font-size: 3rem;
    color: white;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}
.hero-escudo {
    width: 130px;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.3s ease;
}

.hero-escudo:hover {
    transform: scale(1.05);
}
.hero-section {
    background: linear-gradient(135deg, #004d26 0%, #006633 60%, #ffffff 100%);
    padding: 10px 0;
    border-radius: 20px;
}
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}