/* 
    Infinity Comunicación - Experiencia Visual 
    Estilo Premium, Cinematográfico y Futurista
*/

:root {
    --exp-bg-light: #E8EDF5;
    --exp-bg-dark: #CBD8E8;
    --exp-primary: #115CFA;
    --exp-accent: #00CCFF;
    --exp-text-main: #141618;
    --exp-text-muted: #5A6B80;
    --exp-glass-bg: rgba(255, 255, 255, 0.4);
    --exp-glass-border: rgba(255, 255, 255, 0.6);
    --exp-glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --exp-radius-lg: 24px;
    --exp-radius-pill: 140px;
}

/* Base Override for this page */
body.experiencia-page {
    color: var(--exp-text-main);
    overflow-x: hidden;
    font-family: var(--font-body), sans-serif;
    min-height: 100vh;
    background-color: #050505;
}

/* Capa de Niebla Blanca (Overlay) sobre el Video de Fondo */
body.experiencia-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.30) 0%, rgba(203, 216, 232, 0.30) 100%);
    z-index: -1;
    pointer-events: none !important;
}

body.experiencia-page .bg-video {
    opacity: 1.0;
    z-index: -2; /* Envía el video detrás del pseudo-elemento de niebla */
}

body.contacto-page .bg-video {
    display: none !important;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--exp-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--exp-glass-border);
    border-radius: var(--exp-radius-lg);
    box-shadow: var(--exp-glass-shadow);
}

/* HUD Background Elements */
.hud-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hud-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(17, 92, 250, 0.1);
    animation: rotateHUD linear infinite;
    will-change: transform;
    pointer-events: none !important;
}

.hud-circle-1 { width: 60vw; height: 60vw; animation-duration: 120s; }
.hud-circle-2 { width: 80vw; height: 80vw; animation-duration: 180s; animation-direction: reverse; border: 1px solid rgba(255, 255, 255, 0.3); }

@keyframes rotateHUD {
    0% { transform: rotate(0deg) translateZ(0); }
    100% { transform: rotate(360deg) translateZ(0); }
}

/* Navbar Minimalista (Override) */
.experiencia-page .navbar {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}
.experiencia-page .navbar .nav-links a {
    color: var(--exp-text-main);
    font-weight: 500;
}
.experiencia-page .navbar .dropdown-menu {
    background: var(--exp-glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--exp-glass-border);
}
.experiencia-page .navbar .dropdown-menu a {
    color: var(--exp-text-main) !important;
}
.experiencia-page .navbar .dropdown-menu a:hover {
    color: var(--exp-primary) !important;
    background: rgba(17, 92, 250, 0.08) !important;
}


/* Hero Section */
.exp-hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.exp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; /* Aumentado de 40px para más aire horizontal */
    align-items: center;
}

.exp-hero-content {
    animation: fadeUp 1s ease-out forwards;
    will-change: transform, opacity;
}

.exp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #141618 0%, #115CFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.exp-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--exp-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.exp-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.exp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--exp-primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--exp-radius-pill);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(17, 92, 250, 0.2);
}

.exp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(17, 92, 250, 0.3);
    color: white;
}

.exp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--exp-glass-bg);
    backdrop-filter: blur(8px);
    color: var(--exp-text-main);
    padding: 16px 32px;
    border-radius: var(--exp-radius-pill);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--exp-glass-border);
    transition: all 0.3s ease;
}

.exp-btn-secondary:hover {
    background: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Right Visual Area */
.exp-visual-area {
    position: relative;
    height: 650px; /* Un poco más alto para dar aire */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Abstract Core Object (Hologram Lens) */
.exp-core-object {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(17,92,250,0.2) 60%, rgba(0,204,255,0.1) 100%);
    box-shadow: 
        inset 0 0 50px rgba(255,255,255,0.5),
        0 20px 60px rgba(17,92,250,0.2),
        0 0 100px rgba(0,204,255,0.2);
    position: relative;
    animation: floatCore 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.4);
    will-change: transform;
}

.exp-core-inner {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.1));
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--exp-primary);
}

@keyframes floatCore {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -10px, 0) scale(1.01); } /* Movimiento más sutil */
}

/* Floating Cards */
.exp-float-card {
    position: absolute;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatCard 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    will-change: transform;
}

.exp-float-card:hover {
    transform: translateY(-5px) scale(1.05) !important; /* overrides inline transform from js if needed, or we handle via js */
    box-shadow: 0 15px 40px rgba(17, 92, 250, 0.15);
}


.exp-float-card i {
    font-size: 2rem;
    color: var(--exp-primary);
    background: rgba(255,255,255,0.5);
    padding: 12px;
    border-radius: 16px;
}

.exp-float-card-content h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--exp-text-main);
}

.exp-float-card-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--exp-text-muted);
}

