@keyframes fadeInOut {
    0% {
      opacity: 1;
      background-color: #002958; /* Color azul */
    }
    100% {
      opacity: 0;
      background-color: transparent;
    }
  }
  
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002958; /* Color azul */
    animation: fadeInOut 2s ease;
    animation-fill-mode: forwards;
    z-index: 9999; /* Asegura que esté sobre todo el contenido */
    pointer-events: none; /* Permite que el contenido subyacente sea accesible después de la animación */
  }
  
/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    background-color: #002958;
    background: linear-gradient(to bottom right, #001d40, #0044aa);
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Membrete con 5 logos - Imágenes grandes, header compacto */
.membrete {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background-color: white;
    padding: 12px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: 75px;
}


/* Contenedor de los 5 logos */
.membrete .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 8px;
    height: 100%;
}
.logo-item.logo-principal {
    flex: 0 0 50%; /* Ocupa exactamente la mitad */
    max-width: 50%;
    display: flex;
    justify-content: flex-start; /* ← CAMBIO: Pegado a la izquierda */
    align-items: center;
    margin-right: auto; /* ← CAMBIO: Empuja los otros logos a la derecha */
}
.logo-item.logo-secundario {
    flex: 1;
    max-width: 10%;
    display: flex;
    justify-content: center; /* Los otros logos siguen centrados */
    align-items: center;
}
.logo-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Efecto hover */
.logo-item:hover .logo-img {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

/* Responsividad para tablets */
@media screen and (max-width: 1024px) {
    .membrete .logo-container {
        padding: 0 15px;
        gap: 6px; /* Más compacto */
    }
    
    .logo-img {
        height: 50px; /* Imágenes ligeramente más pequeñas pero membrete mantiene altura */
    }
}
/* Responsividad para móviles - 3-2 distribución */
@media screen and (max-width: 768px) {
    .membrete {
        height: 75px; /* ALTURA FIJA - NO CAMBIA */
        padding: 8px 0;
    }
    
    .membrete .logo-container {
        padding: 0 8px;
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%; /* Asegura que use toda la altura disponible */
    }
    
    /* Logo 1 ocupa fila completa superior */
    .logo-item.logo-principal {
        flex: 0 0 100%;
        max-width: 100%;
        height: 35px; /* Altura reducida para primera fila */
        margin-bottom: 2px;
    }
    
    /* Logos 2-6 en fila inferior compartiendo espacio */
    .logo-item.logo-secundario {
        flex: 1;
        max-width: 18%; /* 5 logos en ~18% cada uno */
        height: 30px; /* Altura reducida para segunda fila */
    }
    
    .logo-img {
        height: 100%; /* Las imágenes ocupan toda la altura disponible */
        max-height: 100%;
    }
}

/* Para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .membrete {
        height: 75px; /* ALTURA FIJA MANTENIDA */
    }
    
    .membrete .logo-container {
        padding: 0 5px;
        gap: 3px;
    }
    
    .logo-item.logo-principal {
        height: 32px;
    }
    
    .logo-item.logo-secundario {
        height: 28px;
        max-width: 17%;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* NAVBAR AJUSTADO - ELEMENTOS EN LA PARTE INFERIOR */
.navbar {
    position: fixed;
    top: 75px;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #002958;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 8px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px 5px 20px;
    height: 100%;
}

/* LOGO - Ajustado hacia abajo */
.navbar .logo {
    flex-shrink: 0;
    margin: 0;
    padding-bottom: 0;
}

.navbar .logo img {
    height: 48px;
    width: auto;
    margin-bottom: -10px; /* Aumentamos el margen negativo para bajar más la imagen */
    transform: translateY(5px); /* Movemos la imagen hacia abajo */
}

/* MENÚ PRINCIPAL - Ajustado hacia abajo */
.nav-links {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0 0 0 0; /* Reducimos margen inferior */
    flex: 1;
}

.nav-links > li {
    margin: 0;
    padding-bottom: 0; /* Eliminamos padding inferior */
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    color: #002958;
    font-size: 16px;
    padding: 8px 12px 12px 12px; /* Más padding solo en la parte inferior */
    transition: 0.3s;
    border-radius: 5px;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #58d3f8;
    background: rgba(0, 41, 88, 0.1);
}

/* BOTÓN CONECTARSE - Ajustado hacia abajo */
.connect-button {
    position: relative;
    flex-shrink: 0;
    margin: 0;
    padding-bottom: 0; /* Eliminamos padding inferior */
    align-self: flex-end; /* Forzamos alineación al fondo */
}

#connectBtn {
    background: white;
    color: #002958;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 18px 10px 18px;
    border: 2px solid #002958;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    margin-bottom: -3px;
}

