/* =========================================================
   IMPORTAR FUENTE
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

/* =========================================================
   VARIABLES GLOBALES
========================================================= */

:root {
    --azul-oscuro: #020230;
    --azul-marino: #004e92;
    --azul-neon: #3b82f6;
    --amarillo-neon: #ffcc00;
    --blanco-cristal: rgba(255, 255, 255, 0.1);
    --sombra-neon: 0 0 15px rgba(59, 130, 246, 0.5);
    --rojo-error: #ff4d4d;
    --verde-exito: #00ff88;

    /* Look metálico */
    --borde-plata: linear-gradient(
        180deg,
        #ffffff 0%,
        #a0a0a0 40%,
        #ffffff 60%,
        #808080 100%
    );

    --borde-oro: linear-gradient(
        180deg,
        #ffe082 0%,
        #b58c2e 40%,
        #ffe082 60%,
        #8c6e21 100%
    );

    --fondo-opcion: linear-gradient(
        180deg,
        #05054d 0%,
        #010126 100%
    );
}

/* =========================================================
   RESET GENERAL
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}
#cartel-orientacion {
    position: fixed;
    inset: 0;
    background-color: var(--azul-oscuro);
    z-index: 40000; /* Por encima del video */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.contenido-cartel {
    animation: aparecer 0.5s ease-out;
}

.icono-celular {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: rotar 2s infinite linear;
}

#cartel-orientacion p {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 2px;
    max-width: 400px;
}

#cartel-orientacion strong {
    color: var(--amarillo-neon);
}

/* Animaciones */
@keyframes rotar {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    100% { transform: rotate(90deg); }
}

@keyframes aparecer {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Escondemos el contenedor de video al inicio para que no se vea por detrás 
   mientras el cartel está presente */
.video-bloqueado {
    visibility: hidden;
}
/* =========================================================
   BODY
========================================================= */

body {
    background-color: var(--azul-oscuro);

    /* Imagen base */
    background-image:
        linear-gradient(
            rgba(2, 2, 48, 0.7),
            rgba(2, 2, 48, 0.7)
        ),
        url("../img/fondo-neutro.png");

    background-size: 80%;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    color: white;

    height: 100vh;
    width: 100vw;

    overflow: hidden;
    margin: 0;

    transition: background-image 0.8s ease-in-out;
}

body.estado-ganador {
    background-image:
        linear-gradient(
            rgba(0, 40, 0, 0.7),
            rgba(0, 0, 0, 0.8)
        ),
        url("../img/fondo-ganador.png") !important;
}

/* Estado perdedor */

body.estado-perdedor {
    background-image:
        linear-gradient(
            rgba(60, 0, 0, 0.7),
            rgba(0, 0, 0, 0.8)
        ),
        url("../img/fondo-perdedor.png") !important;
}

/* =========================================================
   VISTAS GENERALES
========================================================= */

.view {
    min-height: 100vh;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.hidden {
    display: none !important;
}

/* =========================================================
   INTRO VIDEO
========================================================= */

#intro-video-container {
    position: fixed;
    inset: 0;
    background-color: black;
    z-index: 30000; /* Aumentado para estar sobre todo */
    display: flex;
    justify-content: center;
    align-items: center;
}

#video-intro {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#btn-saltar-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--azul-neon);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.7rem;
    letter-spacing: 2px;
    z-index: 30001;
}

#btn-saltar-intro:hover {
    background: var(--azul-neon);
}
/* =========================================================
   LOGOS
========================================================= */

.logo {
    width: 350px;
    max-width: 80%;
    height: auto;

    margin-bottom: 30px;

    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-juego {
    width: 180px;
    height: auto;

    margin-bottom: 10px;

    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));

    flex-shrink: 0;
}

.logo-juego-esquina {
    position: absolute;

    height: 50px;
    width: auto;

    z-index: 50;

    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));

    object-fit: contain;
    pointer-events: none;
}

.logo-sup-izq {
    top: 20px;
    left: 20px;
}

