/* Declaracion de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}
/* Final declaracion de fuentes */

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(-142.43deg, 
        #e32320 0%, 
        #b1293c 14%, 
        #853056 28%, 
        #61356a 42%, 
        #45387b 57%, 
        #313b86 71%, 
        #253d8d 85%, 
        #223e90 100%);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    padding: 5vh;
    position: relative;
}

/* General Styles */
h1 {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 700; /* Poppins Bold */
}

p {
    font-size: 1.5em;
    font-weight: 300; /* Poppins Light */
}

/* Floating Screen */
.floating-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-131.54deg, 
        #e32320 0%, 
        #223e90 91%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 80vh;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.logo {
    width: 50%;  /* Tamaño del logo */
    margin-top: 75px; 
    margin-bottom: 45px;  /* Espacio debajo del logo */
}

/* Custom H1 Style */
.floating-screen h1 {
    font-family: 'Poppins-SemiBold', 'Poppins', sans-serif; /* Fuente específica */
    font-size: 43px;  /* Tamaño exacto de la fuente */
    font-weight: 600;  /* Peso de fuente semibold */
    letter-spacing: -0.0em;  /* Ajuste de espaciado entre letras */
    color: #fff;  /* Color del texto */
    margin: 0;  /* Elimina cualquier margen por defecto */
    text-align: center;
}

.touch-icon {
    margin-top: 45px;  /* Espacio superior para separar el ícono del texto */
}

.touch-icon img {
    width: 61px; 
    height: 99px; /* Tamaño del ícono de toque */
}

/* Estilo base */
h1, .touch-icon img {
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
}

/* Animación de salto */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); /* Posición inicial */
    }
    40% {
        transform: translateY(-20px); /* Salta hacia arriba */
    }
    60% {
        transform: translateY(-10px); /* Salto intermedio */
    }
}

/* Aplicar la animación de salto al texto e ícono */
.floating-screen h1 {
    animation: bounce 2s infinite; /* La animación se repite infinitamente cada 2 segundos */
}

.touch-icon img {
    animation: bounce 2s infinite; /* La misma animación para el ícono */
}

/* Locker Container */
.container {
    display: flex;
    flex-direction: row;
    max-width: 90vw;
    max-height: 80vh;
    background: transparent;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.order-arrived {
    flex: 1.5;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.content-wrapper {
    width: 90%; /* Asegura que el contenido tome todo el ancho disponible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Asegura que el contenido se centre verticalmente */
}

.order-arrived h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 56pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600; /* Negrita */
    text-align: center;
}

.order-arrived hr {
    width: 90%;
    border: 0.9px solid #1d3b9c;
    margin: 10px 0 20px;
}

.order-arrived p {
    font-family: 'Poppins-Regular', Poppins;
    font-weight: 400;
    font-size: 41px;
    color: #1d3b9c;
    margin: 0 0 30px;
    text-align: center;
}

.options {
    display: flex;
    justify-content: space-between;
    width: 92%;
    margin-top: 60px;
    margin-bottom: 60px;
}

.option-button {
    background-color: #1d3b9c;
    color: white;
    padding: 22px 30px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0.3, 0.3);
    font-family: 'Poppins-Regular', Poppins;
    font-weight: 500;
    font-size: 1.6em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 25px;
    margin-right: 28px;
    text-align: center;
}

.option-button:hover {
    background-color: #162d70;
}

.support-links {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 58px;
    margin-left: 25px;
}

.support-link {
    text-decoration: underline;
    text-decoration-thickness: 1.25px;
    font-family: 'Poppins-Regular', Poppins;
    font-weight: 500;
    color: #e32320;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.support-link img {
    margin-right: 10px;
    width: 28%;
  }

.support-link-web {
    text-decoration: underline;
    text-decoration-thickness: 1.25px;
    font-family: 'Poppins-Regular', Poppins;
    font-weight: 500;
    color: #1d3b9c;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.support-link-web img {
    margin-right: 10px;
    width: 18%;
  }

