/* --- VARIABLES Y CONFIGURACIÓN --- */
:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 35, 0.6);
    --primary: #00f3ff; /* Cian Neón */
    --secondary: #bc13fe; /* Violeta Neón */
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- FONDO ANIMADO (EFECTO RED) --- */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.1), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.1), transparent 25%);
    z-index: -1;
}

/* --- NAVEGACIÓN --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gradient);
    
    /* Compatibilidad completa para texto con gradiente */
    background-clip: text;                /* Estándar */
    -webkit-background-clip: text;        /* Chrome, Safari, Edge */
    color: transparent;                   /* Estándar */
    -webkit-text-fill-color: transparent; /* Chrome, Safari, Edge */
    
    text-transform: uppercase;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

/* --- HERO SECTION --- */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    padding-top: 80px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

h1 span {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.hero-text {
    max-width: 600px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary);
}

/* --- SECCIÓN PROYECTOS (GRID) --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 80px 0 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    margin: 10px auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.tag {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    border: 1px solid var(--primary);
}

.tag.planned {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(188, 19, 254, 0.1);
}

.btn-download {
    display: inline-block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(90deg, var(--primary), #00c3ff);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: opacity 0.3s;
}

.btn-download:hover {
    opacity: 0.9;
}

.btn-disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- FOOTER --- */
footer {
    background: #000;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    background: var(--gradient);
    
    /* Compatibilidad completa para texto con gradiente */
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.contact-info {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    color: #25D366;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    nav { justify-content: center; }
}

/* --- FORMULARIO DE CONTACTO --- */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg); /* Mismo fondo cristal que las tarjetas */
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
}

/* Estilos para Inputs, Selects y Textareas */
.input-group input, 
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
    transition: all 0.3s;
}

/* Efecto Focus (Cuando tocas el campo) */
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

/* Etiquetas flotantes (Labels) */
.input-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
    background: transparent;
}

/* Animación de la etiqueta hacia arriba */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary);
    background: #050505; /* Truco para tapar la línea del borde */
    padding: 0 5px;
}

/* Ajuste específico para el Select */
.input-group select {
    color: var(--text-muted);
}
.input-group select option {
    background: #000;
    color: white;
}

/* --- ANIMACIÓN RGB (CHROMA) --- */
@keyframes rgbFlow {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

/* Aplicamos la animación al Logo */
.logo {
    /* 5s es la velocidad (puedes cambiarlo a 3s para más rápido) */
    animation: rgbFlow 5s linear infinite; 
}

/* Opcional: Si quieres que el título grande también cambie */
h1 span {
    animation: rgbFlow 10s linear infinite; /* Más lento para no marear */
}

/* --- NUEVO LOGO EN BARRA DE NAVEGACIÓN --- */

.logo-container {
    display: flex;
    align-items: center;
    padding-top: 5px; /* Un pequeño ajuste de alineación */
}

.nav-logo {
    height: 70px; /* Altura ideal para el menú */
    width: auto;
    
    /* TRUCO PRO: Hace el fondo negro de la imagen transparente */
    mix-blend-mode: screen;
    
    /* Suaviza la animación del efecto */
    transition: all 0.4s ease;
    cursor: pointer;
}

/* EFECTO AL PASAR EL MOUSE */
.nav-logo:hover {
    /* Crece ligeramente */
    transform: scale(1.1) rotate(-2deg); 
    
    /* Añade un resplandor cian neón intenso */
    filter: drop-shadow(0 0 15px var(--primary)) brightness(1.2);
}

/* --- REDES SOCIALES (ICONOS OFICIALES) --- */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espacio entre iconos */
    margin: 20px 0;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted); /* Color inicial (Gris/Blanco) */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor; /* El SVG tomará el color del texto del botón */
}

/* EFECTOS AL PASAR EL MOUSE (COLORES OFICIALES) */
.social-btn:hover {
    transform: translateY(-5px); /* Flota hacia arriba */
    color: white;
    border-color: transparent;
}

/* Color Verde WhatsApp */
.social-btn.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Color Gradiente Instagram */
.social-btn.instagram:hover {
    background: #C13584; /* Color base */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 0 20px rgba(193, 53, 132, 0.6);
}

