/* ==========================================================================
   1. VARIABLES Y CONFIGURACIÓN BASE
   ========================================================================== */
:root {
    --bg-dark-core: #0b0e14;
    --text-primary: #ffffff;
    --brand-blue: #16698D;
    --azul-marca: #1d63ed;
    --border-line: rgba(255, 255, 255, 0.1);
    
    /* Fuentes */
    --font-heading: 'Oswald', sans-serif;
    --font-content: 'Roboto', sans-serif;
    --fuente-titulos: 'Oswald', sans-serif;
    --fuente-contenido: 'Roboto', sans-serif;
}

body {
    background-color: var(--bg-dark-core);
    color: var(--text-primary);
    font-family: var(--font-content);
    margin: 0;
    padding-top: 60px;
}

/* ==========================================================================
   FONDO ANIMADO OPTIMIZADO (GPU ACCELERATED)
   ========================================================================== */
.fondo-animado-pro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2; /* Se mantiene detrás de las partículas del contador y del contenido */
    overflow: hidden;
    pointer-events: none; /* Evita que interfiera con los clics en los botones o enlaces */
    background-color: var(--bg-dark-core);
}

/* Base de los orbes brillantes */
.orbe {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px); /* Difumina los bordes para crear el efecto de brillo ambiental */
    opacity: 0.12; /* Sutil para no arruinar el contraste del texto blanco */
    will-change: transform; /* Fuerza al navegador a usar aceleración por hardware */
}

/* Posiciones y tamaños iniciales utilizando colores de tu marca */
.orbe-1 {
    width: 500px;
    height: 500px;
    background: var(--azul-marca);
    top: -10%;
    left: -10%;
    animation: derivaGpuUno 25s ease-in-out infinite alternate;
}

.orbe-2 {
    width: 600px;
    height: 600px;
    background: var(--brand-blue);
    bottom: -15%;
    right: -10%;
    animation: derivaGpuDos 30s ease-in-out infinite alternate;
}

.orbe-3 {
    width: 350px;
    height: 350px;
    background: #7000ff; /* Un toque morado sutil que combina genial con el entorno geek */
    top: 40%;
    left: 50%;
    animation: derivaGpuTres 20s ease-in-out infinite alternate;
}

/* Keyframes usando estrictamente 'transform' (Cero Lag) */
@keyframes derivaGpuUno {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 60px) scale(1.15); }
    100% { transform: translate(-50px, 120px) scale(0.9); }
}

@keyframes derivaGpuDos {
    0% { transform: translate(0, 0) scale(1.1); }
    50% { transform: translate(-120px, -80px) scale(0.85); }
    100% { transform: translate(40px, 40px) scale(1); }
}

@keyframes derivaGpuTres {
    0% { transform: translate(-50%, -50%) scale(0.9); }
    50% { transform: translate(-30%, -60%) scale(1.2); }
    100% { transform: translate(-60%, -40%) scale(1); }
}


/* ==========================================================================
   2. NAVBAR PRINCIPAL & BOTÓN MENÚ
   ========================================================================== */
.navbar {
    background-color: var(--bg-dark-core);
    border-bottom: 1px solid var(--border-line);
    height: 60px;
    z-index: 1030;
}

.navbar-toggler-custom {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 14px;
    padding: 0;
    cursor: pointer;
}

.navbar-toggler-custom span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
}

.navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.navbar-search-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0;
    cursor: pointer;
}

/* ==========================================================================
   3. MENÚ LATERAL DESPLEGABLE (OVERLAY)
   ========================================================================== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark-core);
    z-index: 1040;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.menu-overlay.active {
    transform: translateX(0);
}

.menu-header {
    height: 60px;
    border-bottom: 1px solid var(--border-line);
}

.menu-close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2.2rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.menu-item {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item:hover {
    color: var(--brand-blue);
}

.pixel-indicator {
    opacity: 0.4;
    font-size: 1.4rem;
}

.menu-divider {
    border-top: 1px solid var(--border-line);
    opacity: 1;
}

.btn-blue-pill {
    background-color: var(--brand-blue);
    border: none;
    color: var(--text-primary);
    border-radius: 50px;
    padding: 8px 36px;
    font-size: 1rem;
}

.btn-blue-pill:hover {
    background-color: rgba(29, 99, 237, 0.85);
    color: var(--text-primary);
}

.btn-outline-pill {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    border-radius: 50px;
    padding: 10px 36px;
    max-width: 280px;
    font-size: 0.95rem;
}

.btn-outline-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* ==========================================================================
   4. SLIDER / HERO IMAGE
   ========================================================================== */