.logo-inf-der {
    bottom: 20px;
    right: 20px;
}

.header-logos {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 40px;

    box-sizing: border-box;
}

.logo-empresa {
    height: 60px;
    width: auto;

    object-fit: contain;

    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* =========================================================
   TITULOS
========================================================= */

.titulo-principal {
    text-align: center;
    font-size: 2.5rem;

    margin-bottom: 60px;

    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.titulo-principal span {
    display: block;

    margin-top: 15px;

    color: var(--amarillo-neon);
    font-size: 3rem;
}

/* =========================================================
   CONTENEDORES
========================================================= */

.main-content-inicio {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.buttons-container {
    display: flex;
    gap: 30px;
}

/* =========================================================
   BOTONES GENERALES
========================================================= */

button {
    background: linear-gradient(
        180deg,
        #0d0d6d 0%,
        #020230 100%
    );

    border: 2px solid var(--azul-neon);
    border-radius: 50px;

    color: white;

    padding: 15px 35px;

    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow: var(--sombra-neon);
}

button:hover {
    background: var(--amarillo-neon);

    color: black;

    transform: scale(1.05);

    box-shadow: 0 0 20px var(--amarillo-neon);
}

/* =========================================================
   COMODINES
========================================================= */

.comodines-container {
    position: absolute;
    top: 20px;
    right: 20px;

    display: flex;
    gap: 15px;

    z-index: 100;
}

.comodin {
    width: 60px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--fondo-opcion);

    border: 2px solid var(--azul-neon);
    border-radius: 20px;

    color: white;
    font-size: 0.8rem;
    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s;
}

.comodin:hover:not(.usado) {
    background: var(--amarillo-neon);

    color: black;

    box-shadow: 0 0 15px var(--amarillo-neon);
}

.comodin.usado {
    opacity: 0.3;

    cursor: not-allowed;

    filter: grayscale(1);

    border-color: #666;
}

/* =========================================================
   MODALES
========================================================= */

.modal {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.85);

    backdrop-filter: blur(8px);

    z-index: 50000;
}

.modal-content {
    position: relative;

    width: 90%;
    max-width: 450px;

    padding: 50px 40px 40px;

    text-align: center;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.modal-ancho {
    width: 95%;
    max-width: 700px !important;
}

.modal-titulo {
    margin-bottom: 10px;

    color: var(--amarillo-neon);
    font-size: 1.8rem;
}

.subtitulo-modal {
    margin-bottom: 40px;

    color: #ccc;
    font-size: 0.9rem;
}

.modal-footer-buttons {
    display: flex;
    justify-content: center;
}

/* =========================================================
   BOTON CERRAR
========================================================= */

.btn-cerrar-esquina {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    padding: 0;

    background: none;
    border: none;
    box-shadow: none;

    color: white;
    font-size: 2.2rem;

    cursor: pointer;
}

.btn-cerrar-esquina:hover {
    background: none;

    color: var(--rojo-error);

    transform: scale(1.2);

    box-shadow: none;
}

/* =========================================================
   FORMULARIO
========================================================= */

.form-registro {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    text-align: center;
}

.input-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--amarillo-neon);

    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-registro input {
    width: 100%;

    padding: 12px;

    background: rgba(0, 0, 0, 0.3);

    border: 1px solid var(--azul-neon);
    border-radius: 8px;

    color: white;
    font-size: 1rem;

    text-align: center;
}

.form-registro input::placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================================================
   REGLAS / INSTRUCCIONES
========================================================= */

.lista-reglas {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 20px;
}

.cuerpo-instrucciones {
    text-align: left;
    margin-bottom: 40px;
}

.cuerpo-instrucciones li {
    position: relative;

    margin-bottom: 15px;

    padding-left: 25px;

    list-style: none;
}

.cuerpo-instrucciones li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--azul-neon);
}

/* =========================================================
   DIVISOR COMODINES
========================================================= */

.divisor-comodines {
    position: relative;

    margin: 30px 0 20px;

    text-align: center;

    border-top: 2px solid var(--azul-neon);
}