/* Card positions - HUD System approach (Symmetrical & Separated) */
.card-top-left { top: 10%; left: -5%; animation-delay: 0s; } /* Separada del centro hacia la izquierda */
.card-top-right { top: 10%; right: -10%; animation-delay: 0.5s; } /* Más espacio hacia la derecha */
.card-bottom-left { bottom: 10%; left: -8%; animation-delay: 1s; }
.card-bottom-right { bottom: 10%; right: -12%; animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); } /* Movimiento más vertical y sutil */
}

/* Metrics Section */
.exp-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.exp-section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.exp-section-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--exp-text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
}

.exp-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.exp-process-card {
    padding: 40px;
    text-align: left;
    transition: all 0.4s ease;
}

.exp-process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.6);
}

.exp-process-card i {
    font-size: 2.5rem;
    color: var(--exp-primary);
    margin-bottom: 24px;
    display: inline-block;
}

.exp-process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.exp-process-card p {
    color: var(--exp-text-muted);
    line-height: 1.6;
}

/* Metrics Banner */
.exp-metrics-banner {
    background: linear-gradient(135deg, var(--exp-primary), var(--exp-accent));
    border-radius: var(--exp-radius-lg);
    padding: 60px;
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.exp-metrics-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
    opacity: 0.5;
}

.exp-metric-item {
    position: relative;
    z-index: 1;
}

.exp-metric-item h4 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.exp-metric-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Final */
.exp-cta-final {
    text-align: center;
    padding: 120px 0;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.reveal-exp {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-exp.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 992px) {
    .exp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }
    
    .exp-hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .exp-hero-actions {
        justify-content: center;
    }
    
    .exp-visual-area {
        height: auto;
        min-height: 500px;
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .exp-core-object {
        width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }

    /* Stack cards in a grid on mobile */
    .exp-float-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 300px;
        transform: none !important;
        animation: none !important;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .exp-hero-title {
        font-size: 2.5rem;
    }
    
    .exp-core-object {
        width: 220px;
        height: 220px;
    }
    
    .exp-float-card {
        padding: 12px 16px;
    }
    
    .exp-float-card i {
        font-size: 1.5rem;
        padding: 8px;
    }
    
    .exp-float-card-content h4 {
        font-size: 1rem;
    }
    
    .exp-float-card-content p {
        font-size: 0.75rem;
    }
    
    .exp-metrics-banner {
        padding: 40px 20px;
        gap: 30px;
    }
}

/* ================================================================
   CONTACTO PAGE — Extensión de experiencia.css
   Reutiliza: --exp-*, .glass-panel, .bg-video, .navbar, botones,
              .reveal-exp, .hud-background, .hud-circle
   ================================================================ */

/* Body override for contacto — Fondo Blanco Interactivo */
body.contacto-page {
    color: var(--exp-text-main);
    overflow-x: hidden;
    font-family: var(--font-body), sans-serif;
    min-height: 100vh;
    position: relative;
    background-color: #ffffff !important; /* Blanco puro absoluto — canvas de partículas al fondo */
    isolation: isolate;
}

/* Canvas de partículas matemáticas (trazos polares · spring · 60 FPS) */
.contacto-page .hud-background {
    display: none;
}

#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;  /* Recibe mousemove directamente en áreas vacías */
    z-index: -1;            /* Capa absolutamente inferior — todo el contenido queda encima */
    will-change: transform;
}

/* Asegura que el contenido de la página esté por encima del canvas */
#bg-canvas {
    display: block;
    pointer-events: none;
    z-index: 0;
    opacity: 0.96;
}

body.contacto-page .navbar,
body.contacto-page main,
body.contacto-page .footer {
    position: relative;
    z-index: 1;
}

/* Navbar override (idéntico al de experiencia) */
.contacto-page .navbar {
    position: relative !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9999 !important; /* Capas globales de cabecera con z-index extremadamente alto */
}
.contacto-page .navbar .nav-links a {
    color: var(--exp-text-main);
    font-weight: 500;
}
.contacto-page .navbar .dropdown-menu {
    background: var(--exp-glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--exp-glass-border);
    margin-top: 0 !important; /* Elimina margen físico */
    z-index: 100000 !important; /* Z-Index superior al título y cuerpo de página */
    transition: opacity 0.25s ease, transform 0.25s ease !important; /* Transición suave anti-errores */
}

/* Hover Bridge: Pseudo-elemento transparente para eliminar la brecha interactiva del hover */
.contacto-page .navbar .dropdown-menu::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 24px;
    background: transparent !important;
    z-index: -1;
}

.contacto-page .navbar .dropdown-menu a {
    color: var(--exp-text-main) !important;
}
.contacto-page .navbar .dropdown-menu a:hover {
    color: var(--exp-primary) !important;
    background: rgba(17, 92, 250, 0.08) !important;
}


/* ── Hero de Contacto ── */
.con-hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.con-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 0 !important;
    margin-bottom: 48px;
}

/* Eyebrow badge */
.con-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--exp-glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--exp-glass-border);
    border-radius: var(--exp-radius-pill);
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--exp-primary);
    animation: fadeUp 0.8s ease-out forwards;
    will-change: transform, opacity;
    margin-top: 0 !important;
}

