.container {
  max-width: 960px;
}

.icon-link > .bi {
  width: .75em;
  height: .75em;
}

/*
 * Custom translucent site header
 */

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #8e8e8e;
  transition: color .15s ease-in-out;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: #333;
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}


/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #22bb5e;
}

/* Animación de rebote */
.whatsapp-btn {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-10px);
  }
}

/* Para cambiar el tamaño del logo dentro del botón */
.whatsapp-btn svg {
  width: 40px;
  height: 40px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.social-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-item img {
  width: 100%; /* Ancho del 100% para llenar el contenedor */
  height: 500px; /* Altura fija */
  object-fit: cover; /* Mantiene la proporción y corta las partes que sobran */
  object-position: center;
}

.tarjeta {
  background-image: 
    linear-gradient(135deg, #e5e7e9  25%, transparent 25%, transparent 75%, #e5e7e9  75%),
    linear-gradient(225deg, #fccc0a 25%, transparent 25%, transparent 75%, #fccc0a 75%);
    background-color: white;
  }

.stars {
  color: #ffc107;
}
.stars-empty {
  color: #e4e5e9;
}

.subrayado-grueso {
  text-decoration: underline;
  text-decoration-color: #fccc0a;  /* Color del subrayado */
  text-decoration-thickness: 4px;  /* Grosor del subrayado */
  text-underline-offset: 3px;      /* Separación entre el texto y el subrayado */
}

.table-container {
  height: 300px; /* Altura fija para la tabla */
  overflow-y: auto; /* Habilitar desplazamiento vertical */
}

th {
  position: sticky;
  top: 0; /* Mantener el encabezado en la parte superior */
  background-color: #f8f9fa; /* Color de fondo del encabezado */
  z-index: 1; /* Asegurar que el encabezado esté sobre el contenido */
}

.fixed-button {
  position: fixed;
  bottom: 20px; /* Ajusta la distancia desde la parte inferior */
  right: 20px; /* Ajusta la distancia desde la parte derecha */
  background-color: #fccc0a; /* Color base */
  padding: 10px 20px; /* Espaciado interno */
  text-decoration: none; /* Sin subrayado */
  border-radius: 5px; /* Bordes redondeados */
  font-weight: bold; /* Negrita */
  transition: background-color 0.3s; /* Transición suave */
  animation: bounce 2s infinite;
  border: 2px solid rgb(var(--bs-dark-rgb));
}

.fixed-button:hover {
  background-color: #e6b700; /* Color al pasar el ratón */
}