/* Estilos para Política de Privacidade e Termos de Uso */

.policy-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px; /* Espaço para o header fixo */
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../../assets/images/brasao-bg-opacity.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
}

.policy-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.policy-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.policy-content {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.policy-container {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

.policy-section p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.policy-section ul li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.dpo-box {
    background: linear-gradient(to right, #f8fafc, #e2e8f0);
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dpo-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dpo-info h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.dpo-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.dpo-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.dpo-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-header {
        padding: 120px 0 40px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        padding: 25px;
    }
    
    .dpo-box {
        flex-direction: column;
        text-align: center;
    }
}