.hero-image-container {
    width: 100%;
    background-color: #000000;
}

.hero-image-container img {
    object-fit: cover;
    max-height: 480px;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.btn-slider {
    background: rgba(11, 14, 20, 0.85);
    border: 1px solid var(--border-line);
    color: var(--text-primary);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ==========================================================================
   5. PRESENTACIÓN & ELEMENTOS CÓMIC
   ========================================================================== */
.cuerpo-contenido {
    text-align: left;
    position: relative;
    z-index: 2;
}

.titulo-expo {
    font-family: var(--fuente-titulos);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-shadow: 4px 4px 0px var(--azul-marca);
}

.descripcion-expo {
    font-family: var(--fuente-contenido);
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
}

.insignia-puntos {
    display: inline-block;
    background-color: var(--azul-marca);
    color: var(--text-primary);
    font-family: var(--fuente-titulos);
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 10px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--text-primary);
    border-radius: 4px;
    box-shadow: 3px 3px 0px #000000;
    transform: rotate(-1.5deg);
    margin: 0 4px;
}

.btn-visitar-expo {
    background-color: var(--azul-marca);
    border: 3px solid #000000;
    color: var(--text-primary);
    border-radius: 12px;
    min-width: 280px;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 5px 5px 0px var(--text-primary);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-visitar-expo:hover {
    background-color: #1552cc;
    color: var(--text-primary);
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--text-primary);
}

.btn-visitar-expo:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px var(--text-primary);
}

.icono-cheuron {
    font-size: 1.3rem;
    line-height: 1;
}

/* ==========================================================================
   6. CONTADOR (CUENTA REGRESIVA)
   ========================================================================== */
.seccion-cuenta-regresiva {
    background-color: rgba(255, 255, 255, 0.01);
    border: 3px dashed rgba(29, 99, 237, 0.3);
    border-radius: 16px;
}

.titulo-cuenta-regresiva {
    font-family: var(--fuente-titulos);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.cuadrado-cuenta-regresiva {
    width: 75px;
    height: 75px;
    background-color: var(--bg-dark-core);
    border: 3px solid var(--azul-marca);
    border-radius: 12px;
    box-shadow: 4px 4px 0px var(--azul-marca);
    position: relative;
}

.interior-cuadrado {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.numero-cuenta-regresiva {
    font-family: var(--fuente-titulos);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-primary);
}

.etiqueta-cuenta-regresiva {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--azul-marca);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Animaciones del Contador */
.cuad-anim-1 { animation: flotarUno 3.5s ease-in-out infinite alternate; }
.cuad-anim-2 { animation: flotarDos 4.5s ease-in-out infinite alternate; }
.cuad-anim-3 { animation: flotarTres 3.9s ease-in-out infinite alternate; }
.cuad-anim-4 { animation: flotarCuatro 4.2s ease-in-out infinite alternate; }

@keyframes flotarUno {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(-1.5deg); }
}
@keyframes flotarDos {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}
@keyframes flotarTres {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-7px) scale(1.04); }
}
@keyframes flotarCuatro {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-9px) translateX(3px); }
}

/* Partículas de Fondo */
.particula-cuadrada {
    position: absolute;
    background-color: rgba(29, 99, 237, 0.15);
    border: 2px solid rgba(29, 99, 237, 0.3);
    border-radius: 4px;
    z-index: -1;
    animation: rotacionParticula 8s linear infinite;
}

.cuad-1 { width: 30px; height: 30px; top: 15%; left: 8%; animation-duration: 6s; }
.cuad-2 { width: 45px; height: 45px; bottom: 10%; right: 10%; animation-duration: 10s; }
.cuad-3 { width: 20px; height: 20px; top: 60%; left: 85%; animation-duration: 5s; }

@keyframes rotacionParticula {
    0% { transform: rotate(0deg) translateY(0px); opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { transform: rotate(360deg) translateY(-20px); opacity: 0.3; }
}

/* ==========================================================================
   7. TARJETAS DE INVITADOS (COMIC CARDS)
   ========================================================================== */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 12px;
}

.category-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 12px;
    color: var(--text-primary);
}

.comic-card {
    background-color: var(--bg-dark-core);
    border: 3px solid var(--brand-blue);
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    box-shadow: 5px 5px 0px var(--brand-blue);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comic-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px var(--brand-blue);
}

.comic-card-img-container {
    width: 100%;
    height: 0;
    padding-bottom: 130%;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    border-bottom: 3px solid var(--bg-dark-core);
}