.instructions {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background: linear-gradient(-131.54deg, 
        #e32320 0%, 
        #223e90 91%);
    border-radius: 15px;
    position: relative;
    z-index: 0;
}

.content-wrapper-instructions {
    width: 90%; /* Asegura que el contenido tome todo el ancho disponible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; /* Asegura que el contenido se centre verticalmente */
}

.instructions h2 {
    font-size: 23pt;
    font-weight: 500;
    letter-spacing: 0.05em; 
    margin: 70px 0 1px;
    text-transform: uppercase;
    text-align: left;
    width: 85%;
}

.instructions h3 {
    font-size: 1.6em;
    font-weight: 500;
    letter-spacing: 0.09em; 
    margin: 0 0 20px;
    text-align: left;
    width: 85%;
}

.instructions p {
    font-size: 1.4em;
    margin: 0 0 20px;
    text-align: left;
    width: 85%;
}

.instructions hr {
    width: 85%;
    border: 0.9px solid #ffff;
    margin: 10px 0 20px;
}

.phone-image {
    display: flex;
    flex: 1;
    align-items: flex-start; /* Esto alinea el contenido al inicio del eje vertical */
    justify-content: right;
    margin-bottom: 55px;
}

.phone-text {
    margin-bottom: 10px; /* Añade espacio debajo del texto si es necesario */
    width: 85%; /* Asegura que el texto ocupe todo el ancho del contenedor */
    font-size: 1em;
    text-align:left;
    padding-left: 45px;
    padding-top: 30px;
}

.phone-image img {
    max-width: 52%;
    height: auto;
    align-self: center; 
    display: block;
    margin-right: 10px;
} 

/* Estilos del carrusel */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 90%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls .prev::before,
.carousel-controls .next::before {
    font-family: 'FontAwesome';
    font-weight: 100; 
    font-size: 40px; 
    color: white; 
    display: inline-block; 
}

.carousel-controls .prev::before {
    content: '\f104'; 
}

.carousel-controls .next::before {
    content: '\f105';
}

.carousel-controls .prev,
.carousel-controls .next {
    background: transparent; /* Fondo transparente */
    border: none; /* Sin borde */
    padding: 0px; /* Espaciado interno del botón */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
    outline: none; /* Elimina el borde de enfoque al hacer clic */
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.carousel-indicators .dot {
    height: 10px;
    width: 10px;
    margin: 0 3px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.carousel-indicators .dot.active {
    background-color: #e32320;
}

/* Contenedor del teclado numérico */
.numpad-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 120px;
    padding-bottom: 90px;
    padding-right: 100px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}


.code-extraction {
    flex: 2;
    padding-right: 50px;
}

.code-extraction h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.code-extraction hr {
    width: 100%;
    border: 1px solid #1d3b9c;
    margin: 36px 0 20px;
}

.code-extraction p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34px;
    color: #1d3b9c;
    margin: 0 0 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

#code-input {
    font-family: 'Poppins-Regular', Poppins;
    width: 100%;
    padding: 25px;
    font-size: 28px;
    border: 2px solid #1d3b9c;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.numpad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    flex: 1;
    padding-left: 20px;
}

.num-btn {
    padding: 20px;
    font-size: 3em;
    font-weight: 600;
    border-radius: 5px;
    border: #e7e7e7;
    border-style: solid;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    width: 100%; /* Asegura que todos los botones ocupen el 100% del espacio disponible */
    height: 100px; /* Asigna una altura fija para que todos los botones tengan el mismo tamaño */
    display: flex;
    justify-content: center;
    align-items: center; /* Centra el contenido del botón vertical y horizontalmente */
}

.num-btn:hover {
    background-color: #e0e0e0;
}

.delete-btn {
    background-color: #e74c3c;
    font-size: 1.6em;
    color: white;
}

.ok-btn {
    background-color: #2ecc71;
    font-size: 1.6em;
    color: white;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 43px;
    cursor: pointer;
    color: #1d3b9c;
}

/* Contenedor del input de QR */
.input-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.input-container .code-extraction {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.qr-content {
    display: flex;
    justify-content: space-between;
}

.qr-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.input-container h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.input-container hr {
    width: 100%;
    border: 1px solid #1d3b9c;
    margin: 36px 0 20px;
}

.input-container p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34px;
    color: #1d3b9c;
    margin: 0 0 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.input-container #qr-input {
    font-family: 'Poppins-Regular', Poppins;
    width: 100%;
    padding: 25px;
    font-size: 28px;
    border: 2px solid #1d3b9c;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

#qr-input:focus {
    box-sizing: border-box;
    border-color: #e74c3c; /* Rojo */
    border: 2px solid #e74c3c;
    box-shadow: 0 0 5px rgba(245, 35, 12, 0.89); /* Sombra roja */
    outline: none;
}

.qr-image-container {
    flex: 0 0 auto;
    max-width: 530px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
}

.qr-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor de Soporte */
.support-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.support-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinea verticalmente el contenido */
    width: 100%;
}

.support-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.support-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.support-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #1d3b9c;
    margin: 20px 0 20px;
}

.support-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34pt;
    color: #1d3b9c;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.support-contact {
    margin-top: 30px;
}

