/* ======================================
   Estilos específicos para Política de Privacidad
   ====================================== */

/* Banner de Política de Privacidad */
.privacy-banner {
    position: relative;
    background: linear-gradient(135deg, #0073e6 0%, #005bb5 100%);
    padding: 80px 0;
    overflow: hidden;
}

.privacy-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.privacy-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.privacy-banner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.privacy-banner-icon svg {
    width: 40px;
    height: 40px;
    fill: #FFFFFF;
}

.privacy-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.privacy-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.privacy-banner-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.privacy-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.privacy-feature svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.privacy-feature span {
    font-size: 14px;
    font-weight: 600;
}

/* Sección de contenido de política */
.privacy-policy-content {
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h3 {
    color: #0073e6;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h3::before {
    content: "🔒";
    font-size: 20px;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.policy-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0073e6;
    font-weight: bold;
}

.policy-section strong {
    color: #333;
    font-weight: 600;
}

.policy-section a {
    color: #0073e6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: #0073e6;
    color: #005bb5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-banner {
        padding: 60px 0;
    }
    
    .privacy-banner h1 {
        font-size: 32px;
    }
    
    .privacy-banner p {
        font-size: 16px;
    }
    
    .privacy-banner-features {
        gap: 20px;
    }
    
    .privacy-feature {
        padding: 10px 15px;
    }
    
    .privacy-policy-content {
        padding: 25px;
        margin-top: -30px;
    }
    
    .policy-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-banner {
        padding: 40px 0;
    }
    
    .privacy-banner h1 {
        font-size: 28px;
    }
    
    .privacy-banner-features {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .privacy-policy-content {
        padding: 20px;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-banner-content {
    animation: fadeInUp 0.8s ease-out;
}

.privacy-feature {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.privacy-feature:nth-child(1) { animation-delay: 0.2s; }
.privacy-feature:nth-child(2) { animation-delay: 0.4s; }
.privacy-feature:nth-child(3) { animation-delay: 0.6s; }