/* Color Azul Facebook */
.social-btn.facebook:hover {
    background: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
}

.alex-section {
    /* Un fondo ligeramente distinto para destacar */
    background: linear-gradient(to right, transparent, rgba(0, 243, 255, 0.05));
    border-radius: 20px;
    margin-bottom: 100px; /* Separación del formulario siguiente */
    padding-top: 50px;
    padding-bottom: 50px;
}

.alex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- Estilos del Texto --- */
.alex-text {
    flex: 1; /* Toma la mitad del espacio */
}

.alex-text h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
}

.alex-highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
    font-weight: 800;
    letter-spacing: 3px;
}

.alex-text h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 300;
}

.alex-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.alex-text strong {
    color: var(--text-main);
}

.alex-capabilities {
    list-style: none;
}

.alex-capabilities li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.alex-capabilities li strong {
    color: var(--primary);
}

/* --- Estilos de la Visualización (CEREBRO CSS) --- */
.alex-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.ai-brain {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* El núcleo central brillante */
.core-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary), 0 0 100px var(--secondary);
    animation: pulseCore 2s ease-in-out infinite alternate;
    z-index: 2;
}

/* Anillos giratorios */
.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-bottom-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.ring-1 { width: 100%; height: 100%; animation: spin 4s linear infinite; }
.ring-2 { width: 150%; height: 150%; animation: spin 7s linear infinite reverse; opacity: 0.7; }
.ring-3 { width: 200%; height: 200%; animation: spin 12s linear infinite; opacity: 0.4; border-width: 1px;}

/* Animaciones del cerebro */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseCore {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* --- RESPONSIVE para ALEX --- */
@media (max-width: 900px) {
    .alex-wrapper {
        flex-direction: column; /* En móvil, uno debajo del otro */
        text-align: center;
    }
    .alex-text h2 { font-size: 2.5rem; }
    
    .alex-capabilities li {
        justify-content: center; /* Centrar la lista en móvil */
    }
    
    .alex-visual {
        height: 300px; /* Más pequeño en móvil */
        margin-top: 30px;
    }
    
    .ai-brain { transform: scale(0.8); } /* Achicar el cerebro un poco */
}

/* --- ESTILOS PÁGINA PORTAFOLIO --- */

.project-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
}