#connectBtn:hover {
    background: white;
    color: #002958;
}

/* DROPDOWN MENUS - Ajustados para no cambiar posición */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #002958;
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.dropdown-menu li a {
    color: white;
    display: block;
    padding: 10px 20px;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: white;
    color: #002958;
}

/* MENÚ CONECTARSE DROPDOWN - Ajustado */
.connect-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: #002958;
    list-style: none;
    padding: 10px 0;
    min-width: 160px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

.connect-menu.show {
    display: block;
}

.connect-menu li a {
    color: white;
    padding: 10px 15px;
    border-radius: 0;
}

.connect-menu li a:hover {
    background: #002958;
    color: white;
    cursor: default;
}

/* Flecha del dropdown */
.dropdown-arrow {
    margin-left: 4px;
    font-size: 12px;
}

/* RESPONSIVE NAVBAR - Ajustado */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 0 15px 5px 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 6px 10px 8px 10px;
    }
    
    .navbar .logo img {
        height: 45px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        top: 85px;
        height: 60px;
        align-items: center;
        padding-bottom: 0;
    }
    
    .nav-container {
        padding: 0 15px;
        align-items: center;
    }
    
    .nav-links, 
    .connect-button {
        display: none;
    }
    
    .navbar .logo {
        margin: 0 auto;
        padding-bottom: 0;
    }
    
    .navbar .logo img {
        height: 42px;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 110px;
    left: auto; /* Cambiar esto */
    right: 20px; /* Posicionar desde la derecha */
    transform: none; /* Eliminar esto */
    z-index: 1000;
  }


.hamburger .bar {
  height: 3px;
  width: 30px;
  background-color: white;
  margin: 3px 0;
}

/* Menú móvil */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: #002958;
  transition: top 0.3s ease-in-out;
  padding: 75px 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mobile-menu ul {
  list-style-type: none;
  padding: 0;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

/* Media Query para pantallas pequeñas */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.open {
    top: 0;
  }
  .connect-button {
        display: none;
    }
}

/* Ajuste del contenedor del submenú */
.movil-dropdown-menu {
  display: none;
  list-style: none;
  padding: 10px 0;
  margin: 0px 0 0 0;
  background-color: #004080;
  border-radius: 0px;
}

.movil-dropdown-menu li {
  padding: 10px 0;
  text-align: center;
}

.movil-dropdown-menu a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 0px 0;
}

/* Mostrar el submenú cuando está activo */
.movil-dropdown.open .movil-dropdown-menu {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

/* Animación para suavizar la aparición */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Fondo de la página con la imagen */
main {
    background: url('img-style/main1.jpg') no-repeat center top;
    background-size: cover;
    position: relative;
    padding-top: 80px; /* Espacio debajo del navbar */
    min-height: 75vh;
    transition: background-image 1s ease-in-out; /* Transición suave entre las imágenes */
}

@media screen and (max-width: 768px) {
   main {
    min-height: 40vh;
   }
}

/* Degradado solo en la parte inferior de la imagen */
main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #002958, transparent);
    z-index: 1;
}

/* Texto centrado en el lado izquierdo */
.main-text {
    position: absolute;
    top: 50%;
    left: 5%; /* Ajusta según sea necesario */
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    z-index: 2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Sombra para mejorar la legibilidad */
}

.main-button {
    position: absolute;
    top: 56%;
    left: 9%; /* Ajusta según sea necesario */
    transform: translateY(-50%);
}

#saldoBtn {
    background: transparent;
    color: white;
    font-size: 25px;
    font-weight: bold;
    padding: 10px 15px;
    border: solid 2px white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

#saldoBtn:hover {
    background: white;
    color: black;
}

/* Responsividad para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
    main {
        background-size: auto 100%;
        text-align: center;
    }
    .main-text {
        font-size: 1.5rem;
        left: 13%;
    }
    .main-button {
        position: absolute;
        top: 56%;
        left: 15%; /* Ajusta según sea necesario */
        transform: translateY(-50%);
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Slider de Opciones */

.options-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #002958;
    /* Azul elegante */
    padding: 15px;
    /* Espaciado reducido */
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.options-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(33.33% * 5);
    /* Espacio suficiente para las 5 opciones */
}

.option {
    flex: 0 0 33.33%;
    /* Mostrar solo 3 opciones al mismo tiempo */
    text-align: center;
    margin: 0 5px;
    /* Espaciado mínimo entre opciones */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: 0.3s;
}

