/* Estilos básicos para o projeto Panda Sistema */

body {
    background-color: #f8f9fa; /* Light background */
}

/* Navbar */
.navbar {
    border-bottom: 3px solid #dc3545; /* Linha vermelha para destaque (danger) */
}
.navbar-brand .logo-panda {
    font-size: 1.5rem;
}

/* ------------------------------------------------ */
/* ESTILO DO BANNER DE PROPAGANDA (index.html) */
/* ------------------------------------------------ */
#banner-propaganda {
    /* Mudei o caminho para 'imagens/ewerton-teixeira.jpg' */
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('imagens/ewerton-teixeira.jpg');
    
    /* Configurações da imagem */
    background-size: cover; 
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat;
    min-height: 350px;
    
    /* Cores do Texto */
    color: white; 
    border-radius: 1rem !important;
}

#banner-propaganda h1, 
#banner-propaganda p,
#banner-propaganda a {
    color: white !important; /* Garante que os textos e links sejam brancos sobre o fundo escuro */
}
#banner-propaganda .btn-danger {
    color: white !important; /* Mantém a cor do texto do botão */
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Evento em Destaque (Adaptado do estilo antigo) */
.evento-card-destaque {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: relative;
}
.badge-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    z-index: 10;
}
.evento-card-destaque .card-img-container {
    height: 100%;
}
.evento-card-destaque .card-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}