/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/
@font-face {
  font-family: 'Velocista';
  src: url('../fonts/Velocista-Demo-FFP.ttf') format('truetype');
}

@font-face {
  font-family: 'Cooper Black';
  src: url('../fonts/COOPBL.TTF') format('truetype');
}

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

html,
body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

/* configuracion principal */
body {
  background: rgba(12, 30, 64, 0.9);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-family: Arial, sans-serif;
  padding-top: 190px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1300px;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
}

.logo img {
  text-align: center;
  display: flexbox;
  margin: auto;
  width: 90%;
  margin-top: 5px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.header_midil {
  background: linear-gradient(to right, rgb(12, 30, 64), #0c1e40, rgb(204, 21, 21));
  width: 100%;
}

/*-- navigation--*/
.navigation.navbar {
  margin-top: 35px;
}

/* Alineación y tamaño de los íconos */
.navigation.navbar-dark .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.navigation.navbar-dark .navbar-nav .nav-link i {
  padding: 4px 0px;
  margin-top: -2px;
}

/* Asegurarse de que el texto y los íconos estén alineados */
.navigation.navbar-dark .navbar-nav .nav-link {
  padding: 4px 0px;
  margin: 0 8px;
  color: rgb(255, 255, 255);
  font-size: 28px !important;
  font-family: Velocista !important;
  line-height: 1.5;
  text-transform: uppercase;
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(25, 87, 194));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 0.2em;
  transition: background-size 0.7s ease;
  display: flex;
  align-items: center;
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(25, 87, 194));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  transition: background-size 0.7s ease;
  color: rgb(157, 157, 157);
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgb(25, 87, 194));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  transition: background-size 0.7s ease;
  color: rgb(45, 120, 249);
}

/** end configuracion principal **/

/* inicio */

/* Estilos para el contenedor principal */
.banner_main {
  position: relative;
  width: 100%;
  height: 450px;
  /* Ajusta la altura según tus necesidades */
  overflow: hidden;
  margin-top: -15px;
  background-color: rgb(34, 34, 34);
}

/* Estilos para la imagen de fondo */
.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ajusta la imagen al contenedor */
}

/* Superposición para oscurecer la imagen de fondo */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  /* Oscurece la imagen */
}

/* Contenedor para el contenido (texto e imágenes) */
.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: list-item;
}

/* Estilos para el texto dentro de cada diapositiva */
.slide-text {
  flex: 1;
  /* Ocupa el 50% del ancho */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  /* Espacio a la izquierda */
  color: rgb(255, 255, 255);
  /* Color del texto */
  font-family: Velocista;
}

.slide-text h2 {
  font-size: 70px;
  /* Ajusta el tamaño según tus necesidades */
  margin: 50px;
  margin-bottom: -150px;
  margin-top: 80px;
}

/* Estilos para el texto dentro de cada diapositiva */
.slide-text2 {
  flex: 1;
  /* Ocupa el 50% del ancho */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  /* Espacio a la izquierda */
  color: rgb(255, 255, 255);
  /* Color del texto */
}

.slide-text2 h2 {
  font-size: 35px;
  /* Ajusta el tamaño según tus necesidades */
  margin: 200px;
}

.conoce {
  font-family: Velocista;
  margin-bottom: 50px;
  margin-top: 10px;
  text-align: center;
  color: rgb(0, 0, 0);
}

/* Slider de Marcas */
.slider {
  width: 100%;
  height: auto;
  margin: auto;
  overflow: hidden;
  padding: 30px;
  background-color: rgb(161, 161, 161);
  margin-bottom: -20px;
}

.slider .slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(300px * 18);
  /* 9 imágenes originales x 2 = 18 imágenes */
}

.slider .slide {
  width: 300px;
}

.slider .slide img {
  width: 70%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-300px * 9));
    /* Desplaza un conjunto completo de 9 imágenes */
  }
}

.buscar {
  margin-top: -60px;
  margin-bottom: 60px;
}

.img-color-black {
  filter: invert(100%) brightness(0%);
}

.text-b h1 {
  display: flex;
  align-items: center;
  /* Vertically center the items */
  justify-content: center;
  /* Horizontally center the items */
  color: rgb(255, 255, 255) !important;
  font-size: 60px;
  font-weight: bold;
  font-family: Velocista;
  margin-top: auto;
  flex-wrap: wrap;
}

/* Adjust the size of the arrow icon */
.text-b .arrow-icon {
  width: 60px;
  /* Fixed width for consistency */
  height: auto;
  margin-left: 25px;
  /* Space between arrow and car */
}

/* Adjust the size of the car icon */
.text-b .car-icon {
  width: 200px;
  /* Fixed width for consistency */
  height: auto;
  margin-left: 15px;
  /* Optional: Add space if needed */
}

