/* SicoLabs Base Styles */
:root {
  --teal-600: #0d9488;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: 'Inter', -apple-system, sans-serif;
}

#root {
  min-height: 100vh;
}

/* Transiciones suaves para el carrusel */
.carousel-item {
  transition: opacity 1s ease-in-out;
}

/* Estilos para que el texto sea legible sobre imágenes */
.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.text-shadow-lg {
  text-shadow: 0 4px 12px rgba(0,0,0,0.25);
}