/* CUSTOM STYLES SOBRE BULMA - ESTILO MACARRA PERO PRO */
:root {
    --neon-lime: #ccff00;
    --neon-lime-glow: rgba(204, 255, 0, 0.25);
    --black-bg: #0a0a0a;
    --dark-card: #1a1a1a;
}

/* RESETEO DE FONDOS BULMA */
body {
    background: var(--black-bg);
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    color: #f0f0f0;
}

/* NAVBAR PERSONALIZADA */
.navbar.is-dark {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(204, 255, 0, 0.25);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 30%, var(--neon-lime));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo-accent {
    color: var(--neon-lime);
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--neon-lime);
    letter-spacing: 1px;
}

.navbar-item {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.2s;
}

.navbar-item:hover {
    color: var(--neon-lime) !important;
    background: transparent !important;
}

.nav-active {
    border-bottom: 2px solid var(--neon-lime);
    color: var(--neon-lime) !important;
}

/* GALERÍA CUSTOM (manteniendo la estructura anterior) */
.gallery-wrapper {
    width: 100%;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.6);
}

.gallery-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    border-left: 4px solid var(--neon-lime);
    z-index: 3;
}
.slide-caption h3 {
    color: #ccff00;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--neon-lime);
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 60px;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: var(--neon-lime);
    color: black;
}

.prev { left: 1rem; }
.next { right: 1rem; }

.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.dot.active {
    background: var(--neon-lime);
    width: 28px;
    border-radius: 20px;
}

.pause-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    cursor: pointer;
    z-index: 10;
}

.pause-btn:hover {
    background: var(--neon-lime);
    color: black;
}

/* TAGLINE EFECTO GLITCH */
.glitch-text {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: var(--neon-lime);
    text-shadow: 0 0 5px var(--neon-lime-glow);
}

.tagline-desc {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #c0c0c0;
}

/* ACTION CARDS - ESTILO BRUTAL SOBRE BULMA */
.action-card {
    background: var(--dark-card);
    transition: all 0.25s ease;
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.action-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-lime);
    box-shadow: 0 12px 28px -10px rgba(204, 255, 0, 0.25);
}

.action-card .card-content {
    padding: 2rem 1.5rem;
}

.action-card .title {
    color: white;
    font-weight: 700;
}

.action-card p {
    color: #aaa;
    margin-top: 0.5rem;
}

.arrow-icon {
    transition: transform 0.2s;
    display: inline-block;
}

.action-card:hover .arrow-icon {
    transform: translateX(6px);
    color: var(--neon-lime);
}

/* FOOTER OSCURO */
.footer {
    background: #0c0c0c;
    border-top: 1px solid rgba(204, 255, 0, 0.3);
    margin-top: 2rem;
}

.footer-email {
    color: white;
    text-decoration: none;
    border-bottom: 1px dashed var(--neon-lime);
}

.footer-email:hover {
    color: var(--neon-lime);
}

/* RESPONSIVE AJUSTES */
@media (max-width: 768px) {
    .gallery-container {
        aspect-ratio: 4 / 3;
    }
    .slide-caption {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    .slide-caption .title {
        font-size: 0.9rem;
    }
    .action-card .card-content {
        padding: 1.5rem;
    }
}
/* ******************************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------------------------- */

/* ============================================
   ESTILOS EXCLUSIVOS PARA LA PÁGINA QUIÉNES SOMOS
   ============================================ */

/* Imagen de cabecera más pequeña y centrada */
.hero-small-image {
    max-width: 280px;
    width: 90%;
    border-radius: 24px;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
    border: 1px solid rgba(204, 255, 0, 0.2);
}

/* Tarjeta glassmorphism estándar */
.glass-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(204, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(204, 255, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.5);
}

/* Tarjeta alternativa con fondo ligeramente diferente */
.glass-card-alt {
    background: rgba(15, 15, 22, 0.85);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(204, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.glass-card-alt:hover {
    border-color: rgba(204, 255, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.5);
}

/* Icono superior en cada tarjeta */
.card-icon-wrapper {
    margin-bottom: 1rem;
}

.card-icon-wrapper i {
    background: rgba(204, 255, 0, 0.1);
    padding: 0.6rem;
    border-radius: 16px;
}

/* Imágenes dentro de tarjetas */
.card-image-radius {
    border-radius: 20px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.card-image-radius:hover {
    transform: scale(1.02);
}

/* Cita de cierre con borde neón */
.closing-quote {
    border-left: 4px solid #ccff00;
    border-radius: 16px;
}

/* Responsive: ajustes para móvil */
@media (max-width: 768px) {
    .glass-card, .glass-card-alt {
        padding: 1.2rem;
    }
    
    .hero-small-image {
        max-width: 200px;
    }
    
    .card-icon-wrapper {
        text-align: center;
    }
}

/* ============================================
   ESTILOS DEL MODAL / LIGHTBOX
   ============================================ */

/* Modal de Bulma personalizado para imágenes */
.modal-card {
    max-width: 90vw;
    width: auto;
}

.modal-card .modal-card-body {
    background: #0a0a0a;
}

.modal-image-display {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Cursor pointer para imágenes clickeables */
.modal-trigger {
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.modal-trigger:hover {
    transform: scale(1.01);
    filter: brightness(1.05);
}

/* Fondo del modal más oscuro */
.modal-background {
    background-color: rgba(0, 0, 0, 0.9);
}

/* Cabecera del modal */
.modal-card-head {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(204, 255, 0, 0.3);
}

.modal-card-title {
    color: #ccff00;
    font-weight: 700;
}

.modal-card-foot {
    background: #0a0a0a;
    border-top: 1px solid rgba(204, 255, 0, 0.2);
    justify-content: center;
}

/* ******************************************************************************************************************** */
/* -------------------------------------------------------------------------------------------------------------------- */

/* ============================================
   ESTILOS EXCLUSIVOS PARA LA PÁGINA DE CONTACTO
   ============================================ */

/* Tarjeta del formulario */
.form-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(204, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.form-card:hover {
    border-color: rgba(204, 255, 0, 0.4);
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.5);
}

/* Estilos de inputs de Bulma personalizados */
.input.is-dark, .textarea.is-dark, .select.is-dark select {
    background-color: #0a0a0a;
    border-color: #2a2a2a;
    color: #f0f0f0;
}

.input.is-dark:focus, .textarea.is-dark:focus, .select.is-dark select:focus {
    border-color: #ccff00;
    box-shadow: 0 0 0 0.125em rgba(204, 255, 0, 0.25);
}

.input.is-dark::placeholder, .textarea.is-dark::placeholder {
    color: #555;
}

/* Etiquetas del formulario */
.label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Select personalizado */
.select.is-dark select option {
    background-color: #0a0a0a;
    color: #f0f0f0;
}

/* Botones del formulario */
.button.is-warning {
    background-color: #ccff00;
    color: #0a0a0a;
    font-weight: 700;
    transition: all 0.2s ease;
}

.button.is-warning:hover {
    background-color: #b3e600;
    transform: scale(1.02);
}

.button.is-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    transition: all 0.2s ease;
}

.button.is-dark:hover {
    background-color: #2a2a2a;
    border-color: #ccff00;
}

/* Responsive para el formulario */
@media (max-width: 768px) {
    .form-card {
        padding: 1.2rem;
    }
    
    .buttons.is-centered {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .buttons.is-centered .button {
        width: 100%;
    }
}