.con-eyebrow i {
    font-size: 1rem;
    color: var(--exp-accent);
}

/* Título principal */
.con-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.08;
    font-weight: 800;
    margin: 0;
    margin-top: 0 !important;
    background: linear-gradient(135deg, #141618 0%, var(--exp-primary) 60%, var(--exp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    animation: fadeUp 0.9s 0.1s ease-out both;
    will-change: transform, opacity;
}

/* Subtítulo */
.con-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--exp-text-muted);
    max-width: 480px;
    margin: 0 auto;
    animation: fadeUp 0.9s 0.2s ease-out both;
    will-change: transform, opacity;
}

/* ── Grid dos columnas ── */
.con-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
    animation: fadeUp 1s 0.3s ease-out both;
    will-change: transform, opacity;
}

/* ── Bloque izquierdo: tarjetas de info ── */
.con-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.con-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.con-info-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(17, 92, 250, 0.12);
}

.con-info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--exp-primary), var(--exp-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(17, 92, 250, 0.25);
}

.con-info-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.con-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--exp-primary);
}

.con-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--exp-text-main);
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s;
}

.con-info-value:hover {
    color: var(--exp-primary);
}

/* ── CTA en el stack izquierdo ── */
.con-cta-wrapper {
    margin-top: 8px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Bloque derecho: Mapa ── */
.con-map-wrapper {
    border-radius: var(--exp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--exp-glass-border);
    box-shadow: var(--exp-glass-shadow), 0 0 50px 2px rgba(0, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    position: relative;
    /* Altura fija para que se vea bien a lado de las 3 tarjetas */
    height: 460px;
}

/* Overlay neón sobre el mapa */
.con-map-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 92, 250, 0.06) 0%,
        rgba(0, 204, 255, 0.04) 100%
    );
    pointer-events: none !important;
    border-radius: var(--exp-radius-lg);
}

.con-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    /* Filtro que convierte el mapa a estilo neón oscuro */
    filter: grayscale(1) invert(1) brightness(0.8);
}

/* ── Footer idéntico a Experiencia ── */
.contacto-page .footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding-top: 60px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .con-grid {
        grid-template-columns: 1fr;
    }

    .con-map-wrapper {
        height: 320px;
    }

    .con-hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
}

@media (max-width: 600px) {
    .con-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .con-hero-inner {
        margin-bottom: 48px;
    }

    .con-info-card {
        padding: 20px;
    }

    .con-map-wrapper {
        height: 260px;
    }

    .con-cta-wrapper {
        flex-direction: column;
    }
}

/* ── Navbar de contacto — Tema Claro (fondo blanco) ── */
.contacto-page .navbar {
    position: relative !important;
    background: rgba(255, 255, 255, 0.75) !important;
    border-bottom: 1px solid rgba(17, 92, 250, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Contacto particle field inspired by a dark interactive wave. */
body.contacto-page {
    color: #eef5ff;
    background:
        linear-gradient(180deg, rgba(3, 8, 20, 0.96), rgba(0, 3, 12, 0.99)),
        #02050d !important;
}

body.contacto-page #bg-canvas {
    display: block;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.contacto-page .navbar {
    background: rgba(2, 7, 18, 0.7) !important;
    border-bottom: 1px solid rgba(130, 190, 255, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contacto-page .navbar .nav-links a,
.contacto-page .navbar .dropdown-menu a {
    color: rgba(238, 245, 255, 0.92) !important;
}

.contacto-page .navbar .dropdown-menu {
    background: rgba(3, 11, 27, 0.92);
    border: 1px solid rgba(130, 190, 255, 0.18);
}

.contacto-page .menu-toggle span {
    background: #eef5ff !important;
}

.contacto-page .brand-logo img {
    filter: brightness(0) invert(1) !important;
}

.contacto-page .glass-panel,
.contacto-page .con-eyebrow {
    background: rgba(4, 14, 35, 0.6);
    border-color: rgba(116, 195, 255, 0.22);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.contacto-page .con-hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #8ad0ff 38%, var(--exp-primary) 72%, var(--exp-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.contacto-page .con-hero-subtitle,
.contacto-page .footer p,
.contacto-page .footer a {
    color: rgba(216, 232, 255, 0.74) !important;
}

.contacto-page .con-info-label {
    color: #7fc9ff;
}

.contacto-page .con-info-value,
.contacto-page .footer h3,
.contacto-page .footer h4 {
    color: #eef5ff;
}

.contacto-page .con-info-card:hover {
    background: rgba(5, 19, 48, 0.76);
    box-shadow: 0 20px 50px rgba(0, 165, 255, 0.14);
}

.contacto-page .con-map-wrapper {
    border-color: rgba(116, 195, 255, 0.2);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 50px 2px rgba(0, 204, 255, 0.18);
}

.contacto-page .exp-btn-secondary {
    background: rgba(4, 14, 35, 0.68);
    border-color: rgba(116, 195, 255, 0.22);
    color: #eef5ff;
}

.contacto-page .footer {
    border-top-color: rgba(130, 190, 255, 0.16);
}
