/* ==========================================================================
   ASTADO LABS - HOJA DE ESTILOS GENERAL Y COMPLETA (Ecosistema Astado Dev)
   ========================================================================== */

/* --- 1. CONFIGURACIÓN DE FUENTES Y VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --bg-dark: #030408;          /* Fondo oscuro absoluto corporativo */
    --bg-card: #0b0f19;          /* Fondo de tarjetas para contraste */
    --accent: #38bdf8;           /* Celeste neón tecnológico */
    --text-main: #ffffff;        /* Texto principal */
    --text-muted: #94a3b8;       /* Texto secundario y descripciones */
    --border-light: rgba(255, 255, 255, 0.05);
    --font-title: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- 2. RESET GLOBAL Y COMPORTAMIENTO BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Evitar desbordes accidentales por elementos flotantes */
html, body {
    width: 100%;
    max-width: 100vw;
}

/* --- 3. COMPONENTES REUTILIZABLES --- */
.brand-overline {
    font-family: var(--font-title);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 700;
}

/* Botón Estilo Astado Dev */
.btn-primary {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-main);
    text-decoration: none;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.05);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}

/* Títulos de sección con barra lateral de acento */
.section-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* --- 4. HEADER Y COMPORTAMIENTO DEL MENÚ --- */
.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
    padding: 24px 6%;
    border-bottom: 1px solid var(--border-light);
    background: rgba(3, 4, 8, 0.8);
    backdrop-filter: blur(12px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Branding Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo img {
    height: 38px;
    width: auto;
}

.logo-info h1 {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-info h1 span {
    color: var(--accent);
}

.logo-info small {
    font-family: var(--font-title);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* Navegación de Escritorio */
.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.site-header nav ul li a {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header nav ul li a:hover {
    color: var(--accent);
}

/* Botón Hamburguesa */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Transformación a Cruz (X) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menú Lateral Desplegable */
.floating-nav {
    position: fixed;
    top: 0;
    right: -340px;
    width: 300px;
    height: 100vh;
    background: rgba(3, 4, 8, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border-light);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    pointer-events: none;
}

.floating-nav.open {
    right: 0 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.floating-nav a {
    font-family: var(--font-title);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s ease;
}

.floating-nav a:hover {
    color: var(--accent);
}

/* --- 5. SECCIÓN: ¿QUÉ ES LABS? (ABOUT) --- */
.about-labs-section {
    padding: 100px 6% 60px 6%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-labs-section h2 {
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 24px;
}

.about-labs-section h2 span {
    color: var(--accent);
}

.about-labs-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
}

/* --- 6. SECCIÓN: CATEGORÍAS (GRID) --- */
.categorias-section {
    padding: 60px 6% 120px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Estilo Premium de la Tarjeta */
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Gradiente Sutil Reactivo en Hover */
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(to bottom right, rgba(56, 189, 248, 0.25), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.category-card:hover::after {
    opacity: 1;
}

.card-content h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.category-card:hover .card-content h3 {
    color: var(--accent);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Link de Explorar */
.card-action {
    display: flex;
    align-items: center;
}

.btn-link {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link span {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.category-card:hover .btn-link span {
    transform: translateX(4px);
}

/* --- 7. FOOTER CORPORATIVO ASTADO DEV --- */
.site-footer {
    background: #06080d;
    border-top: 1px solid var(--border-light);
    padding: 80px 6% 40px 6%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-container h3, .footer-container h4 {
    font-family: var(--font-title);
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.footer-container h3 { font-size: 1.4rem; font-weight: 900;}
.footer-container h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--accent);}

.footer-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-container ul {
    list-style: none;
}

.footer-container ul li {
    margin-bottom: 12px;
}

.footer-container ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-container ul li a:hover {
    color: var(--accent);
}

/* Barra inferior de Copyright */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- 8. MEDIA QUERIES (OPTIMIZACIÓN RESPONSIVE) --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    /* Header ajustes móviles */
    .site-header {
        padding: 20px 5%;
    }
    
    .site-header nav {
        display: none !important; /* Esconde la barra horizontal */
    }

    /* Secciones */
    .about-labs-section {
        padding: 70px 5% 40px 5%;
    }

    .about-labs-section h2 {
        font-size: 1.9rem;
    }

    .about-labs-section p {
        font-size: 0.95rem;
    }

    .categorias-section {
        padding: 40px 5% 80px 5%;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .category-card {
        padding: 35px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ==========================================================================
   AJUSTES DE ESPACIADOS, HERO, PROYECTOS Y BLOQUES FALTANTES
   ========================================================================== */

/* --- MAQUETACIÓN HERO DE LABS --- */
.labs-hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 6%;
    max-width: 1400px;
    margin: 0 auto;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.03), transparent 60%);
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(56, 189, 248, 0.02);
    margin-bottom: 28px;
}

.labs-hero h2 {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.1;
}

.labs-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.labs-hero p strong {
    color: var(--text-main);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Botón secundario estilo link minimalista */
.btn-secondary {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 16px 24px;
}

.btn-secondary:hover {
    color: var(--accent);
}


/* --- SECCIÓN ABOUT AJUSTADA (Contenedor Estructurado) --- */
.labs-about {
    padding: 100px 6% 80px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}


/* --- SECCIÓN SECTOR PUBLICACIONES DESTACADAS --- */
.labs-projects {
    padding: 80px 6% 100px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* Tarjeta destacada horizontal */
.project-card.featured {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    transition: var(--transition-smooth);
}

.project-card.featured:hover {
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.project-image {
    width: 100%;
    max-width: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card.featured:hover .project-image img {
    transform: scale(1.03);
}

.project-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.project-type {
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.project-content h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 20px;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.project-content a {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.project-content a:hover {
    text-decoration: underline;
}


/* --- SECCIÓN SECTOR CONTACTO / CTA --- */
.labs-contact {
    padding: 60px 6% 120px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-box {
    background: radial-gradient(ellipse at top left, rgba(56, 189, 248, 0.05), transparent 70%), var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.contact-box h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-main);
    margin-bottom: 16px;
}

.contact-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 35px;
}


/* --- COMPORTAMIENTO PARA DISPOSITIVOS MÓVILES (BREAKPOINTS) --- */
@media (max-width: 992px) {
    .project-card.featured {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        min-height: 250px;
    }
    
    .project-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .labs-hero {
        padding: 80px 5% 60px 5%;
        min-height: auto;
    }

    .labs-hero h2 {
        font-size: 2.5rem;
    }

    .labs-hero p {
        font-size: 1rem;
    }

    .contact-box {
        padding: 40px 24px;
    }

    .contact-box h2 {
        font-size: 1.6rem;
    }
}


a{
      color: var(--text-muted);
    text-decoration:none;
}



/* ==========================================================================
   MODAL DE CONTACTO (ESTILO GLASSMORPHISM PREMIUM - ASTADO DEV)
   ========================================================================== */
.modal-contact {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 7, 18, 0.75); /* Fondo oscuro translúcido */
    backdrop-filter: blur(12px);            /* Desenfoque de fondo premium */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;                           /* Por encima del header y otros modales */
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Clase utilitaria para ocultar el modal mediante JS */
.modal-contact.hidden {
    display: none !important;
    opacity: 0;
}

.modal-contact .modal-content {
    background: rgba(19, 26, 38, 0.95);    /* Fondo integrado a la paleta de la app */
    border: 1px solid rgba(56, 189, 248, 0.2); /* Toque sutil de color accent en el borde */
    border-radius: 24px;
    width: 90%;
    max-width: 450px;                       /* Más angosto y estético para datos de contacto */
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    box-sizing: border-box;
    text-align: center;                     /* Contenido centrado */
    animation: modalContactScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animación de entrada suave hacia arriba y escalado */
@keyframes modalContactScaleUp {
    from { transform: scale(0.9) translateY(15px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Botón de cierre (X) */
.modal-contact .close-button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    user-select: none;
}

.modal-contact .close-button:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-ocupado); /* Color rojo de estados */
}

/* Título e introducción */
.modal-contact h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.modal-contact p:first-of-type {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Filas de canales de contacto */
.modal-contact p:not(:first-of-type) {
    background: rgba(11, 15, 25, 0.4);       /* Fondo sutil interno para destacar los canales */
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    border-radius: 14px;
    margin: 12px 0;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: border-color 0.25s ease;
}

.modal-contact p:not(:first-of-type):hover {
    border-color: rgba(56, 189, 248, 0.2);  /* Iluminación sutil al pasar sobre el bloque */
}

/* Enlaces internos del modal (Web y WhatsApp) */
.modal-contact a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.modal-contact a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

/* Estilo especial destacado si es el link directo de WhatsApp */
.modal-contact a[href*="wa.me"] {
    color: #10b981; /* Color verde vibrante tipo neón coincidente con tu --color-libre */
}

.modal-contact a[href*="wa.me"]:hover {
    color: #34d399;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}





/* BOTÓN HAMBURGUESA (Integrado en el flujo del header) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100; /* Asegura estar por encima del panel al abrirse */
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-main, #ffffff);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Transformación de Hamburguesa a Cruz (X) */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* PANEL LATERAL DE NAVEGACIÓN GENERAL (Por defecto cerrado) */
.floating-nav {
    position: fixed;
    top: 0;
    right: -320px; /* Escondido a la derecha */
    width: 300px;
    height: 100vh;
    background: rgba(3, 4, 8, 0.98);
    backdrop-filter: blur(12px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.floating-nav a:hover {
    color: var(--accent, #38bdf8);
}

/* Estado abierto inyectado por JavaScript */
.floating-nav.open {
    right: 0 !important;
}
