html, body {
  overflow-x: hidden;
}

body {
  background-color: #f8f9fa;
}
.card {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Ajuste automático general, no necesitas modificar individualmente */
/* .carousel-custom .carousel-inner {
  height: 400px; 
} */


/* Estilo para hacer la navbar más pequeña */
.navbar {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

/* Reducir tamaño del logo */
.navbar-brand img {
  height: 30px; /* Puedes ajustar este valor */
}

/* Reducir el espaciado de los ítems */
.navbar-nav .nav-link {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  font-size: 0.90rem; /* También puedes reducir el tamaño de fuente */
}

.flag-btn.selected {
  /* Sobrescribo estilos para mostrar el seleccionado */
  background-color: #0d6efd !important; /* color primario bootstrap */
  border-color: #0d6efd !important;
}

.flag-btn img {
  pointer-events: none; /* Evita que el click pase al img, no al botón */
}

.btn-flotante-pse {
  width: 60px;
  height: 60px;
  z-index: 1050;
  transition: transform 0.2s ease-in-out;
  border: 2px solid #0d6efd;
}

.btn-flotante-pse:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}

.tooltip-inner {
  background-color: #0d6efd;
  color: white;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
}

.tooltip.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.tooltip.bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #0d6efd;
}

/* .card-img-top {
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.1);
} */


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* Opcional, para indicar que es interactiva */
}

.card:hover {
  transform: scale(1.05); /* Agranda un 5% */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra para dar profundidad */
  z-index: 10; /* Para que se superponga si hay otras tarjetas cerca */
  position: relative; /* Para que z-index funcione */
}

/* #filtros-productos {
  position: sticky;
  top: 56px;
  z-index: 1020;
  background: white;
} */
.header-bar {
  background: linear-gradient(to right, #1f1f1f, #2c2c2c);
  color: white;
  padding: 20px;
}
.color-bar {
  height: 5px;
  background: linear-gradient(to right, #0095d9, #7f3f98, #e30613, #ffc20e, #00a651);
}
.logos img {
  max-height: 80px;
  margin: 10px;
}
.toolcraft-img {
  max-width: 250px;
}
.toolcraft-img-ga {
  max-width: 450px;
}
.footer-bar {
  background-color: #003366;
  color: white;
  padding: 20px;
  font-weight: bold;
}
.footer-bar i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #0d6efd;
}