.option img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.option p, a {
    color: white;
    margin-top: 5px;
    /* Espaciado reducido */
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.option:hover {
    transform: scale(1.2);
    /* Aumenta tamaño */
    cursor: pointer;
    border-bottom: solid 1px white;
}

.option:hover img {
    transform: scale(1.2);
    /* Aumenta el tamaño del icono proporcionalmente */
}


/* Flechas */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    opacity: 0;
}

.slider-arrow:hover {
    width: 50px;
    height: 50px;
    opacity: 0;
}

.left-arrow {
    left: 20px;
    /* Ajuste para que no estén tan a los lados */
}

.right-arrow {
    right: 20px;
    /* Ajuste para que no estén tan a los lados */
}

.slider-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Asegurar que el contenedor se ajuste al tamaño en pantallas pequeñas */

@media screen and (max-width: 768px) {
    .option {
        flex: 0 0 32%;
        /* Mostrar 2 opciones a la vez en pantallas más pequeñas */
    }
    .options-slider-container {
        padding: 10px;
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Estilo para la barra de desplazamiento */

::-webkit-scrollbar {
    width: 10px;
    /* Aumento un poco el tamaño de la barra */
}


/* Estilo para el "thumb" (parte que se arrastra) */

::-webkit-scrollbar-thumb {
    background: #07253d;
    /* Azul oscuro para el "thumb" */
    border-radius: 5px;
    /* Bordes más redondeados */
    border: 2px solid #ffffff;
    /* Agrega un borde blanco para mayor contraste */
}


/* Efecto cuando el usuario pasa el cursor sobre el "thumb" 
::-webkit-scrollbar-thumb:hover {
    /*background: #¿3a5a75; /* Un azul más claro para el "hover" 
}*/


/* Estilo para la pista de la barra de desplazamiento */

::-webkit-scrollbar-track {
    background: #e0e0e0;
    /* Color claro para la pista */
    border-radius: 5px;
    /* Bordes redondeados en la pista */
}


/* Agregar sombra al "thumb" cuando se está arrastrando */

::-webkit-scrollbar-thumb:active {
    background: #07253d;
    /* Color original al hacer clic */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* Sombra para efecto */
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/


/* Carrusel */

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    width: 400%;
    /* Cuatro imágenes, cada una ocupa el 25% del ancho */
}

.carousel-slide {
    width: 100%;
    display: inline-block;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #002958, transparent);
    z-index: 1;
}


.carousel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #001d3f, transparent);
    z-index: 1;
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/


/* Flechas de navegación */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    /* Tamaño de las flechas ajustado a 60px */
    height: 60px;
    /* Tamaño de las flechas ajustado a 60px */
    cursor: pointer;
    z-index: 10;
    /* Asegura que las flechas siempre estén visibles */
    transition: .3s;
}

.carousel-arrow:hover {
    width: 80px;
    height: 80px;
}

.left-arrow {
    left: 30px;
    /* Espaciado ajustado para centrarlas mejor */
}

.right-arrow {
    right: 30px;
    /* Espaciado ajustado para centrarlas mejor */
}


/* Asegurar que las flechas se mantengan centradas verticalmente */

.carousel-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Para mantener la proporción de la imagen */
}

.carousel-slide video {
    position:absolute;
}

/* Responsive Design */

@media screen and (max-width: 768px) {
    .carousel-slide img {
        height: 200px;
        /* Menor altura en pantallas pequeñas */
    }
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Modificaciones para hacerlo responsive */
.tittle {
    color: white;
    font-size: clamp(16px, 4vw, 20px); /* Tamaño responsive */
    padding: 10px 0;
}

.botones {
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto; /* Cambiado de height fijo */
    overflow: hidden;
    color: #e2e0e0;
}

.copion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Más flexible */
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    padding: 10px 0; /* Espaciado adicional */
}

.abc {
    background: #001d3f;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 244, 244, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    border: 5px double white;
    margin-bottom: 20px; /* Espacio entre filas */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .copion {
        grid-template-columns: 1fr; /* Una columna en móviles */
        width: 95%;
    }
    
    .abc {
        max-width: 100%; /* Ocupa todo el ancho */
    }
}

/* El resto del CSS se mantiene igual */
.image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abc h2 {
    margin: 15px 0;
    font-size: clamp(16px, 3vw, 20px); /* Título responsive */
    padding: 0 10px; /* Añadido para no pegar a los bordes */
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, #000, #2980b9);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.abc:hover {
    transform: scale(1.05);
}

.abc:hover .news-content {
    transform: translateY(0);
    background: linear-gradient(120deg, #000, #2980b9);
}

.summary {
    margin-top: 10px;
    font-size: 14px;
}

#news-Btn {
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border: solid 2px white;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    margin: 20px 0; /* Más espacio alrededor */
}

#news-Btn:hover {
    background: white;
    color: #002958;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------*/

