

body {
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    position: relative;
}

/* Botón de volver */
.back-btn {
    display: inline-flex;
    align-items: center;
    color: var(--gray-300);
    text-decoration: none;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.back-btn:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

/* Encabezado */
.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.section-divider span {
    width: 60px;
    height: 3px;
    background: var(--accent);
    display: inline-block;
    position: relative;
}

.section-divider span::before,
.section-divider span::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    top: 50%;
    transform: translateY(-50%);
}

.section-divider span::before {
    left: -10px;
}

.section-divider span::after {
    right: -10px;
}

.updated-date {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-style: italic;
}

/* Contenido */
.privacy-content {
    background-color: var(--medium-blue);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-section p {
    color: var(--gray-300);
    margin-bottom: 15px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.privacy-section li {
    color: var(--gray-300);
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* Footer */
.privacy-footer {
    margin-top: 40px;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Animaciones */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-container {
        padding: 40px 20px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
}
