html, body {
  height: 100%;
  margin: 0;
}

body.bg-dark-blue {
  background-color: #0a1a32;
  color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .container {
    padding-top: 25rem !important;
    padding-bottom: 1rem !important;
  }
}

.row {
  flex-grow: 1;
}

.image-box {
  max-width: 40vw;
  width: 100%;
  min-width: 280px;
  max-height: 35vh;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.image-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(221, 207, 5, 0.8); /* naranja intenso */
}


.img-fluid {
  height: auto;
}

.image-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tooltip-inner {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  background-color:rgb(175, 83, 8); /* Naranja Bootstrap */
  color:rgb(255, 255, 255);            /* Azul noche para contraste */
  font-weight: bold;
  border-radius: 0.5rem;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #fd7e14 !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #fd7e14 !important;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #fd7e14 !important;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #fd7e14 !important;
}