.divisor-comodines span {
    position: relative;
    top: -12px;

    padding: 0 15px;

    background: #0d0d45;

    color: var(--amarillo-neon);
    font-weight: bold;
    letter-spacing: 2px;
}

/* =========================================================
   COMODINES EXPLICACION
========================================================= */

.comodines-explicacion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-bottom: 30px;
}

.comodine-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comodin-icono {
    width: 70px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 10px;

    background: var(--fondo-opcion);

    border: 2px solid var(--azul-neon);
    border-radius: 25px;

    color: white;
    font-size: 1.1rem;
    font-weight: bold;

    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.comodine-info p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.2;
}

.btn-entendido {
    width: 100%;
    margin-top: 10px;
}

/* =========================================================
   GAMEPLAY
========================================================= */

#pantalla-juego {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

#timer {
    margin-bottom: 20px;

    color: var(--amarillo-neon);

    font-size: 3.5rem;
    font-weight: bold;
}

/* =========================================================
   PREGUNTA
========================================================= */

.pregunta-container {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 40px;
}

.pregunta-box {
    position: relative;

    width: 90%;
    max-width: 900px;
    min-height: 120px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px 80px;

    background: var(--fondo-opcion);

    border: 3px solid #a0a0a0;
    border-image: var(--borde-plata) 1;

    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.05) inset;

    clip-path: polygon(
        3% 0%,
        97% 0%,
        100% 50%,
        97% 100%,
        3% 100%,
        0% 50%
    );
}

.pregunta-box::before {
    display: none;
}

.pregunta-box h2 {
    color: white;

    font-size: 1.8rem;
    font-weight: bold;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   OPCIONES
========================================================= */

.opciones-grid {
    width: 90%;
    max-width: 900px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px 40px;
}

#contenedor-opciones button {
    position: relative;
    overflow: visible;

    width: 100%;

    padding: 12px 30px;

    text-align: left;

    background: var(--fondo-opcion) !important;

    border: 2px solid transparent !important;
    border-image: var(--borde-oro) 1 !important;

    border-radius: 0 !important;

    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: none;

    cursor: pointer;

    transition: all 0.2s ease;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

#contenedor-opciones button::before {
    content: "";

    position: absolute;
    inset: -2px;

    z-index: -1;

    background: inherit;
    border: inherit;

    clip-path: polygon(
        10px 0%,
        calc(100% - 10px) 0%,
        100% 50%,
        calc(100% - 10px) 100%,
        10px 100%,
        0% 50%
    );
}

#contenedor-opciones button::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 25px;
    height: 2px;

    background: var(--borde-plata);

    z-index: -1;
}

#contenedor-opciones button:nth-child(odd)::after {
    left: -20px;
}

#contenedor-opciones button:nth-child(even)::after {
    right: -20px;
}

#contenedor-opciones button:hover {
    background: linear-gradient(
        180deg,
        #ff9800 0%,
        #e65100 100%
    ) !important;

    border-image:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #ffe082 100%
        ) 1 !important;

    color: black !important;

    transform: scale(1.02);

    box-shadow:
        0 0 15px rgba(255, 152, 0, 0.7) !important;
}

/* Correcto */

#contenedor-opciones button.correcto {
    background: linear-gradient(
        180deg,
        #00c853 0%,
        #1b5e20 100%
    ) !important;

    border-image:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #a7ffeb 100%
        ) 1 !important;

    color: white !important;

    animation: parpadeo-verde 0.5s ease infinite alternate;
}

.letra-oro {
    margin-right: 12px;

    color: var(--amarillo-neon);

    font-weight: bold;

    text-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
}

/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes parpadeo-verde {
    from {
        box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 200, 83, 1);
    }
}

@keyframes parpadeo {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

/* =========================================================
   OVERLAY SUSPENSO
========================================================= */

#overlay-suspenso {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.95);

    z-index: 10000;
}

