/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to left, #131a5c 0%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold {
    color: #e0ca00;
}

/* ===== HEADER ===== */
.header {
    background: #111111;
    padding: 20px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
}

.container .highlight {
    -webkit-background-clip: text;
    background-clip: text;
    color: blue;
    
    /* Apenas uma linha fina branca ao redor do texto */
    -webkit-text-stroke: 1px white;
    
    filter: drop-shadow(0px 0px 3px white);
}

.logo span {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
}

.btn-voltar {
    background: gold;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-voltar:hover {
    background: #ffea2f;
    transform: translateY(-2px);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main {
    padding: 50px 0 80px;
}

.privacy-card {
    background: #111111;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid white;
}

.privacy-card h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.privacy-card h1 span{

      color: gold;
}

.update {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

/* Seções */
.section {
    margin-bottom: 35px;
}

.section h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0ca00;
}

.section h2 i {
    font-size: 1.2rem;
    color: white;
}

.section p {
    color: #ccc;
    margin-bottom: 12px;
}

.section ul {
    padding-left: 25px;
    margin: 10px 0;
}

.section ul li {
    color: #ccc;
    margin-bottom: 8px;
}

/* Contato */
.contact-info {
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #e0ca00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Rodapé da Política */
.footer-policy {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.footer-policy i {
    color: #e0ca00;
    margin-right: 5px;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer a {
    color: #e0ca00;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

#btn-cookie-settings {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #111;
    color: #fff;
    border: 1px solid #e0ca00;
    padding: 10px 14px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.8rem;
    z-index: 9999;
    transition: all 0.3s ease;
}

#btn-cookie-settings:hover {
    background: #e0ca00;
    color: #000;
    transform: scale(1.05);
}


/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .privacy-card {
        padding: 25px;
    }
    
    .privacy-card h1 {
        font-size: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.1rem;
    }
    
    .header .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-card {
        padding: 20px;
    }
    
    .section h2 {
        font-size: 1rem;
    }
    
    .section p, .section ul li {
        font-size: 0.9rem;
    }
}