* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 5%;
    position: absolute; 
    top: 0;
    z-index: 1000;
    background-color: transparent; 
}

.header-container nav a {
    text-decoration: none;
    color: white; 
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all color 0.3s ease;
    position: relative;
}

.header-container nav a:hover {
    color: #00d4ff;
    transform: translateY(-3px);
}

.header-container nav a, 
.header-container nav a:visited, 
.header-container nav a:active, 
.header-container nav a:link {
    text-decoration: none;
    color: white !important;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    outline: none;
}

.img-branco {
    filter: brightness(0) invert(1);
}

@keyframes reveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.btn-fale, .btn-ver-mais {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    text-align: center;
    
    background: linear-gradient(90deg, #1e67b1, #00d4ff) !important;
    color: white !important;
    text-decoration: none !important;
    
    padding: 13px 28px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.btn-fale:visited, .btn-ver-mais:visited,
.btn-fale:active, .btn-ver-mais:active,
.btn-fale:link {
    color: white !important;
    text-decoration: none !important;
}

.btn-fale:hover, .btn-ver-mais:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.5);
    color: white !important;
}

.btn-fale::after, .btn-ver-mais::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease-in-out;
}

.btn-fale:hover::after, .btn-ver-mais:hover::after {
    left: 100%;
}

.btn-fale a, .btn-ver-mais a {
    color: white !important;
    text-decoration: none !important;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight {
    background-color: rgba(0, 251, 255, 0.3); 
    border-radius: 2px;
    padding: 2px 8px;
    display: inline-block;
    transform: rotate(-1deg);
}

#politicas {
    padding: 150px 5% 100px 5%; 
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff, #0a2a43);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    text-align: center;
}

.politicas-header {
    margin-bottom: 60px;
    color: white;
}

.politicas-header h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.politicas-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.politicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.politica-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.politica-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.politica-icon {
    font-size: 45px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.politica-card h3 {
    color: #0a2a43;
    font-size: 22px;
    margin-bottom: 15px;
}

.politica-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; 
}

.btn-ler-mais {
    text-decoration: none;
    color: #1e67b1;
    font-weight: bold;
    font-size: 14px;
    border: 2px solid #1e67b1;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-ler-mais:hover {
    background-color: #1e67b1;
    color: white;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.leitura-container {
    padding: 150px 5% 80px;
    background: linear-gradient(-45deg, #0a2a43, #1e67b1, #00d4ff);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}
.documento-papel {
    background: white;
    max-width: 950px;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.documento-papel h1 { 
    color: #0a2a43; 
    margin-bottom: 10px; 
    border-bottom: 2px solid #00d4ff; 
    padding-bottom: 10px; 
}

.documento-papel h3 { 
    color: #1e67b1; 
    margin-top: 40px;
    margin-bottom: 15px; 
    text-transform: uppercase; 
    font-size: 1.1rem; 
    border-left: 4px solid #00d4ff; 
    padding-left: 15px; 
}

.documento-papel p { 
    margin-bottom: 15px; 
}

.documento-papel ul { 
    margin-bottom: 20px; 
    padding-left: 25px; 
    list-style-type: none; 
}
.documento-papel ul li {
    margin-bottom: 8px;
    position: relative; 
}
.documento-papel ul li::before { 
    content: "•"; color: #00d4ff; 
    font-weight: bold; 
    position: absolute; 
    left: -20px; 
}

.alfabetica { 
    padding-left: 20px; 
}

.alfabetica li { 
    list-style-type: lower-alpha; 
}

.alfabetica li::before { 
    content: "" !important; 
}
.btn-voltar { 
    display: inline-block;
     margin-bottom: 20px; 
     color: white; 
     text-decoration: none; 
     font-weight: bold; 
}

@media print {
    .btn-voltar, .btn-ler-mais, .header-container, .footer-completo, #backToTop { 
        display: none; 
}
    .leitura-container { 
        padding: 0; 
        background: white;
}
    .documento-papel { 
        box-shadow: none; 
        padding: 0; }
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: #00d4ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
}

#backToTop img {
    width: 60%;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-simple {
    background-color: #0a2a43;
    color: white;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.footer-completo {
    background-color: #0a2a43; 
    color: white;
    padding: 80px 5% 20px 5%;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; 
    gap: 40px;
}

.footer-col h3 {
    color: #00d4ff; 
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #00d4ff;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-descricao {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00d4ff;
    padding-left: 8px; 
}

.footer-col p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 20px; 
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #00d4ff;
    border-color: #00d4ff;
    color: #0a2a43;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff1a;
    padding: 15px;
    margin-top: 30px;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom a,
.footer-bottom a:visited,
.footer-bottom a:active,
.footer-bottom a:link {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    gap: 10px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.lang-btn img {
    width: 30px;
    border-radius: 4px;
}

/* MENU */
.lang-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 150px;
    z-index: 999;
}

.lang-menu.show {
    display: block;
}

/* OPÇÕES */
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
}

.lang-option img {
    width: 25px;
}

.lang-option:hover {
    background: #f2f2f2;
}