
.privacy-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
}

.privacy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation: bgShift 20s ease-in-out infinite;
}

/* Contenedor principal de contenido */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px 120px;
    position: relative;
    z-index: 1;
}

/* Título principal */
.privacy-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

/* Subtítulos de sección */
.privacy-content h2 {
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
    font-weight: 700;
    transition: all 0.3s;
}

.privacy-content h2:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    transform: translateX(5px);
}

/* Párrafos y listas */
.privacy-content p,
.privacy-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 20px;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 30px;
    list-style: none;
}

.privacy-content li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

/* Bullets personalizados con gradiente */
.privacy-content li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
}

/* Texto en negrita */
.privacy-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Enlaces */
.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: all 0.3s;
    font-weight: 500;
}

.privacy-content a:hover {
    color: var(--secondary);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Tarjetas con glassmorphism */
.privacy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo en hover */
.privacy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.privacy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.privacy-card:hover::before {
    opacity: 1;
    animation: rotate 4s linear infinite;
}

/* Nota de actualización */
.actualizacion {
    margin-top: 60px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    font-style: italic;
    color: rgba(248, 250, 252, 0.9);
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
    transition: all 0.3s;
}

.actualizacion:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

/* Botón de regreso */
.back-button {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    position: relative;
    overflow: hidden;
}

.back-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.back-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.6);
}

.back-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Animación de rotación para efectos hover */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*responsive design*/
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 30vh;
        padding-top: 60px;
    }

    .privacy-content {
        padding: 60px 20px 80px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 1rem;
    }

    .privacy-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .actualizacion {
        padding: 20px;
        font-size: 0.95rem;
    }

    .back-button {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-content h1 {
        font-size: 1.75rem;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-card {
        padding: 15px;
        border-radius: 15px;
    }

    .privacy-content ul {
        margin-left: 15px;
    }

    .privacy-content li {
        padding-left: 25px;
    }
}