/* Estilos específicos para el formulario de búsqueda en formato horizontal */
.search-form {
  background: rgb(237, 237, 237);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgb(45, 120, 249);
  padding: 20px 15px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border-top-left-radius: 0px !important;
}

.form-groupbuscador {
  flex: 1;
  min-width: 170px;
  position: relative;
}

.form-groupbuscador label {
  font-size: 25px;
  font-weight: bold;
  margin-top: -15px;
  margin-bottom: 0px;
  display: block;
  color: rgb(0, 0, 0);
  font-family: "Cooper Black";
}

.form-groupbuscador input {
  padding: 5px 10px !important;
}

.form-control {
  width: 100%;
  padding: 0px 10px !important;
  font-size: 16px;
  border-radius: 20px;
  border: 2px solid rgb(12, 30, 64);
  background-color: rgb(250, 250, 250);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 10px;
}

.form-control:focus {
  border-color: rgb(12, 30, 64);
  box-shadow: 0 0 20px rgb(45, 120, 249);
  ;
}

/* Botón de búsqueda más pequeño y centrado */
.search-button {
  background-color: rgb(12, 30, 64);
  color: rgb(255, 255, 255);
  border: none;
  padding: 6px 16px;
  /* Tamaño más pequeño */
  font-size: 18px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgb(45, 120, 249);
}

.search-button:hover {
  background-color: rgb(204, 21, 21);
  box-shadow: 0 4px 25px rgb(45, 120, 249);
}

/* Centrar el contenedor del botón */
.button-group {
  width: auto;
  /* Ajustar el ancho del contenedor del botón */
  display: flex;
  justify-content: center;
}

.nav-tabs {
  margin-top: -20px;
  border-bottom: 0px;
  border-color: none !important;
}

.nav-tabs li {
  background: rgb(237, 237, 237);
  box-shadow: 0 -8px 20px -8px rgb(45, 120, 249);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-color: none !important;
}