.comic-card-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comic-card-footer-bar {
    background-color: var(--brand-blue);
    height: 24px;
    width: 100%;
}

.comic-card-title {
    margin-top: 12px;
    font-family: var(--font-content);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-align: center;
}

/* ==========================================================================
   8. RESPONSIVIDAD (MEDIA QUERIES)
   ========================================================================== */
@media (min-width: 768px) {
    /* Ajustes generales del layout y Navbar */
    .navbar { height: 75px; }
    body { padding-top: 75px; }
    .menu-header { height: 75px; }
    .logo-img { max-height: 48px; }
    
    /* Menú lateral en Desktop */
    .menu-overlay {
        width: 420px;
        border-right: 1px solid var(--border-line);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* Tipografías y bloque de texto principal */
    .titulo-expo {
        font-size: 5.5rem;
        text-shadow: 6px 6px 0px var(--azul-marca);
    }
    .descripcion-expo {
        font-size: 1.35rem;
    }
    .section-title {
        font-size: 2.4rem;
    }

    /* Secciones e Invitados */
    .category-title { font-size: 2.2rem; }
    .comic-card-footer-bar { height: 28px; }
    .comic-card-title { font-size: 1.2rem; }

    /* Contador en Desktop */
    .titulo-cuenta-regresiva { font-size: 2.2rem; }
    .cuadrado-cuenta-regresiva { width: 110px; height: 110px; }
    .numero-cuenta-regresiva { font-size: 2.8rem; }
    .etiqueta-cuenta-regresiva { font-size: 0.85rem; }
}

/* ==========================================================================
   9. TARJETAS DE PRECIOS Y BOLETOS (TICKETS COMPONENT)
   ========================================================================== */
.ticket-card {
    background-color: #11151d;
    border: 3px solid var(--brand-blue);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    box-shadow: 5px 5px 0px var(--brand-blue);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 15px;
}

.ticket-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px var(--brand-blue);
}

/* Variación para el boleto recomendado (2 Day Pass) */
.highlight-ticket {
    border-color: var(--azul-marca);
    box-shadow: 5px 5px 0px var(--azul-marca);
}
.highlight-ticket:hover {
    box-shadow: 8px 8px 0px var(--azul-marca);
}

