html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Carrusel Animations */
#hero-carousel-track,
#carousel-track {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Indicadores de carrusel */
.hero-indicator,
.carousel-indicator {
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicator:hover,
.carousel-indicator:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Botones de navegación del carrusel */
#carousel-prev,
#carousel-next {
  transition: all 0.3s ease;
  cursor: pointer;
}

#carousel-prev:hover,
#carousel-next:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

#carousel-prev:active,
#carousel-next:active {
  transform: scale(0.95);
}

/* Animación de fade-in para slides */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content {
  animation: fadeIn 0.6s ease-out;
}

/* Hover effects para cards */
.hover\:shadow-2xl {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover\:shadow-2xl:hover {
  transform: translateY(-4px);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Mejoras para imágenes SVG */
img[src$=".svg"] {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}