/* Estilos para a seção de Política de Privacidade */
.priv_section {
    margin-top: 80px; /* Aumentado para compensar o header fixo */
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: calc(100vh - 240px); /* Garante altura mínima */
}

.priv_container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.priv_title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    font-weight: bold;
}

.priv_intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

.priv_subtitle {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
    font-weight: bold;
}

.priv_subtitle-small {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: bold;
}

.priv_paragraph {
    font-size: 1em;
    margin-bottom: 15px;
    text-align: justify;
}

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

.priv_list-item {
    margin-bottom: 10px;
}

.priv_content a {
    color: #3498db;
    text-decoration: none;
}

.priv_content a:hover {
    text-decoration: underline;
}

/* Media Queries para responsividade */
@media (max-width: 768px) {
    .priv_section {
        margin-top: 100px; /* Ajuste para mobile */
        padding: 20px 15px;
    }
    
    .priv_container {
        padding: 20px;
    }
    
    .priv_title {
        font-size: 2em;
    }
    
    .priv_subtitle {
        font-size: 1.5em;
    }
    
    .priv_subtitle-small {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .priv_section {
        margin-top: 90px; /* Ajuste para mobile pequeno */
        padding: 15px 10px;
    }
    
    .priv_container {
        padding: 15px;
    }
    
    .priv_title {
        font-size: 1.8em;
    }
    
    .priv_subtitle {
        font-size: 1.3em;
    }
    
    .priv_subtitle-small {
        font-size: 1.1em;
    }
    
    .priv_paragraph {
        font-size: 0.9em;
    }
}