.elementor-7225 .elementor-element.elementor-element-bb7b590{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:15px;}.elementor-7225 .elementor-element.elementor-element-7e69666{--display:flex;}.elementor-7225 .elementor-element.elementor-element-7e69666.e-con{--align-self:center;}.elementor-7225 .elementor-element.elementor-element-390bef4 .editor_text{text-align:left;}/* Start custom CSS for container, class: .elementor-element-bb7b590 *//* ==========================================================================
   MASTER UI/UX - KALYPZUS "UNIVERSO DE SERVICIOS" (TERMS & PRIVACY)
   --------------------------------------------------------------------------
   • Tema: Deep Space / Dark Tech
   • Efecto 3D Flotante + Glassmorphism Avanzado
   • Fusión perfecta con Footer (Color #001A33)
========================================================================== */

:root {
    /* --- PALETA ESPACIAL KALYPZUS --- */
    --ui-space-dark: #001a33; 
    --ui-space-light: #0a192f;
    --ui-neon-cyan: #00d4ff;
    --ui-neon-blue: #0056cc;
    --ui-text-body: #94a3b8;
    --ui-text-heading: #ffffff;
    --ui-glass-bg: rgba(6, 14, 26, 0.65);
    
    /* --- SOMBRAS 3D Y RESPLANDORES --- */
    --glow-sm: 0 0 10px rgba(0, 212, 255, 0.2);
    --glow-md: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 212, 255, 0.15);
    --glow-xl: 0 25px 50px rgba(0, 0, 0, 0.9), inset 0 0 30px rgba(0, 212, 255, 0.05);
    
    /* --- TRANSICIONES FLUIDAS --- */
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   1. CONTENEDOR PRINCIPAL (NEBULOSA ESPACIAL)
============================================= */
.elementor-element-7e69666 {
    background-color: var(--ui-space-dark);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 212, 255, 0.08), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 86, 204, 0.12), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 212, 255, 0.05), transparent 60%);
    background-size: 200% 200%;
    animation: cosmicDrift 15s ease-in-out infinite alternate;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

@keyframes cosmicDrift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* FUSIÓN PERFECTA CON EL FOOTER (#001A33) */
.elementor-element-7e69666::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background: linear-gradient(to bottom, transparent 0%, #001a33 100%);
    pointer-events: none;
    z-index: 0;
}

/* =============================================
   2. TARJETA 3D FLOTANTE (GLASSMORPHISM)
============================================= */
.politica-privacidad {
    background: var(--ui-glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: clamp(40px, 8vw, 80px);
    border-radius: 30px;
    box-shadow: var(--glow-xl);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-spring), border-color 0.4s ease;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    z-index: 1;
}

.politica-privacidad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ui-neon-cyan), var(--ui-neon-blue), transparent);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 15px rgba(0, 212, 255, 0.5);
    opacity: 0.8;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50% { transform: translateY(-12px) rotateX(0deg); box-shadow: var(--glow-md); }
}

.politica-privacidad:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.01) rotateX(0deg);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0, 212, 255, 0.1);
}

/* =============================================
   3. TIPOGRAFÍA Y JERARQUÍA
============================================= */
.politica-privacidad h3 {
    color: var(--ui-text-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 4rem 0 1.5rem;
    padding-left: 0;
    display: flex;
    align-items: center;
    position: relative;
    counter-increment: section;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.politica-privacidad h3::before {
    content: "0" counter(section) ".";
    color: var(--ui-neon-cyan);
    font-size: 2.5rem;
    font-weight: 900;
    margin-right: 15px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    transition: transform 0.4s var(--ease-spring), color 0.3s;
}

.politica-privacidad h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
    margin-left: 20px;
}

.politica-privacidad h3:hover::before {
    transform: scale(1.1) translateX(5px);
    color: #ffffff;
}

.politica-privacidad p {
    color: var(--ui-text-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.politica-privacidad strong {
    color: #ffffff;
    font-weight: 700;
    background: rgba(0, 212, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.politica-privacidad strong:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    color: var(--ui-neon-cyan);
}

/* =============================================
   4. LISTAS (VIÑETAS 3D)
============================================= */
.politica-privacidad ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 15px;
}

.politica-privacidad li {
    position: relative;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-spring);
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

.politica-privacidad li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--ui-neon-cyan);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: transform 0.4s var(--ease-spring);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.8));
}

.politica-privacidad li:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 212, 255, 0.05);
    color: #ffffff;
}

.politica-privacidad li:hover::before {
    transform: scale(1.3);
}

/* =============================================
   5. ENLACES Y CORREOS (EFECTO NEÓN CLICK-GLOW)
============================================= */
.politica-privacidad a {
    color: var(--ui-neon-cyan);
    text-decoration: none;
    font-weight: 700;
    position: relative;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
    display: inline-block;
}

.politica-privacidad a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ui-neon-cyan);
    box-shadow: 0 0 10px var(--ui-neon-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-spring);
}

.politica-privacidad a:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.15);
    text-shadow: 0 0 15px var(--ui-neon-cyan), 0 0 30px var(--ui-neon-cyan);
    transform: translateY(-2px);
}

.politica-privacidad a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =============================================
   6. ANIMACIÓN DE ENTRADA (Performance Optimized)
============================================= */
@keyframes cosmicFadeIn {
    from { 
        opacity: 0; 
        transform: translate3d(0, 40px, -50px) rotateX(-5deg); 
    }
    to { 
        opacity: 1; 
        transform: translate3d(0, 0, 0) rotateX(2deg); 
    }
}

.politica-privacidad {
    animation: cosmicFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards, floatCard 6s ease-in-out infinite 1s;
}

/* =============================================
   7. MOBILE RESPONSIVE REFINEMENT
============================================= */
@media (max-width: 768px) {
    .elementor-element-7e69666 {
        padding: 40px 10px;
    }
    
    .politica-privacidad {
        padding: 30px 20px;
        border-radius: 20px;
        animation: cosmicFadeIn 1s ease-out forwards; 
    }

    .politica-privacidad h3 {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 2.5rem;
    }

    .politica-privacidad h3::before {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .politica-privacidad h3::after {
        display: none;
    }

    .politica-privacidad li {
        padding: 15px 15px 15px 45px;
    }
    
    .politica-privacidad li::before {
        left: 15px;
        top: 18px;
    }
    
    .politica-privacidad li:hover {
        transform: translateX(5px) scale(1.01); 
    }
}/* End custom CSS */