/* Definição de Variáveis Globais (Paleta de Cores) */
:root {
    --color-primary-blue: #0A2342; 
    --color-gold: #D4AF37;         
    --color-silver: #E0E0E0;       
    --color-white: #FFFFFF;
    --color-text-dark: #333333;
    --color-footer-bg: #051222;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif; 
}

body {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* Garante que o rodapé fique no fundo da página */
}

/* --- CABEÇALHO --- */
header {
    background-color: var(--color-primary-blue);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 60px; 
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color-gold);
}

/* Botões Globais */
.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-primary-blue);
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: scale(1.05);
}

/* --- RODAPÉ --- */
footer {
    background-color: var(--color-footer-bg);
    color: var(--color-silver);
    padding: 40px 5% 15px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.social-links a {
    color: var(--color-silver);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-white);
}

.payment-methods span, .payment-methods small {
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(224, 224, 224, 0.2);
    padding-top: 15px;
    text-align: center;
    position: relative;
}

.legal-links a {
    color: var(--color-silver);
    text-decoration: none;
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: var(--color-white);
}

/* Crédito do Desenvolvedor Reativo */
.developer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
}

.dev-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.dev-link:hover {
    color: var(--color-white);
    text-shadow: 0 0 5px var(--color-gold);
}

/* Link Discreto do Administrador */
.admin-access {
    position: absolute;
    bottom: 0;
    right: 0;
}

.discreet-link {
    color: rgba(255, 255, 255, 0.1); /* Quase invisível */
    text-decoration: none;
    font-size: 0.8rem;
    padding: 5px;
    transition: color 0.3s;
}

.discreet-link:hover {
    color: rgba(255, 255, 255, 0.5); /* Fica levemente visível ao passar o mouse */
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.float-whatsapp {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
    transition: transform 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}