/* Invierte el orden para el diseño zig-zag */
.project-showcase.reverse {
    flex-direction: row-reverse;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #aaa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Marco simulado de pantalla (Mockup) */
.mockup-screen {
    width: 100%;
    max-width: 450px;
    height: 250px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* Efecto hover en la imagen */
.mockup-screen:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.mockup-content {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Línea divisoria entre proyectos */
.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 40px 0;
}

/* Ajuste Responsive para Portafolio */
@media (max-width: 768px) {
    .project-showcase, 
    .project-showcase.reverse {
        flex-direction: column; /* En móvil, siempre columna */
        text-align: center;
    }
    
    .mockup-screen {
        height: 200px; /* Más bajo en celular */
    }

    .project-info ul {
        text-align: left; /* Listas alineadas a la izquierda aunque el título esté centrado */
        display: inline-block;
    }
}
/* --- ESTILOS DEL BOTÓN DE MENÚ --- */
.menu-toggle {
    display: none; /* Oculto en computadoras */
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 0 10px;
    transition: transform 0.3s;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* --- RESPONSIVE (CELULARES) --- */
@media (max-width: 768px) {
    /* Mostrar el botón de hamburguesa */
    .menu-toggle { 
        display: block; 
    } 

    /* Estilo del menú desplegable */
    .nav-links {
        display: none; /* Oculto por defecto */
        position: absolute;
        top: 100%; /* Justo debajo de la barra */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95); /* Fondo oscuro casi sólido */
        backdrop-filter: blur(15px); /* Efecto cristal */
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    /* Esta clase se agrega con JS para mostrar el menú */
    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }
    
    .nav-links a {
        margin: 15px 0; /* Separación vertical */
        font-size: 1.2rem; /* Letra más grande para dedos */
        width: 100%;
        text-align: center;
    }

    /* Animación de entrada suave */
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Ajuste para los nuevos iconos FontAwesome */
.social-btn i {
    font-size: 24px; /* Tamaño del icono */
    line-height: 45px; /* Para centrarlo verticalmente */
}

.alex-container {
    max-width: 500px;
    background: #0a0a0a;
    border: 1px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.alex-header {
    background: rgba(0, 243, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.online-dot {
    width: 10px; height: 10px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #25D366;
}

.chat-display {
    height: 350px;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.95rem;
}

.msg.alex {
    background: #1a1a1a;
    color: white;
    align-self: flex-start;
    border: 1px solid #333;
}

.msg.user {
    background: var(--primary);
    color: black;
    font-weight: bold;
    align-self: flex-end;
}

/* --- WIDGET FLOTANTE ALEX IA --- */
#alex-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

/* 1. La Burbuja (El Botón) */
.alex-bubble {
    width: 65px;
    height: 65px;
    background: #000;
    border: 2px solid var(--primary); /* Tu color cyan */
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.alex-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    background: var(--primary);
    color: #000;
}

/* Efecto de Pulso (Energía) */
.nucleus-pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulseWave 2s infinite;
}

@keyframes pulseWave {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Notificación roja (Globo) */
.notify-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #ff0032;
    color: white;
    font-size: 0.8rem;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    border: 2px solid #000;
}

/* 2. La Ventana de Chat */
.alex-window {
    position: absolute;
    bottom: 80px; 
    right: 0;
    width: 350px;
    height: 450px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    
    /* Animación de entrada */
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* Estado Abierto */
.alex-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Header del Chat */
.alex-header {
    background: linear-gradient(90deg, rgba(0,243,255,0.1), transparent);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nucleus-icon-small {
    color: var(--primary);
    font-size: 1.2rem;
    animation: spin 10s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.alex-info h3 { margin: 0; color: white; font-size: 1rem; }
.status-text { color: #25D366; font-size: 0.75rem; }

.close-btn {
    margin-left: auto;
    background: none; border: none;
    color: #aaa; font-size: 1.5rem; cursor: pointer;
}
.close-btn:hover { color: white; }

/* Cuerpo y Footer igual que antes... */
.chat-display { flex: 1; padding: 15px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.msg { padding: 10px 12px; border-radius: 12px; font-size: 0.9rem; max-width: 80%; line-height: 1.4; }
.msg.alex { background: rgba(255,255,255,0.05); color: #ddd; align-self: flex-start; border-left: 2px solid var(--primary); }
.msg.user { background: var(--primary); color: #000; align-self: flex-end; font-weight: 600; }

.chat-input-area { padding: 15px; display: flex; gap: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
.chat-input-area input { flex: 1; background: #000; border: 1px solid #333; color: white; padding: 10px; border-radius: 20px; outline: none; }
.chat-input-area input:focus { border-color: var(--primary); }
.chat-input-area button { background: var(--primary); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; color: #000; transition: transform 0.2s; }
.chat-input-area button:hover { transform: scale(1.1); }

/* Estilos Botón Parental VRN */
.floating-parental-btn {
    position: fixed;
    bottom: 30px;
    left: 25px;
    z-index: 999;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.parental-icon-wrap {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid #ff0055; /* Color acento diferente al cyan para resaltar */
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.parental-text {
    position: absolute;
    left: 60px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    background: #ff0055;
    padding: 5px 15px;
    border-radius: 4px;
    color: white;
}

/* Efecto al pasar el mouse */
.floating-parental-btn:hover .parental-icon-wrap {
    width: 180px;
    background: #ff0055;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.6);
}

.floating-parental-btn:hover .parental-text {
    opacity: 1;
    transform: translateX(0);
    left: 50px;
}

/* Brillo animado de fondo */
.parental-bg-glow {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ff0055;
    filter: blur(25px);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-parental 2s infinite;
}

@keyframes pulse-parental {
    0% { transform: scale(0.8); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.4; }
}

/* Responsive: En celulares se ve un poco más pequeño */
@media (max-width: 768px) {
    .parental-icon-wrap {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .floating-parental-btn:hover .parental-icon-wrap {
        width: 50px; /* No se expande en móvil para no molestar */
    }
    .parental-text { display: none; }
}