/* --- VARIABLES Y ESTILOS GLOBALES --- */
:root {
    --color-primario: #1a4c25;
    --color-secundario: #ffcb86;
    --color-texto-claro: #f4f4f4;
    --color-texto-oscuro: #333;
    --fuente-principal: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    /* MUY IMPORTANTE: overflow-x: hidden previene que aparezca una barra de scroll horizontal durante la animación */
    overflow-x: hidden;
}



.contenedor {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}


.encabezado {
    background: rgba(253, 253, 253, 0.055);
    padding: 2rem 0;
    position: fixed;
    width: 95%;
    max-width: 1650px;
    z-index: 1000;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 35px;
    backdrop-filter: blur(5px);
    transition: all .6s;
    transform-origin: center;
}

.encabezado:hover {
    background: rgba(233, 233, 233, 0.091);
    box-shadow: 1px 50px 55px rgba(0, 0, 0, 0.193);
    backdrop-filter: blur(15px);
    scale: 1.02;
    transform-origin: center;
}

.encabezado .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-imagen img {
    height: 50px;
    display: block;
}

.navegacion a {
    color: #f1f1f1;
    text-decoration: none;
    padding: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}


/* Animated underline para la navegación del header */
.navegacion a {
    position: relative;
    display: inline-block;
    padding-bottom: 0.25rem;
    transition: color 250ms ease;
}

.navegacion a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px; /* ajustar según el padding del header */
    height: 3px;   /* grosor de la línea */
    background: #339e3c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .7s cubic-bezier(.2,.9,.3,1), opacity 220ms ease;
    opacity: 0;
    border-radius: 3px;
}

/* Mostrar la línea solo en el enlace que está en hover/focus o en estado activo */
.navegacion a:hover::after,
.navegacion a:focus::after,
.navegacion a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

/* Accesibilidad: foco visible */
.navegacion a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(49,190,98,0.08);
    border-radius: 4px;
}

.navegacion a:hover {
    color: #339e3c;
}



/* --- CONTENEDOR Y PANELES PRINCIPALES --- */
.main-container {
    background: url(../img/Gold-BG.png);
    position: relative;
    width: 100%;
    min-height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: visible;
}

.panel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}

/* --- PANEL DE BIENVENIDA --- */
#welcome-panel {
    color: var(--text-color-light);
    text-align: center;
    z-index: 2;
    transform: translateX(0%);
}

.main-container.show-requirements #welcome-panel {
    transform: translateX(-100%);
}

/* --- PANEL DE REQUISITOS --- */
#requirements-panel {
    color: var(--color-texto-claro);
    overflow-y: auto;
    align-items: flex-start;
    z-index: 1;
    transform: translateX(100%);
    margin-top: 10%;
}

.main-container.show-requirements #requirements-panel {
    transform: translateX(0%);
}


/* --- OTROS ESTILOS (Títulos, botones, acordeón) --- */
.content {
    max-width: 800px;
    width: 100%
}

.content2 {
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(120deg, #232423fb, #f7f70117);
    padding: 55px;
    border-radius: 55px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 75px #0d0d0d4b;
    border: 1px solid #ffffff5d;
}

.main-title {
    font-size: 5.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 50px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 2.5rem;
    color: var(--color-texto-oscuro);
}

.cta-button {
    margin-top: 4rem;
    background-color: #f1f1f11e;
    color: var(--color-texto-oscuro);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: transform .3s ease;
    height: 95px;
    width: 265px;
    border: .5px solid #f4f4f41e;
    transition: all .3s ease;
    box-shadow: 0 0 65px #1a1a1a49;
}

.cta-button:hover {
    transform: scale(1.05);
    border: .5px solid #f4f4f4d8;
    background-color: #f1f1f144;
    box-shadow: 0 0 75px #1a1a1a6e;
}

.requirements-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.accordion-item {
    border: 0.1px solid #f4f4f448;
    margin-top: 10px;
    border-radius: 25px;
    box-shadow: 0 0 40px #0000003b;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}

.accordion-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 40px #00000077;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--color-texto-claro);
}

.accordion-header span:first-child {
    font-weight: 700;
    color: #31be62;
    margin-right: 1.5rem
}

.accordion-header h3 {
    flex-grow: 1;
    font-weight: 700
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform .3s ease;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg)
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out, padding .5s ease;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 25rem;
}

.accordion-content p {
    flex-grow: 1;
    font-weight: 300;
    line-height: 1.6;
    max-width: 400px;
}

.accordion-content img {
    width: 120px;
    height: auto;
    opacity: .7
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 1rem 1rem 1.5rem 1rem
}

.back-button {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 2rem;
    padding: .5rem
}