.nav-tabs button.active {
  color: rgb(0, 0, 0) !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.nav-tabs button {
  color: rgb(99, 99, 99);
  font-size: 17px;
  font-family: Velocista;
  text-transform: uppercase;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.nav-tabs button:hover {
  color: rgb(0, 0, 0);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border: none !important;
}

.botonbuscador {
  background-color: rgb(237, 237, 237);
  border: none;
  cursor: pointer;
  padding: 10px 10px;
  font-size: 18px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.botonbuscador:hover {
  background-color: rgb(237, 237, 237);
  box-shadow: 0 8px 30px rgb(45, 120, 249);
  color: rgb(0, 0, 0);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

/** end inicio **/

/*nosotros*/
.linea-separacion {
  border: 0;
  height: 3px;
  background-color: rgb(204, 21, 21);
  margin-right: 405px;
  margin-top: -15px;
}

.section-title {
  font-size: 30px !important;
  text-transform: uppercase;
  color: rgb(204, 21, 21) !important;
  text-align: left !important;
  margin-bottom: 20px !important;
  letter-spacing: 5px;
  font-family: monospace;
  font-weight: bold;
}

.section-subtitle {
  font-size: 42px !important;
  color: rgb(255, 255, 255) !important;
  text-align: left !important;
  margin-bottom: 20px !important;
  font-family: Velocista;
  margin-top: -2px;
}

.paragra {
  text-align: justify;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.about-section img {
  width: 100% !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 26px rgba(255, 255, 255, 0.8) !important;
}

.about-section {
  margin-top: -65px !important;
}

.about-us {
  background-color: rgb(124, 16, 16) !important;
  font-size: 20px;
}

.icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 30px;
}

.mivivaimg {
  width: 40%;
}

/* Estilo para el título principal */
.compromiso {
  font-size: 35px;
  font-family: Velocista;
  margin-bottom: 40px;
  color: rgb(255, 255, 255);
  border-radius: 20px !important;
}

/* Estilo de fondo para los encabezados de las tarjetas */
.bg-gradient {
  background: rgb(12, 30, 64);
  border-radius: 50px 17px 0 0 !important;
  border-color: none;
  border: none;
  /* Borde superior redondeado */
}

/* Estilo para los encabezados de las tarjetas */
.miviva {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* Estilo para las tarjetas */
.card {
  border-radius: 20px;
  box-shadow: 0 12px 20px rgba(255, 255, 255) !important;
}

/* Estilo para el texto de las tarjetas */
.card-text {
  font-size: 20px;
  color: rgb(0, 0, 0);
  text-align: justify;
}

.linea-separacion2 {
  border: 0;
  height: 3px;
  background-color: rgb(204, 21, 21);
  margin-right: 500px;
  margin-left: 495px;
  margin-top: -15px;
}

.section-title2 {
  font-size: 30px !important;
  text-transform: uppercase;
  color: rgb(204, 21, 21) !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  letter-spacing: 5px;
  font-family: monospace;
  font-weight: bold;
  margin-top: -30px;
}

.section-subtitle2 {
  font-size: 42px !important;
  color: rgb(255, 255, 255) !important;
  text-align: center !important;
  margin-bottom: 20px !important;
  font-family: Velocista;
  margin-top: -2px;
}

.testi {
  color: rgb(204, 21, 21);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
  margin-bottom: -15px;
}

.testimonials .testimonial-card {
  border-radius: 20px !important;
  padding: 10px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.6) !important;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border: 5px rgb(0, 0, 0);
}

.testimonials .testimonial-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgb(255, 255, 255) !important;
}

/*fin nosotros*/

/** productos **/
.form-center {
  text-align: center;
  margin-top: 0px;
  margin-bottom: -20px;
}

.btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  /* El botón está oculto por defecto */
  background: linear-gradient(to right, #0c1e40, #cc1515);
  color: white;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 1000;
  /* Asegura que el botón esté por encima de otros elementos */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.btn-back-to-top:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.ver-aplicaciones-link {
  color: #1900ff;
  font-size: clamp(1.2rem, 2.5vw, 1.2rem) !important;
  font-weight: bold;
}

.ver-aplicaciones-link:hover {
  text-decoration: underline;
}

.cantidad-container {
  position: relative;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.texto-cantidad {
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
}

.cantidad-select {
  width: 4.5rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid rgb(0, 0, 0) !important;
  padding: 0.3rem 0.5rem !important;
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  margin-top: 10px !important;
}

.cantidad-select {
  cursor: pointer;
}

.cantidad-select:focus {
  border-color: #000000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

/* Placeholder style for the default selected option */
.cantidad-select option[disabled] {
  display: none;
}

.product-card {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 40px;
  overflow: hidden;
  transition: transform 0.3s;
  background: rgb(199, 199, 199);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  margin-top: 0px;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.product-info {
  padding: 25px;
  text-align: left;
}

.product-title {
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  font-weight: bold;
  color: rgb(0, 0, 0);
  margin-top: -10px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.product-details {
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  color: rgb(0, 0, 0);
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.product-price {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.8rem) !important;
  font-weight: bold;
  color: rgb(29, 122, 51);
  margin-top: 0px;
  margin-bottom: 20px;
}

.btn-comprar,
.btn-carrito {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  font-family: Arial, sans-serif;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 5px 20px rgb(0, 0, 0, 0.5);
}

.btn-comprar {
  background-color: rgba(37, 171, 68, 0.58);
  color: rgb(0, 0, 0);
}

.btn-comprar:hover {
  background-color: rgb(33, 136, 56);
  transform: translateY(-2px);
}

.btn-carrito {
  background-color: rgba(255, 193, 7, 0.494);
  color: rgb(0, 0, 0);
}

.btn-carrito:hover {
  background-color: rgb(224, 168, 0);
  transform: translateY(-2px);
}

.pagination {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  flex-wrap: wrap;
}

.page-item.active .page-link {
  background-color: rgb(255, 0, 0);
  color: hsl(0, 0%, 100%);
  border: none;
}

.page-link {
  color: rgb(0, 0, 0);
  margin: 5px;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
  font-weight: bold;
  background-color: rgb(255, 255, 255);
  border: none;
  box-shadow: 0 0 4px 4px rgb(0, 0, 0);
}

.page-link:hover {
  color: rgb(0, 0, 0);
  background-color: rgba(255, 0, 0, 0.616);
  border: none;
}

.carousel-item img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px;
}

/* Estilos específicos para los botones */
.form-center2 .btnar-custom {
  background-color: rgba(204, 21, 21, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 130px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btnar-custom:hover {
  background-color: rgba(204, 21, 21, 0.9) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(204, 21, 21);
}

.form-center2 .btna-custom {
  background-color: rgba(204, 21, 21, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 120px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btna-custom:hover {
  background-color: rgb(204, 21, 21) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(255, 0, 0);
}

/*Kem*/
.form-center2 .btnak-custom {
  background-color: rgba(255, 179, 0, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 120px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btnak-custom:hover {
  background-color: rgb(255, 177, 0) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(255, 177, 0);
}

/*Master*/
.form-center2 .btnam-custom {
  background-color: rgb(6, 27, 130, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 120px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btnam-custom:hover {
  background-color: rgb(6, 27, 130) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(6, 27, 130);
}

/*Tomco*/
.form-center2 .btnat-custom {
  background-color: rgb(0, 91, 185, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 120px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btnat-custom:hover {
  background-color: rgb(0, 91, 185) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(0, 91, 185);
}

/*Uniflow / Econoflow*/
.form-center2 .btnau-custom {
  background: linear-gradient(rgb(0, 144, 68, 0.6), rgb(0, 121, 190, 0.6)) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 180px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center2 .btnau-custom:hover {
  background: linear-gradient(rgb(0, 144, 68), rgb(0, 121, 190)) !important;
  color: rgb(255, 255, 255) !important;
  /* Ejemplo de dos capas con distinto blur/spread */
  box-shadow:
    0 0 5px 2px rgb(0, 144, 68),
    0 0 10px 5px rgb(0, 121, 190);
}

.form-center2 {
  display: flex;
  gap: 10px;
  /* Separación entre los elementos */
  margin-top: 20px;
  margin-bottom: 50px;
}

.fancybox__content img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

/* end productos */

/* Ver aplicaciones */

/* ---------------------------------------------
   Título en su panel blanco
--------------------------------------------- */
.container>h2 {
  font-family: 'Velocista', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  background: rgb(255, 255, 255);
  padding: 15px 20px;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0, 3, 160, 0.8);
  margin-bottom: 20px;
  margin-top: -20px;
}

.parte {
  font-family: Verdana, Geneva, sans-serif !important;
  font-weight: bold;
  font-size: clamp(1rem, 2.5vw, 2rem);
  color: rgb(0, 0, 0);
}

/* ---------------------------------------------
   Texto informativo en panel blanco
--------------------------------------------- */
.texto-informacion {
  font-style: italic;
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-size: clamp(0.9rem, 2.5vw, 1.5rem);
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0, 26, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* ---------------------------------------------
   Galería de imágenes (sin panel blanco)
--------------------------------------------- */
.thumbnail-image {
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumbnail-image:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.9);
}


/* ---------------------------------------------
   Selección de cantidad y botones en panel blanco
--------------------------------------------- */
.cantidad-container4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: rgb(255, 255, 255);
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
  margin-bottom: 2rem;
  color: rgb(0, 0, 0);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
}

.cantidad-container4 .form-group {
  margin-bottom: 0;
}

.form-groupapli {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-groupapli input {
  flex: 1;
  min-width: 450px;
  margin-bottom: 10px;
}

.cantidad-selectapli {
  width: 4.5rem !important;
  border-radius: 0.5rem !important;
  border: 1px solid rgb(0, 0, 0) !important;
  padding: 0.3rem 0.5rem !important;
  font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
  margin-top: 10px !important;
}

.cantidad-selectapli {
  cursor: pointer;
}

.cantidad-selectapli:focus {
  border-color: #000000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5);
}

/* Placeholder style for the default selected option */
.cantidad-selectapli option[disabled] {
  display: none;
}

.btn-action {
  flex: 1 1 auto;
  width: 150px;
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.form-center3 {
  display: flex;
  gap: 10px;
  /* Separación entre los elementos */
  margin-top: -20px;
  margin-bottom: 40px;
}

.form-center3 .btnar-custom {
  background-color: rgba(204, 21, 21, 0.6) !important;
  color: rgb(0, 0, 0) !important;
  padding: 2px 5px !important;
  margin: 5px !important;
  border: 1px solid rgb(0, 0, 0) !important;
  border-radius: 50px !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold;
  width: 130px;
  box-shadow: 0 0 8px 8px rgb(0, 0, 0);
}

.form-center3 .btnar-custom:hover {
  background-color: rgba(204, 21, 21, 0.9) !important;
  color: rgb(255, 255, 255) !important;
  box-shadow: 0 0 5px 5px rgba(204, 21, 21);
}

/* End Ver aplicaciones */

/* cuenta */
.account-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  font-family: 'Arial', sans-serif;
  margin-bottom: 20px;
  margin-top: -110px;
}

.account-info h2 {
  margin-bottom: 25px;
  font-size: 30px;
  color: #1a57c2;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-family: VELOCISTA;
  margin-top: -15px;
}

.account-info p {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000000;
}

.account-info .label {
  font-weight: bold;
  color: #000000;
  font-size: 20px;
}

.btn-logout {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 20px;
  cursor: pointer;
  /* Cursor de puntero solo en el botón */
  text-align: center;
  margin-top: 40px;
  margin-bottom: -10px;
  font-weight: bold !important;
}

.btn-logout:hover {
  background-color: #c0392b;
}

/* Estilos para el historial de compras */
.purchase-history {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  font-family: 'Arial', sans-serif;
  margin-bottom: 50px;
  overflow: hidden;
  /* Para limitar el tamaño total */
  margin-top: -110px;
}

.purchase-history h2 {
  margin-bottom: 25px;
  font-size: 30px;
  color: #1a57c2;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-family: VELOCISTA;
  margin-top: -15px;
}

.purchase-history-table {
  max-height: 300px;
  /* Limitar el alto del área de la tabla */
  overflow-y: auto;
  /* Añadir barra de desplazamiento vertical cuando sea necesario */
}

.purchase-history table {
  width: 100%;
  margin-bottom: 0;
}

.purchase-history th,
.purchase-history td {
  padding: 10px;
  text-align: left;
  font-size: 2px;
  color: #000000;
}

.purchase-history th {
  font-weight: bold;
  color: #000000;
  font-size: 20px;
}

/* Estilos de barra de desplazamiento personalizados */
.purchase-history-table::-webkit-scrollbar {
  width: 8px;
}

.purchase-history-table::-webkit-scrollbar-thumb {
  background-color: #1a57c2;
  border-radius: 4px;
}

.purchase-history-table::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* fin cuenta*/

/*contacto*/
.contenedor-imagen {
  position: relative;
  margin-bottom: 30px;
  margin-top: -100px;
}

.contenedor-imagen img {
  width: 100%;
  height: 350px;
  filter: brightness(70%);
}

.letracontacto {
  color: #fff;
  font-family: Velocista;
  font-size: 35px;
}

.letracontacto2 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.texto-superpuesto {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
}

.boton-contacto {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.boton-contacto:hover {
  background-color: #0056b3;
}

/* Ajuste de las tarjetas de contacto */
.contacto .caja {
  background-color: rgb(238, 238, 238);
  padding: 10px;
  margin: 15px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgb(25, 87, 194);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  text-align: center;
  margin-bottom: 50px;
}

.contacto .caja:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 16px rgb(25, 87, 194) !important;
}

.contacto .caja h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 5px;
  font-weight: bold;
}

.contacto .caja p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 5px;
}

.formulario {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgb(204, 21, 21);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  margin-bottom: 30px;
}

.formulario:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 16px rgb(204, 21, 21) !important;
}

.formulario h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #1a57c2;
  font-family: Velocista;
  font-size: 28px;
  margin-bottom: -5px;
}

.formulario .fila {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 5px;
}

.formulario .campo {
  flex: 1;
  min-width: 200px;
}

.formulario .campo input,
.formulario .campo textarea {
  width: 100%;
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #a1a1a1;
  margin-top: 0px;
}

.formulario button {
  display: block;
  width: 25%;
  padding: 10px;
  background-color: #1a57c2;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.formulario button:hover {
  background-color: #004a9f;
}

/* Notificación estilo "toast" */
.toastcontacto {
  visibility: hidden !important;
  max-width: 50% !important;
  margin: 0 auto !important;
  background-color: #4caf50 !important;
  color: #fff !important;
  text-align: center !important;
  border-radius: 5px !important;
  padding: 16px !important;
  position: fixed !important;
  z-index: 1 !important;
  left: 50% !important;
  bottom: 30px !important;
  font-size: 17px !important;
  transform: translateX(-50%) !important;
  transition: visibility 0s, opacity 0.5s linear !important;
  opacity: 0 !important;
}

.toastcontacto.show {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ajuste redes sociales contacto */
.contactos .cajas {
  background-color: rgb(158, 158, 158);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 80px;
  margin-top: 20px;
}

.contactos .cajas h3 {
  font-size: 1.5rem;
  color: #000000;
  text-align: right;
  margin-top: 10px;
  margin-right: 30px;
}

.contactos .cajas img {
  float: left;
  width: 15%;
  margin-top: 0px;
  margin-left: 10px;
  border-radius: 10px;
}

.contactos a {
  display: block;
  /* Asegura que todo el contenedor sea clickeable */
  border-radius: 15px;
  /* Reduce el radio para ser consistente */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Animaciones suaves */
  box-shadow: 0 0px 25px rgba(255, 255, 255);
  /* Sombra más sutil */
  text-decoration: none;
  /* Quita el subrayado de los enlaces */
}

.contactos a:hover {
  transform: translateY(-5px);
  /* Efecto de elevación */
  box-shadow: 0 8px 16px rgba(255, 255, 255);
  /* Aumenta la sombra en el hover */
}

.colorredes {
  color: rgb(204, 21, 21);
}

.redes {
  background-color: rgb(9, 29, 62, 0.8);
  margin: auto;
  text-align: center;
  padding: 20px;
  margin-bottom: -20px;
}

.redes h1 {
  color: #fff;
  font-family: Velocista;
  font-size: 35px;
}

.redes p {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin-top: 0px;
}

/*end contacto*/

/** footer **/

.footer {
  padding-top: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  margin-top: 20px;
  background: linear-gradient(to right, rgb(12, 30, 64), #0c1e40, rgb(204, 21, 21));
}

.logo2 img {
  float: left;
  width: 70%;
}

.footer h3 {
  color: rgb(255, 255, 255);
  font-family: Velocista !important;
  font-size: 25px;
  line-height: 5px;
  text-align: left;
  margin-bottom: 15px;
  margin-top: 20px;
}

ul.location_icon {
  padding-top: 15px;
}

ul.location_icon li {
  font-size: 20px;
  line-height: 0px;
  color: rgb(255, 255, 255);
  text-align: left;
  padding-bottom: 0px;
  float: left;
  padding-right: 13px;
  list-style-type: none;
}


ul.location_icon li a {
  font-size: 22px;
  color: rgb(255, 255, 255);
  line-height: 35px;
  display: flex;
  align-items: center;
}

ul.social_icon {
  float: left;
}

ul.social_icon img {
  border-radius: 10px;
  width: 100%;
}

.social_icon li {
  display: inline-block;
  margin-right: 10px;
}

ul.social_icon li a {
  width: 60px;
  float: left;
}

ul.link_icon li {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.footer h3 {
  font-weight: bold !important;
  margin-bottom: 25px;
  margin-top: 25px;
}

ul.link_icon li a {
  color: #fff;
  float: left;
  text-align: left;
  line-height: 20px;
  font-size: 20px;
}

ul.link_icon li p {
  color: rgb(255, 255, 255);
  float: left;
  text-align: left;
  line-height: 20px;
  font-size: 20px;
  margin-bottom: 5px;
}

ul.link_icon li a:hover {
  color: rgb(45, 120, 249);
}

.copyright {
  background-color: rgb(45, 120, 249);
  padding: 5px 0;
  /* Ajusta el padding superior e inferior para reducir el espacio */
  margin: 0;
  /* Elimina márgenes adicionales */
  text-align: center;
  /* Centra el texto */
}

.copyright p {
  color: rgb(0, 0, 0);
  margin: 0;
  /* Elimina el margen del párrafo */
  font-size: 20px;
  /* Ajusta el tamaño del texto si es necesario */
  font-family: "Cooper Black";
}

/** end footer **/

/* login*/
.show-passwordlogin {
  cursor: pointer !important;
  position: absolute !important;
  right: 18px !important;
  top: 8px !important;
  color: rgb(0, 0, 0) !important;
  font-size: 20px;
}

.contalogin {
  background: rgba(137, 137, 137, 0.5);
  padding: 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.99);
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: VELOCISTA;
  margin: 0 auto;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: -40pxpx;
  margin-bottom: 100px;
}

.contalogin h2 {
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
  font-size: 50px;
  text-align: center;
}

.contalogin p {
  color: #000000;
  font-size: 20px;
  text-align: center;
  margin-bottom: -10px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-group input {
  flex: 1;
  min-width: 450px;
  margin-bottom: 10px;
}

.btn-container {
  display: flex;
  /* Coloca los botones uno al lado del otro */
  justify-content: space-between;
  /* Espacio entre los botones */
  margin-top: 10px;
  /* Añadir un margen superior para separar de los campos de entrada */
}

.btn-login,
.btn-secondarylogin {
  background-color: rgba(204, 21, 21, 0.8) !important;
  color: #fff !important;
  width: 100% !important;
  padding: 5px !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 20px !important;
  font-family: Arial, sans-serif !important;
  font-weight: bold !important;
  margin-top: -5px !important;
  text-align: center !important;
  cursor: pointer !important;
  flex: 1;
  /* Permite que ambos botones ocupen el mismo espacio */
  margin: 0 25px;
  /* Añade un pequeño margen entre los botones */
}

.btn-login:hover,
.btn-secondarylogin:hover {
  background-color: rgba(12, 30, 64, 0.8) !important;
  /* Mismo efecto hover */
}

.linklogin {
  color: rgb(255, 255, 255) !important;
  text-decoration: none !important;
}

.linklogin:hover {
  color: rgb(0, 0, 0) !important;
  text-decoration: underline !important;
}

/* Estilo personalizado para los campos de entrada */
.custom-form-controllogin {
  width: 100% !important;
  padding: 10px !important;
  font-size: 16px !important;
  border: 1px solid rgb(255, 255, 255) !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.8) !important;
  background-color: rgb(250, 250, 250) !important;
}

.custom-form-controllogin:focus {
  outline: none;
  border-color: rgb(76, 175, 80) !important;
  box-shadow: 0 0 12px rgb(76, 175, 80, 0.8) !important;
}

/* end login */

/*Registro*/
.show-passwordregistro {
  cursor: pointer !important;
  position: absolute !important;
  right: 18px !important;
  top: 8px !important;
  color: rgb(0, 0, 0) !important;
  font-size: 20px;
}

.btn-container-registro {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-registro,
.btn-secondaryregistro {
  background-color: rgba(204, 21, 21, 0.8);
  color: #fff;
  width: 100%;
  padding: 5px;
  border: none;
  border-radius: 20px;
  font-size: 20px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin: 0 50px;
}

.btn-registro:hover,
.btn-secondaryregistro:hover {
  background-color: rgba(12, 30, 64, 0.8);
}

.containeregistro {
  background: rgba(137, 137, 137, 0.5);
  padding: 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.99);
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: VELOCISTA;
  margin: 0 auto;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: -20px;
  margin-bottom: 90px;
}

.containeregistro h2 {
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
  font-size: 2.5rem;
  text-align: left;
}

.containeregistro p {
  color: #000000;
  font-size: 20px;
  text-align: center;
  margin-bottom: -10px;
}

.form-groupregi {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-bottom: 5px;
  width: 100%;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-groupregi .col-md-4 {
  flex: 1 1 30%;
  /* Cada columna ocupa 30% para que quepan 3 en una fila */
  min-width: 300px;
}

.form-groupregi input {
  flex: 1;
  min-width: 300px;
  margin-bottom: 10px;
}

/* Estilo personalizado para los campos de entrada */
.custom-form-control {
  width: 100% !important;
  padding: 10px !important;
  font-size: 16px !important;
  border: 1px solid rgb(255, 255, 255) !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.8) !important;
  background-color: rgb(250, 250, 250) !important;
}

.custom-form-control:focus {
  outline: none;
  border-color: rgb(76, 175, 80) !important;
  box-shadow: 0 0 12px rgb(76, 175, 80, 0.8) !important;
}

/*end registro*/

/* RECUPERAR CONTRASEÑA*/

.contarecuperar {
  background: rgba(137, 137, 137, 0.5);
  padding: 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.99);
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: VELOCISTA;
  margin: 0 auto;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 100px;
}

.contarecuperar h2 {
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
  font-size: 50px;
  text-align: center;
}

.form-grouprecuperar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-grouprecuperar input {
  flex: 1;
  min-width: 450px;
  margin-bottom: 20px;
}

.btn-recupera,
.btn-secondaryrecupera {
  background-color: rgba(204, 21, 21, 0.8) !important;
  color: #fff !important;
  width: 100% !important;
  padding: 5px !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 20px !important;
  font-family: Arial, sans-serif !important;
  font-weight: bold !important;
  margin-top: -5px !important;
  text-align: center !important;
  cursor: pointer !important;
  flex: 1;
  /* Permite que ambos botones ocupen el mismo espacio */
  margin: 0 25px;
  /* Añade un pequeño margen entre los botones */
}

.btn-recupera:hover,
.btn-secondaryrecupera:hover {
  background-color: rgba(12, 30, 64, 0.8) !important;
  /* Mismo efecto hover */
}

/* END RECUPERAR CONTRASEÑA*/

/* CAMBIAR CONTRASEÑA */

.show-password {
  cursor: pointer !important;
  position: absolute !important;
  right: 18px !important;
  top: 8px !important;
  color: rgb(0, 0, 0) !important;
  font-size: 20px;
}

.contacambiar {
  background: rgba(137, 137, 137, 0.5);
  padding: 30px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.99);
  max-width: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-family: VELOCISTA;
  margin: 0 auto;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: 0px;
  margin-bottom: 100px;
  flex: 1 0 auto;
}

.contacambiar h2 {
  margin-bottom: 15px;
  color: rgb(255, 255, 255);
  font-size: 45px;
  text-align: center;
}

.form-groupcambiar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.form-groupcambiar input {
  flex: 1;
  min-width: 450px;
  margin-bottom: 20px;
}

.custom-form-controlcambiar {
  width: 100% !important;
  padding: 10px !important;
  font-size: 16px !important;
  border: 1px solid rgb(255, 255, 255) !important;
  border-radius: 18px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.8) !important;
  background-color: rgb(250, 250, 250) !important;
}

.custom-form-controlcambiar:focus {
  outline: none;
  border-color: rgb(76, 175, 80) !important;
  box-shadow: 0 0 12px rgb(76, 175, 80, 0.8) !important;
}

/* END CONTRASEÑA */

/*carrito*/
.textocarrito {
  font-family: Velocista;
  text-align: center;
  font-size: 40px !important;
  margin-top: -120px !important;
  color: rgb(255, 255, 255) !important;
}

.table-container {
  overflow-x: auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 0px 25px rgb(204, 21, 21) !important;
  background-color: rgb(255, 255, 255) !important;
  padding: 40px;
  border-radius: 30px;
}

.table-container:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 16px rgba(204, 21, 21) !important;
}

.table {
  border-collapse: collapse;
  /* Asegura que los bordes se unan */
}

.table thead th {
  background-color: rgb(27, 130, 194) !important;
  color: white !important;
  border: 1px solid rgb(0, 0, 0) !important;
  /* Añadir borde */
  text-transform: uppercase !important;
  font-size: 16px !important;
  font-family: 'Arial', sans-serif !important;
  padding: 5px !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  vertical-align: middle !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(237, 237, 237) !important;
}

.table td {
  padding: 10px !important;
  text-align: center !important;
  align-content: center;
  font-size: 15px !important;
  color: rgb(0, 0, 0) !important;
  vertical-align: middle !important;
  border: 1px solid rgb(0, 0, 0) !important;
  /* Añadir borde a las celdas */
  background-color: rgb(197, 197, 197);
}

.table td input {
  text-align: center !important;
  font-size: 20px !important;
  width: 800px;
  margin: auto;
}

.table img {
  width: 100px !important;
  border-radius: 15px !important;
}

.btn-customcarrito {
  font-size: 20px !important;
  padding: 10px 10px !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
  margin: 5px !important;
  font-weight: bold;
}

.btn-continuar {
  background-color: rgba(167, 40, 72, 0.6) !important;
  color: rgb(0, 0, 0) !important;
}

.btn-continuar:hover {
  background-color: rgb(136, 33, 43) !important;
  color: rgb(255, 255, 255) !important;
}

.btn-vaciar {
  background-color: rgba(231, 76, 60, 0.6) !important;
  color: rgb(0, 0, 0) !important;
}

.btn-vaciar:hover {
  background-color: rgb(192, 57, 43) !important;
  color: rgb(255, 255, 255) !important;
}

.btn-pagar {
  background-color: rgba(40, 167, 69, 0.6) !important;
  color: rgb(0, 0, 0) !important;
}

.btn-pagar:hover {
  background-color: rgb(33, 136, 56) !important;
  color: rgb(255, 255, 255) !important;
}

.btn-danger {
  border-radius: 20px;
}

.fixed-buttons {
  position: sticky !important;
  bottom: 0 !important;
  background-color: rgb(226, 226, 226) !important;
  padding: 15px 20px !important;
  display: flex !important;
  z-index: 1000 !important;
  border-top: 1px solid #dee2e6 !important;
  margin-bottom: -20px !important;
  margin-top: 40px;
  justify-content: right;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0 0px 25px rgb(25, 87, 194) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 8px !important;
}

.fixed-buttons:hover {
  transform: translateY(0px) !important;
  box-shadow: 0 -8px 16px rgb(25, 87, 194) !important;
}

#resumen-carrito {
  display: flex !important;
  flex-direction: row !important;
  gap: 2rem !important;
  margin-bottom: 8px !important;
}

#resumen-carrito p {
  margin: 0 !important;
  white-space: nowrap !important;
  font-size: clamp(1.2rem, 2.5vw, 2rem) !important;
  color: rgb(0, 0, 0);
}

/*end carrito*/

/* Camprar */
.table th,
.table td {
  vertical-align: middle !important;
}

.highlight {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 80px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  margin-top: -70px;
}

.highlight h1,
.highlight h2 {
  color: rgb(0, 0, 0);
  font-family: Velocista;
  font-size: 40px;
}

.highlight li {
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: -10px;
  font-size: clamp(1.1rem, 2.5vw, 2.5rem);
  list-style: none;
}

.highlight1 {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  margin-top: -50px;
}

.highlight1 h1,
.highlight1 h2 {
  color: rgb(0, 0, 0);
  font-family: Velocista;
  font-size: 40px;
  margin-bottom: 30px;
}

.table-responsive-comprar {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Para mejor experiencia en iOS */
  margin-bottom: -20px;
}

/* Opcional: evitar que la tabla “salte” el borde blanco */
.table-responsive-comprar table {
  min-width: 600px;
  /* o el mínimo que quieras según tus columnas */
}

.btn-customcomprar {
  font-size: 20px !important;
  padding: 5px 15px !important;
  border-radius: 20px !important;
  transition: all 0.3s ease !important;
  margin: 5px !important;
  font-weight: bold;
  margin-top: 10px !important;
}

.btn-realizar {
  background-color: rgba(40, 167, 69, 0.6) !important;
  color: rgb(0, 0, 0) !important;
}

.btn-realizar:hover {
  background-color: rgb(33, 136, 56) !important;
  color: rgb(255, 255, 255) !important;
}

/* Estilo personalizado para los campos de entrada */
.custom-form-controlcomprar {
  width: 100% !important;
  padding: 10px !important;
  font-size: 18px !important;
  border: 1px solid rgb(255, 255, 255) !important;
  border-radius: 20px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.8) !important;
  background-color: rgb(250, 250, 250) !important;
  margin-bottom: 20px;
}

.custom-form-controlcomprar:focus {
  outline: none;
  border-color: rgb(76, 175, 80) !important;
  box-shadow: 0 0 12px rgb(76, 175, 80, 0.8) !important;
}

.form-groupcomprar {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

/* end Comprar */