
        
/* Cabeçalho */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    padding: 1rem 2rem;
    color: white;
    height: 60px;
}

header .logo img {
    max-width: 200px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

header .logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

header nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #FFEB3B;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

header nav ul li a:hover {
    color: #FFEB3B;
}

header nav ul li a:hover::after {
    width: 100%;
    left: 0;
}

/* Estilo da seção Política de Privacidade */
.politica-privacidade {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho na política de privacidade */
.politica-privacidade::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

.politica-privacidade:hover::before {
    top: 0;
    left: 0;
}

/* Títulos */
.politica-privacidade h1 {
    text-align: center;
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #ff8c00, #ff3b3b, #ff0080, #8a2be2);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: saudacaoAnimada 3s infinite linear alternate;
}

.politica-privacidade h2 {
    font-size: 22px;
    color: #444;
    margin-top: 25px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Parágrafos */
.politica-privacidade p {
    text-align: justify;
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Lista */
.politica-privacidade ul {
    margin-left: 20px;
    padding-left: 15px;
}

.politica-privacidade ul li {
    font-size: 16px;
    color: #555;
    padding: 5px 0;
}

/* Links */
.politica-privacidade a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, transform 0.2s;
}

.politica-privacidade a:hover {
    color: #ffcc00;
    transform: scale(1.05);
}

/* Animação do degradê */
@keyframes saudacaoAnimada {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Estilização do Rodapé */
footer {
    background: linear-gradient(90deg, #000000d0, #0d47a1);
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no rodapé */
footer::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease-in-out;
}

footer:hover::before {
    top: 0;
    left: 0;
}

/* Links do Rodapé */
footer a {
    color: #ffffffbd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

footer a:hover {
    color: #FFEB3B;
    transform: scale(1.05);
}