/* Contenedor principal */

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}


/* Video grande */

.video-player {
    width: 80%;
    /* Ancho del video (puedes ajustar este tamaño) */
    max-width: 800px;
    /* Limitar el tamaño máximo */
    margin-bottom: 20px;
    /* Espaciado debajo del video grande */
    background-color: black;
    /* Fondo negro para el video */
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-player video {
    width: 100%;
    height: auto;
}


/* Miniaturas de los videos */

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 38px;
    /* Mayor espacio entre miniaturas */
    flex-wrap: wrap;
}

.thumbnail {
    width: 125px;
    /* Ancho aumentado de las miniaturas */
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #001d3f;
    transition: transform 0.3s ease, border 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Efecto al pasar el cursor sobre la miniatura */

.thumbnail:hover {
    transform: scale(1.1);
}

/*-----------------------------------------------------------------------------------------------------------------------------------------*/

footer {
    background-color: #001d3f;
    color: whitesmoke;
    padding: 20px;
    text-align: center;
}

.enlaces-interes,
.redes-sociales,
.informacion-adicional {
    margin-bottom: 20px;
}

.enlaces-interes ul {
    list-style-type: none;
    padding: 0;
}

.enlaces-interes li {
    display: inline;
    margin-right: 10px;
}

.redes-sociales img {
    width: 40px;
    height: 40px;
    margin-right: 25px;
}

/**saldo*/
.matel {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-top: 80px;
    background: linear-gradient(120deg, #000, #007bff);
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 350px;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.8s ease-in-out;
}

h2, h3 {
    margin-bottom: 25px;
    font-size: 26px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 7px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff; /* Color del texto en blanco */
    outline: none;
}

/* Estilo para el placeholder */
.form-group input::placeholder {
    color: #fff; /* Color del placeholder en blanco */
    opacity: 0.8; /* Opacidad ligeramente reducida para mejor contraste */
}

.input-group-append button {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    color: #fff;
    background: #2980b9;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group-append button:hover {
    background: #3498db;
    transform: scale(1.05);
}

.alert {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 0, 0, 0.2);
    color: #fff;
    margin-bottom: 20px;
}

.resultados {
    color: #fff;
}

.custom-form-control {
    background: rgba(255, 255, 255, 0.2);
    color: #fff; /* Color del texto en blanco */
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 15px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.shake {
    animation: shake 0.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/**continuacion*/
html, body {
    height: 100%;
    margin: 0;
}

/* Centra el contenido dentro del container */
.container {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    height: 100vh; /* Ocupa toda la altura de la ventana */
    padding: 20px; /* Espaciado opcional */
    box-sizing: border-box; /* Incluye el padding en el cálculo del tamaño */
}

/* Estilos para el contenido dentro del container */
.content {
    max-width: 600px; /* Ancho máximo del contenido */
    width: 100%; /* Ocupa el 100% del ancho disponible */
    text-align: center; /* Centra el texto */
}

/* Estilos para el formulario y resultados */
.form-group {
    margin-bottom: 1rem;
}

.btn-primary {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
}

.resultados {
    margin-top: 2rem;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
/* Estilos para el contenedor del input y el botón */
.input-group {
    display: flex; /* Usamos flexbox para alinear el input y el botón */
    align-items: stretch; /* Asegura que ambos elementos tengan la misma altura */
}

/* Estilos para el input */
.form-control {
    flex: 1; /* El input ocupa el espacio restante */
    border-top-right-radius: 0; /* Elimina el borde redondeado del lado derecho */
    border-bottom-right-radius: 0;
    margin-right: -1px; /* Elimina el espacio entre el input y el botón */
}

/* Estilos para el botón */
.btn-primary {
    border-top-left-radius: 0; /* Elimina el borde redondeado del lado izquierdo */
    border-bottom-left-radius: 0;
    white-space: nowrap; /* Evita que el texto del botón se divida en varias líneas */
    padding: 0.5rem 1rem; /* Ajusta el padding del botón */
}
.btn-primary {
    background-color: #007bff; /* Color de fondo del botón (puedes cambiarlo) */
    border-color: #007bff; /* Color del borde del botón */
    color: white; /* Texto en blanco */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    white-space: nowrap;
    padding: 0.5rem 1rem;
}
label {
    color: white; /* Texto de las etiquetas en blanco */
}
/* Estilos para logos de bancos */
.bancos-container {
    text-align: center;
    padding: 20px 0;
}

.bancos-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banco-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.banco-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.banco-link:hover {
    transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .bancos-logos {
        gap: 20px;
    }
    
    .banco-logo {
        width: 100px;
        height: 50px;
    }
}