/* Variación Ultra Premium para el Sonic VIP */
.vip-card {
    border-color: #ffaa00;
    box-shadow: 5px 5px 0px #ffaa00;
    background: linear-gradient(145deg, #11151d 0%, #1a160d 100%);
}
.vip-card:hover {
    box-shadow: 8px 8px 0px #ffaa00;
}

/* Badges / Etiquetas superiores de las tarjetas */
.ticket-badge {
    position: absolute;
    top: -14px;
    left: 20px;
    font-family: var(--fuente-titulos);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 2px 12px;
    border: 2px solid #000000;
    border-radius: 6px;
    box-shadow: 2px 2px 0px #000000;
}

.badge-azul { background-color: var(--brand-blue); color: #fff; }
.badge-morado { background-color: var(--azul-marca); color: #fff; }
.badge-rojo { background-color: #dc3545; color: #fff; }
.badge-vip { background-color: #ffaa00; color: #000000; }

/* Contenido de la cabecera del boleto */
.ticket-name {
    font-family: var(--fuente-titulos);
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.ticket-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 20px;
}

.ticket-vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.ticket-vip-benefits span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffaa00;
}

/* Caja de Precios */
.ticket-price-box {
    font-family: var(--fuente-titulos);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 2px;
}

.ticket-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.ticket-mxn {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    align-self: flex-end;
    margin-bottom: 6px;
    margin-left: 4px;
}

.ticket-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

/* Botones de acción dentro de las tarjetas */
.btn-ticket-action {
    background-color: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--text-primary);
    font-family: var(--fuente-titulos);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-ticket-action:hover {
    background-color: var(--brand-blue);
    color: var(--text-primary);
}

.highlight-ticket .btn-ticket-action {
    border-color: var(--azul-marca);
    background-color: var(--azul-marca);
}

.highlight-ticket .btn-ticket-action:hover {
    background-color: #1552cc;
    border-color: #1552cc;
}

.vip-action {
    border-color: #ffaa00;
    background-color: #ffaa00;
    color: #000000;
}

.vip-action:hover {
    background-color: #e69900;
    border-color: #e69900;
    color: #000000;
}




/* ==========================================================================
   10. FOOTER ESTILO CÓMIC (BOTONES TRANSPARENTES Y ANIMADOS)
   ========================================================================== */
.footer-comic {
    background-color: var(--bg-dark-core);
    border-top: 4px solid var(--brand-blue);
    position: relative;
    z-index: 2;
}

.footer-titulo {
    font-family: var(--fuente-titulos);
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

/* Caja contenedora de la ubicación */
.bg-location-box {
    background-color: transparent; /* Volvemos transparente también esta caja si lo deseas */
    border: 2px solid var(--brand-blue);
    border-radius: 12px;
    box-shadow: 4px 4px 0px var(--brand-blue);
}

.icon-box-comic {
    background-color: var(--azul-marca);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
    border-radius: 8px;
    box-shadow: 2px 2px 0px #000000;
}

.location-venue {
    font-family: var(--fuente-contenido);
    font-size: 1.05rem;
    color: var(--text-primary);
}

.location-city {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}


.btn-social-comic {
    background-color: transparent; 
    border: none;                  
    box-shadow: none;              
    color: var(--text-primary);    
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem; /* 👈 Esto controla el tamaño de los logos de la librería */
    
    /* Mantiene tus animaciones intactas */
    animation: flotarRedes 4s ease-in-out infinite alternate;
    will-change: transform;
    transition: color 0.2s ease;   
}

/* El resto de tus estilos (:hover, :active y @keyframes) se quedan exactamente igual */
.btn-social-comic:nth-child(1) { animation-delay: 0s; }
.btn-social-comic:nth-child(2) { animation-delay: 0.5s; }
.btn-social-comic:nth-child(3) { animation-delay: 1s; }

.btn-social-comic:hover {
    background-color: transparent;
    color: var(--azul-marca);      
    animation: pulsoGeek 0.5s ease-in-out infinite alternate;
}

.btn-social-comic:active {
    transform: scale(0.85);        
    animation: none;
}


.btn-social-comic {
    background-color: transparent; 
    border: none;                  
    box-shadow: none;              
    color: var(--text-primary);    
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem; /* 👈 Esto controla el tamaño de los logos de la librería */
    
    /* Mantiene tus animaciones intactas */
    animation: flotarRedes 4s ease-in-out infinite alternate;
    will-change: transform;
    transition: color 0.2s ease;   
}

/* El resto de tus estilos (:hover, :active y @keyframes) se quedan exactamente igual */
.btn-social-comic:nth-child(1) { animation-delay: 0s; }
.btn-social-comic:nth-child(2) { animation-delay: 0.5s; }
.btn-social-comic:nth-child(3) { animation-delay: 1s; }

.btn-social-comic:hover {
    background-color: transparent;
    color: var(--azul-marca);      
    animation: pulsoGeek 0.5s ease-in-out infinite alternate;
}

.btn-social-comic:active {
    transform: scale(0.85);        
    animation: none;
}




.btn-social-comic {
    background-color: transparent; /* Sin fondo */
    border: none;                  /* Eliminamos el cuadro/borde */
    box-shadow: none;              /* Eliminamos la sombra cuadrada */
    color: var(--text-primary);    /* El color base lo toma del texto general */
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Animación de flotado continuo directo en el logo */
    animation: flotarRedes 4s ease-in-out infinite alternate;
    will-change: transform;
    transition: color 0.2s ease;   /* Transición suave de color al pasar el mouse */
}

/* Desfasamos los tiempos de animación para que se muevan de forma orgánica */
.btn-social-comic:nth-child(1) { animation-delay: 0s; }
.btn-social-comic:nth-child(2) { animation-delay: 0.5s; }
.btn-social-comic:nth-child(3) { animation-delay: 1s; }

/* Animación reactiva al pasar el mouse (Hover) */
.btn-social-comic:hover {
    background-color: transparent;
    color: var(--azul-marca);      /* El logo cambia a tu azul de marca directamente */
    
    /* Animación de vibración/pulso estilo cómic */
    animation: pulsoGeek 0.5s ease-in-out infinite alternate;
}

.btn-social-comic:active {
    transform: scale(0.85);        /* Efecto de encogimiento al dar clic */
    animation: none;
}

/* ==========================================================================
   KEYFRAMES DE LAS ANIMACIONES (CERO LAG)
   ========================================================================== */
@keyframes flotarRedes {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-8px); /* El logo flota limpiamente hacia arriba */
    }
}

@keyframes pulsoGeek {
    0% {
        transform: scale(1.1) rotate(-4deg);
    }
    100% {
        transform: scale(1.25) rotate(4deg); /* Crece un poco más al no tener cuadro */
    }
}