#contenido-overlay {
    width: 80%;
    max-width: 600px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#mensaje-suspenso {
    margin-bottom: 20px;

    font-size: 2rem;
    line-height: 1.4;
}

#mensaje-suspenso button {
    display: block;

    margin: 20px auto 0;

    padding: 10px 25px;

    font-size: 1rem;

    background: var(--azul-neon);

    border-radius: 5px;
}

.parpadeo-lento {
    animation: parpadeo 0.8s infinite;
}

/* =========================================================
   RESULTADOS
========================================================= */

.contenedor-historial {
    width: 100%;
    max-width: 700px;
    max-height: 50vh;

    margin: 20px 0;

    overflow-y: auto;
}

.resultado-item {
    margin-bottom: 10px;

    padding: 15px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 10px;
}

.error-destacado {
    padding: 25px;

    background: rgba(255, 77, 77, 0.15);

    border: 2px solid var(--rojo-error);
}

.frase-lamentamos {
    margin-top: 20px;

    color: var(--amarillo-neon);
    font-weight: bold;
}

/* =========================================================
   TABLA PREMIOS
========================================================= */

.tabla-premios {
    position: absolute;
    top: 50%;
    left: 20px;

    transform: translateY(-50%);

    width: 220px;

    display: flex;
    flex-direction: column-reverse;
    gap: 5px;

    padding: 15px;

    background: rgba(2, 2, 48, 0.8);

    border: 2px solid var(--azul-neon);
    border-radius: 15px;

    box-shadow: var(--sombra-neon);

    backdrop-filter: blur(5px);

    z-index: 90;
}

.nivel-item {
    display: flex;
    justify-content: space-between;

    padding: 4px 15px;

    border-radius: 5px;

    color: var(--amarillo-neon);

    font-size: 0.9rem;
    font-weight: bold;

    transition: all 0.3s;
}

.nivel-item.actual {
    background:
        linear-gradient(
            90deg,
            transparent,
            #ff9800,
            transparent
        );

    color: white;

    transform: scale(1.05);

    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);

    clip-path: polygon(
        5% 0%,
        95% 0%,
        100% 50%,
        95% 100%,
        5% 100%,
        0% 50%
    );
}

.nivel-item.completada {
    color: #00ff88;
    opacity: 0.6;
}

.nivel-num {
    margin-right: 15px;
    color: white;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
.tabla-premios {
    display: flex !important;
    position: absolute;
    left: 0; /* Pegada al borde izquierdo total */
    top: 50%;
    transform: translateY(-50%) scale(0.65); /* Un poquito más grande para que se lea */
    transform-origin: left center;
    width: 160px; 
    z-index: 100;
    padding: 5px;
    background: rgba(2, 2, 48, 0.85);
    border-radius: 0 10px 10px 0; /* Redondeado solo a la derecha */
}
    
    .nivel-item {
        padding: 2px 8px; /* Items más compactos */
        font-size: 0.65rem; /* Letra pequeña pero legible */
    }
    
    
        /* 2. LOGOS MENÚ PRINCIPAL (Más pequeños aún) */
    .logo {
        width: 120px; /* Reducido según pediste */
        margin-bottom: 15px;
    }

    .logo-empresa {
        height: 30px; /* Logos de cabecera más discretos */
    }

    /* 3. MODALES (Instrucciones y Registro) */
    .modal {
        align-items: flex-start; 
        padding: 20px 10px;
        overflow-y: auto; /* Permite scroll si el modal es alto */
    }
    
    .modal-content {
        width: 95%; /* Ocupa casi todo el ancho */
        max-width: none;
        padding: 25px 15px;
        margin: 20px auto; /* Margen para que no pegue arriba/abajo */
        font-size: 0.9rem;
        /* Hacemos que el contenido interno sea scrolleable si es muy largo */
        max-height: 85vh; 
        overflow-y: auto;
    }

    /* Ajuste específico para el modal de instrucciones largo */
    .modal-ancho {
        width: 95% !important;
        padding: 30px 15px !important;
    }
.logo-inf-der {
    display: block !important; /* Lo volvemos a mostrar */
    position: absolute;
    bottom: 10px; /* Pegado al piso */
    left: 10px;   /* Pegado a la izquierda */
    right: auto;  /* Desactivamos el 'right' que trae de PC */
    
    height: 35px; /* Tamaño pequeño para que quepa bien */
    width: auto;
    z-index: 110; /* Por encima de todo */
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.8));
}
    .cuerpo-instrucciones {
        margin-bottom: 20px;
    }

    .cuerpo-instrucciones li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    /* 4. FORMULARIO (Datos del jugador) */
    .form-registro {
        margin-bottom: 15px;
    }

    .form-registro input {
        padding: 10px;
        font-size: 0.9rem; /* Evita que el iPhone haga zoom automático */
    }

    /* 5. OTROS AJUSTES DE ESPACIO */
    .opciones-grid {
width: 80%; /* Reducimos un poco el ancho central */
        margin-left: auto; /* Lo empujamos a la derecha */
        margin-right: 20px;
    }

    .pregunta-box {
        padding: 15px 30px;
        width: 95%;
    }

    .pregunta-box h2 {
        font-size: 1rem;
    }

