html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Estilos para el logo en la página principal */
.hero-logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 2rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 250px;
  }
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Estilos adicionales para ChikiCut */
.chikicut-navbar {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chikicut-dropdown {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chikicut-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}

.brand-logo i {
  font-size: 1.5rem;
}

.brand-main {
  font-weight: 700;
  font-size: 1.4rem;
}

.brand-subtitle {
  font-size: 0.7rem;
  opacity: 0.8;
}

.stats-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stats-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.welcome-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  margin: -1.5rem -15px 2rem -15px;
  border-radius: 0 0 20px 20px;
}

/* Botón y borde cyan personalizado para dashboard admin */
.btn-cyan {
  background-color: #17d4e3;
  color: #fff;
  border-color: #17d4e3;
}
.btn-cyan:hover, .btn-cyan:focus {
  background-color: #13bfc9;
  color: #fff;
  border-color: #13bfc9;
}
.border-cyan {
  border: 1.5px solid #17d4e3 !important;
}
.text-cyan {
  color: #17d4e3 !important;
}
