/*
Theme Name: Davirene
Author: Distribuidora Davirene
Version: 1.0
*/


/* =========================
   RESET E CONFIGURAÇÕES GERAIS
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(90deg, #eebe5e, #f7de95, #eebe5e);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    line-height: 1.6;
}

/* =========================
   HEADER / NAV
   ========================= */

/* HEADER */
.site-header {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px 0;
}

/* Container centralizado */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Navegação */
.main-nav {
    display: flex;
    gap: 30px;
}

/* Links */
.main-nav a {
    color: #f7de95;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover seguindo o tema */
.main-nav a:hover {
    background-color: #eebe5e;
    color: #000;
}

/*

header {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 15px 30px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.nav a {
    color: #f7de95;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #eebe5e;
    color: #000;
}

*/

/* =========================
   MAIN
   ========================= */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* =========================
   HOME - CARD CENTRAL
   ========================= */
.tela-login {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 80px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
}

.tela-login img {
    max-width: 360px;
    max-height: 200px;
    margin-bottom: 20px;
}

.tela-login h1 {
    margin-bottom: 15px;
}

.tela-login h2 {
    font-size: 18px;
    font-weight: normal;
}

/* =========================
   PÁGINA POLÍTICA DE PRIVACIDADE
   ========================= */
.container {
    max-width: 800px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container img {
    display: block;
    margin: 0 auto 20px;
    max-width: 360px;
    max-height: 200px;
}

.container h1 {
    text-align: center;
    color: #000;
    margin-bottom: 30px;
}

.container h2 {
    color: #eebe5e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.container p {
    margin-bottom: 15px;
}

.container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* =========================
   FOOTER
   ========================= */
footer {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    color: #f7de95;
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #f7de95;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #eebe5e;
    text-decoration: underline;
}

/* =========================
   BOTÕES (GERAL)
   ========================= */
.btn-home,
.btn-privacidade {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #f7de95;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-home:hover,
.btn-privacidade:hover {
    background-color: #eebe5e;
    color: #000;
}

/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 768px) {
    .tela-login {
        padding: 40px 25px;
    }

    .container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .tela-login h2 {
        font-size: 16px;
    }
}

/* =========================
   COOKIES
   ========================= */

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}

.cookie-banner a {
    color: #eebe5e;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    border: none;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#accept-cookies {
    background-color: #eebe5e;
    color: #000;
}

#reject-cookies {
    background-color: #555;
    color: #fff;
}