.support-option {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.support-option img {
    margin-right: 15px;
    width: 50px; /* Aumenta el tamaño del ícono */
    height: auto;
}

.contact-text {
    font-family: 'Poppins-Bold', Poppins;
    font-size: 28px;
    color: #1d3b9c;
    margin-right: 15px;
}

.contact-detail {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 28px;
    color: #1d3b9c;
    font-weight: 600;
}

.support-image-container {
    flex: 0 0 auto;
    max-width: 450px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.support-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor de Preguntas Frecuentes */
.faqs-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.faqs-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribuye espacio entre el h1 y el link de soporte */
    margin-bottom: 20px;
}

.faqs-header h1 {
    margin: 0;
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    font-weight: 600;
}

.support-link-inline {
    display: flex;
    align-items: center;
    font-family: 'Poppins-Regular', Poppins;
    font-weight: 500;
    color: #e32320;
    font-size: 18px;
    text-decoration: underline;
    text-decoration-thickness: 1.25px;
}

.support-link-inline img {
    margin-right: 10px;
    width: 30px; /* Ajusta el tamaño del ícono */
    height: auto;
}

.faqs-content {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinea verticalmente el contenido */
    width: 100%;
}

.faqs-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.faqs-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 32pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.faqs-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #1d3b9c;
    margin: 20px 0 20px;
}

.faqs-text h3 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 18pt;
    color: #1d3b9c;
    font-weight: 600;
}

.faqs-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 22px;
    color: #1d3b9c;
    margin-bottom: 10px;
    line-height: 1.5;
}

.faqs-image-container {
    flex: 0 0 auto;
    max-width: 450px; /* Limita el tamaño máximo de la imagen */
    margin-left: 5px; /* Espacio entre la imagen y el texto */
}

.faqs-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Estilos del selector de idiomas */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.language-button img {
    width: 72px;
    height: auto;
    border-radius: 50%;
}

.language-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.language-dropdown a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.language-dropdown a img {
    width: 25px;
    height: auto;
    margin-right: 10px;
}

.language-dropdown a:hover {
    background-color: #ddd;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 43px;
    cursor: pointer;
    color: #1d3b9c;
}

/* Contenedor de Puerta Abierta */
.door-open-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.door-open-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.door-open-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.door-open-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.door-open-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #1d3b9c;
    margin: 20px 0 20px;
}

.door-open-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34pt;
    color: #1d3b9c;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.door-open-image-container {
    flex: 0 0 auto;
    max-width: 600px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.door-open-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor de Código Incorrecto */
.invalid-code-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.invalid-code-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.invalid-code-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.invalid-code-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #e74c3c; /* Color rojo para resaltar el error */
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.invalid-code-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #e74c3c; /* Borde rojo */
    margin: 20px 0 20px;
}

.invalid-code-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34pt;
    color: #1d3b9c;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.invalid-code-image-container {
    flex: 0 0 auto;
    max-width: 450px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.invalid-code-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor de Código Pertenece a Otro Locker */
.wrong-locker-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.wrong-locker-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.wrong-locker-text {
    flex: 1;
    margin-right: 20px;
    text-align: left;
}

.wrong-locker-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #e67e22; /* Color naranja para resaltar el aviso */
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.wrong-locker-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #e67e22; /* Borde naranja */
    margin: 20px 0 20px;
}

.wrong-locker-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 34pt;
    color: #1d3b9c;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: left;
}

.wrong-locker-image-container {
    flex: 0 0 auto;
    max-width: 450px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.wrong-locker-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor de Envío con Deuda */
.debt-container {
    display: flex;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 90px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    height: 100%; /* Ocupa todo el alto del contenedor */
    z-index: 100; /* Asegura que esté sobre otros elementos */
    box-sizing: border-box;
}

.debt-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.debt-text {
    flex: 1;
    margin-right: 30px;
    text-align: left;
}

.debt-text h1 {
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 46pt;
    color: #1d3b9c;
    margin: 0 0 10px 0;
    font-weight: 600;
    text-align: left;
}

.debt-text hr {
    width: 100%; /* Ajuste de ancho */
    border: 1px solid #1d3b9c;
    margin: 20px 0 20px;
}

.debt-text p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 24pt;
    color: #1d3b9c;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.payment-button {
    background-color: #1d3b9c;
    color: white;
    padding: 28px 365px;
    border: none;
    border-radius: 15px;
    font-family: 'Poppins-SemiBold', Poppins;
    font-size: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.payment-button:hover {
    background-color: #162d70;
}

.debt-image-container {
    flex: 0 0 auto;
    max-width: 700px; /* Limita el tamaño máximo de la imagen */
    margin-left: 20px; /* Espacio entre la imagen y el texto */
    margin-right: 20px;
    margin-bottom: 50px;
}

.debt-image-container p {
    font-family: 'Poppins-Regular', Poppins;
    font-size: 14pt;
    color: #b2b2b2;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
}

.debt-image {
    width: 100%;
    height: auto;
    display: block;
}

.countdown-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    z-index: 1000;
    font-family: 'Poppins-Regular', Poppins;
}