#contenedor-opciones button {
    padding: 10px 8px !important; /* Más espacio vertical para que el texto respire */
    font-size: 0.7rem !important; 
    min-height: 60px; /* Aumentamos la altura mínima para que quepan 2 o 3 líneas de texto */
    display: flex;
    align-items: center; 
    justify-content: flex-start;
    line-height: 1.2; /* Ajuste de interlineado para que el texto no se pegue */
    white-space: normal !important; /* CRÍTICO: Permite que el texto salte de línea si es largo */
    overflow: visible !important;
}
    
#pantalla-juego {
    gap: 0px !important; /* Eliminamos el espacio entre elementos del flex */
    justify-content: center !important; /* Centramos el bloque verticalmente */
    padding-top: 40px !important; 
}

    /* LOGOS EN PANTALLA DE JUEGO */
    .logo-juego {
        width: 50px; /* Mucho más pequeño */
        margin-bottom: 5px;
    }

    .logo-juego-esquina {
        height: 25px; /* Mini logos en las esquinas */
    }

    /* TIMER (Reloj) */
    #timer {
        font-size: 2rem; /* Reducido de 3.5rem */
        margin-bottom: 10px;
    }

    /* COMODINES */
    .comodines-container {
        top: 10px; /* Los subimos un poco */
        gap: 5px;
    }

    .comodin {
        width: 45px;
        height: 30px;
        font-size: 0.6rem;
    }

    /* LA PREGUNTA */
.pregunta-container {
    width: 75% !important;
    margin-left: 22% !important;
    margin-right: 3% !important;
    margin-bottom: 10px !important; /* Bajamos de 40px a 10px */
    display: flex;
    justify-content: center;
}

/* Cuadro de la pregunta */
.pregunta-box {
    width: 100% !important; /* Ocupa todo el contenedor del 75% */
    padding: 15px 20px !important;
    min-height: 70px;
}

/* Grid de opciones */
.opciones-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important; /* Espacio más apretado entre los botones */
    width: 75% !important;
    margin-left: 22% !important;
    margin-right: 3% !important;
    padding: 0 !important;
}

    .pregunta-box h2 {
        font-size: 0.95rem; /* Texto más pequeño pero legible */
        line-height: 1.2;
    }



    /* Quitar o reducir las "flechitas" laterales de los botones en móvil */
#contenedor-opciones button::after {
        display: none; /* En móvil 2 columnas es mejor quitar las flechitas decorativas */
    }
    
    #contenedor-opciones button:nth-child(odd)::after { left: -10px; }
    #contenedor-opciones button:even-child(even)::after { right: -10px; }

.letra-oro {
    margin-right: 6px;
    font-size: 0.75rem;
    min-width: 18px; /* Espacio fijo para que no empuje el texto */
    flex-shrink: 0; /* Que no se achique la letra */
}
    
    
    
}