body {
    margin: 0px;
}

.hero {
    background-image: url("oficial.png");
    background-size: auto 102%;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    position: relative; 
}

.navbar {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; 
    align-items: center; 
    width: 90%; 
    justify-content: space-between; 
    

    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(15px);
    padding: 10px 30px; 
    border-radius: 50px; 
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 230px; 
    margin-right: 35px;
}

.navbar-logo {
    height: 40px; 
    width: auto;
    margin-left: 20px; 
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}
.nav-btn {
    background: none;
    border: none; 
    color: #FFD700;
    font-size: 16px;
    font-weight: bold; 
    cursor: pointer; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
}

.nav-btn {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.nav-btn:nth-child(1):hover { color: #ffffff; text-shadow: 0 0 15px #ffd700; } /* Galeria - Azul */
.nav-btn:nth-child(2):hover { color: #ffffff; text-shadow: 0 0 15px #ffd700; } /* Sobre - Rosa/Vinho */
.nav-btn:nth-child(3):hover { color: #ffffff; text-shadow: 0 0 15px #ffd700; } /* Eventos - Esmeralda */
.nav-btn:nth-child(4):hover { color: #ffffff; text-shadow: 0 0 15px #ffd700; } /* Contato - Laranja */
.nav-btn:nth-child(5):hover { color: #ffffff; text-shadow: 0 0 15px #ffd700; } /* Honoríficos - Ouro */
.nav-btn:hover {
    color: #fff;
    text-shadow: 0 0 10px #FFD700; 
}


.entrar {
    background: linear-gradient(to bottom, #e6c068, #b8892d);
    padding: 10px 25px;
    border-radius: 8px;
    color: #4b2e05;
}
.assinatura-site {
    position: fixed;
    bottom: 15px;
    right: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6); 
    font-family: 'Arial', sans-serif;
    z-index: 1000; 
    pointer-events: none; 
}

.nome-assinatura {
    color: #0e4e1f; 
    font-weight: bold;
    text-shadow: 0 0 5px rgb(11, 61, 24); 
}

.btn-flutuante-info {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Canto inferior esquerdo */
    width: 45px;
    height: 45px;
    background-color: #0b3d18; /* Verde escuro institucional */
    border: 2px solid #FFD700; /* Dourado dos seus botões */
    color: #FFD700;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.btn-flutuante-info {
    background: radial-gradient(circle, #0b3d18, #05240e);
    animation: pulse-gold 2s infinite; 
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}