/* Estilos específicos para la página de política de privacidad */

.privacy-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
    color: #555;
    line-height: 1.6;
}

.privacy-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.privacy-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
}

.privacy-section .icon {
    color: var(--accent);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-section h2 {
    color: var(--accent);
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.privacy-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.privacy-section ul li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 8px;
}

.privacy-section ul li:last-child {
    border-bottom: none;
}

.privacy-contact {
    background: var(--red-soft);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.privacy-contact h2 {
    color: var(--accent);
    margin-bottom: 20px;
}

.privacy-contact ul {
    list-style: none;
    padding: 0;
}

.privacy-contact ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

.privacy-update {
    text-align: center;
    color: #666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Responsive styles */
@media (max-width: 768px) {
    .privacy-content {
        gap: 20px;
    }

    .privacy-section {
        padding: 20px;
    }

    .privacy-section h2 {
        font-size: 1.3em;
    }

    .privacy-contact {
        padding: 20px;
    }
}

/* Animaciones */
.privacy-section {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}