.back-button:hover {
    text-decoration: underline
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #2e8340;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}


.pie-pagina {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding-top: 60px;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.pie-pagina h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.pie-pagina h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: #31be62;
}

.info-footer .logo-imagen-footer img {
    max-width: 200px;
    margin-bottom: 15px;
}

.info-footer p {
    color: #b3b3b3;
    line-height: 1.6;
}

.navegacion-footer a,
.redes-sociales a {
    color: #f0f0f0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.navegacion-footer a:hover,
.redes-sociales a:hover {
    color: #31be62;
    padding-left: 8px;
}

.contacto-footer p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.derechos-reservados {
    background-color: #0d0d0d;
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid #d8a25e;
}

.derechos-reservados p {
    margin: 0;
    font-size: 0.9rem;
    color: #8c8c8c;
}

.download-wrap {
    margin: 1rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.download-btn {
    display: inline-block;
    background: #31be62;
    color: #ffffff;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background .18s ease, transform .12s ease;
}

.download-btn:hover {
    background: #28a84d;
    transform: translateY(-1px);
}

.download-btn.secondary {
    background: #333;
}

/* ==========================================================================
   MEDIA QUERIES PARA RESPONSIVIDAD
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLETAS Y ESCRITORIOS PEQUEÑOS (hasta 1200px)
   - Reducimos tamaños de fuente y espaciados generales.
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .contenedor {
        padding: 0 1.5rem; 
    }

    .main-title {
        font-size: 4.5rem; 
        line-height: 1.1;
    }

    .content2 {
        padding: 40px; 
    }

    .accordion-content {
        gap: 15rem; 
    }
}


/* --------------------------------------------------------------------------
   TABLETAS EN MODO VERTICAL (hasta 992px)
   - Ajustes más significativos en la composición y el header.
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* ===== RESPONSIVE + MENÚ HAMBURGUESA ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-right: 15px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #a0a0a0; 
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    left: 0;
}

.menu-toggle:active span {
    background: #21861e; 
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media screen and (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .navegacion {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgb(26, 76, 37), rgba(13, 38, 19, 0.918));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        border-radius: 25px;
    }

    .navegacion.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;

    }

    .navegacion a {
        margin: 1rem 0;
        font-size: 1.2rem;
        color: #fff;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navegacion.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation para los links */
    .navegacion.active a:nth-child(1) { transition-delay: 0.08s; }
    .navegacion.active a:nth-child(2) { transition-delay: 0.16s; }
    .navegacion.active a:nth-child(3) { transition-delay: 0.24s; }
    .navegacion.active a:nth-child(4) { transition-delay: 0.32s; }
    .navegacion.active a:nth-child(5) { transition-delay: 0.40s; }

    .logo-imagen img {
        height: 30px;
    }

}

/* Respeto prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .menu-toggle span,
    .navegacion,
    .navegacion a {
        transition: none !important;
    }
}

    /* Ajustes de contenido */
    .main-title {
        font-size: 3.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .cta-button {
        margin-top: 3rem;
    }

    .accordion-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .accordion-content p {
        max-width: 100%;
    }

    .accordion-item.active .accordion-content {
        max-height: 350px;
    }

    #requirements-panel {
        margin-top: 15%;
    }
}


/* --------------------------------------------------------------------------
   DISPOSITIVOS MÓVILES (hasta 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {    
    /* Header más compacto */
    .encabezado {
        padding: 1rem 0;
        top: 1rem;
        width: 92%;
        z-index: 1001; 
    }

    .logo-imagen img {
        height: 40px;
    }

    /* Contenido general */
    .contenedor {
        padding: 0 1rem;
    }

    body {
        height: auto;
    }

    .main-container {
        min-height: 100vh;
        background-attachment: scroll; 
    }
    
    .panel {
        padding: 1rem;
        align-items: center;
    }

    #requirements-panel {
        margin-top: 0;
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .main-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        height: auto;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        margin-top: 2.5rem;
    }
    
    .content2 {
        padding: 25px;
        border-radius: 30px;
    }

    .requirements-title {
        font-size: 2rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    .accordion-header span:first-child {
        margin-right: 1rem;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .pie-pagina h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-footer .logo-imagen-footer img {
        margin-left: auto;
        margin-right: auto;
    }
}


/* --------------------------------------------------------------------------
   MÓVILES PEQUEÑOS (hasta 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .requirements-title {
        font-size: 1.8rem;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem 0.8rem;
    }

    .accordion-header h3 {
        font-weight: 600;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .navegacion a {
        font-size: 1.2rem;
        margin: 0.8rem 0;
    }
}

/* --------------------------------------------------------------------------
   ACCESIBILIDAD: Respeto por prefers-reduced-motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .menu-toggle span,
    .navegacion,
    .navegacion a,
    .panel {
        transition: none !important;
    }
}

/* ==========================================================================
   MENÚ HAMBURGUESA - IMPLEMENTACIÓN CORREGIDA
   ========================================================================== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003; 
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #f1f1f1; 
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    left: 0;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* Estado 'X' cuando está activo */
.menu-toggle.active span {
    background: #fff; 
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ==========================================================================
   MEDIA QUERIES CORREGIDAS PARA RESPONSIVIDAD
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLETAS Y ESCRITORIOS PEQUEÑOS (hasta 1200px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .contenedor {
        padding: 0 1.5rem;
    }

    .main-title {
        font-size: 4.5rem;
        line-height: 1.1;
    }

    .content2 {
        padding: 40px;
    }

    .accordion-content {
        gap: 15rem;
    }
}

/* --------------------------------------------------------------------------
   TABLETAS EN MODO VERTICAL (hasta 992px) - ACTIVACIÓN DEL MENÚ MÓVIL
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* Mostrar botón hamburguesa */
    .menu-toggle {
        display: flex;
    }

    /* Configurar navegación como overlay */
    .navegacion {
        position: fixed;
        inset: 0;                   
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(26,76,37,.98), rgba(13,38,19,.95));
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform .3s ease, opacity .3s ease, visibility 0s linear .3s;
        z-index: 1002;
    }
    .navegacion.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .navegacion a {
        color: #fff;
        font-size: 1.4rem;
        margin: 1rem 0;
        padding: 0.5rem 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    .navegacion a:hover {
        color: #31be62;
    }

    .navegacion.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Animación escalonada de los enlaces */
    .navegacion.active a:nth-child(1) { transition-delay: 0.1s; }
    .navegacion.active a:nth-child(2) { transition-delay: 0.2s; }
    .navegacion.active a:nth-child(3) { transition-delay: 0.3s; }
    .navegacion.active a:nth-child(4) { transition-delay: 0.4s; }
    .navegacion.active a:nth-child(5) { transition-delay: 0.5s; }

    /* Ocultar línea animada en móvil */
    .navegacion a::after {
        display: none;
    }

    /* Ajustes de contenido */
    .main-title {
        font-size: 3.8rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .cta-button {
        margin-top: 3rem;
    }

    .accordion-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .accordion-content p {
        max-width: 100%;
    }

    .accordion-item.active .accordion-content {
        max-height: 350px;
    }

    #requirements-panel {
        margin-top: 15%;
    }
}


/* --------------------------------------------------------------------------
   DISPOSITIVOS MÓVILES (hasta 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {    
    /* Header más compacto */
    .encabezado {
        padding: 1rem 0;
        top: 1rem;
        width: 92%;
        z-index: 1001; 
    }

    .logo-imagen img {
        height: 40px;
    }

    /* Contenido general */
    .contenedor {
        padding: 0 1rem;
    }

    body {
        height: auto;
    }

    .main-container {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .panel {
        padding: 1rem;
        align-items: center;
    }

    #requirements-panel {
        margin-top: 0;
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .main-title {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        height: auto;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        margin-top: 2.5rem;
    }
    
    .content2 {
        padding: 25px;
        border-radius: 30px;
    }

    .requirements-title {
        font-size: 2rem;
    }
    
    .accordion-header {
        padding: 1.2rem 1rem;
        font-size: 1rem;
    }

    .accordion-header span:first-child {
        margin-right: 1rem;
    }

    /* Footer */
    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .pie-pagina h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-footer .logo-imagen-footer img {
        margin-left: auto;
        margin-right: auto;
    }
}


/* --------------------------------------------------------------------------
   MÓVILES PEQUEÑOS (hasta 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .requirements-title {
        font-size: 1.8rem;
    }

    .accordion-header {
        font-size: 0.95rem;
        padding: 1rem 0.8rem;
    }

    .accordion-header h3 {
        font-weight: 600;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .navegacion a {
        font-size: 1.2rem;
        margin: 0.8rem 0;
    }
}

/* --------------------------------------------------------------------------
   ACCESIBILIDAD: Respeto por prefers-reduced-motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .menu-toggle span,
    .navegacion,
    .navegacion a,
    .panel {
        transition: none !important;
    }
}

/* Guard-rail adicional */
html { overflow-x: hidden; }

@media (max-width: 992px) {
  .encabezado {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;          
    transform: none;      
    border-radius: 0;     
    padding: 1rem 0;
    z-index: 1001;
  }
}

/* Título centrado solo en móviles */
.header-title-mobile {
  display: none;
  font-weight: 800;
  letter-spacing: .06em;
  color: #ffffff;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 768px) {
  .header-title-mobile {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.05rem;
  }
}
