body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Sección principal */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.btn-warning {
  background-color: #F4845F !important;  /* color de fondo personalizado */
  border-color: #F4845F !important;      /* color del borde */
  color: white !important;               /* color del texto */
  width: 200px;
}

.btn-warning:hover {
  background-color: #cc5200 !important;  /* color al pasar el mouse */
  border-color: #cc5200 !important;
  color: white !important;
}

.btn-home{
    width: 150px;
}

/* Estilo base para los enlaces del menú */
.navbar-nav .nav-link {
  color: #ffffff !important;       /* texto blanco brillante */
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

/* Estilo al pasar el mouse */
.navbar-nav .nav-link:hover {
  font-weight: 700;                /* más negrita */
  
  color: #f8f9fa !important;       /* tono más claro aún */
}


/* Fondo con zoom infinito */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('bg-home.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: zoomOut 15s ease-in-out infinite alternate;
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}

/* Capa negra encima del fondo */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Al pasar el mouse, zoom al 1.25x */
.hero-section:hover::before {
  transform: scale(1.25);
}

/* Contenido visible */
.hero-section .container {
  position: relative;
  z-index: 2;
  color: white;
}

/* Animación de zoom */
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Efecto de escritura tipo máquina de escribir */
/* Texto con efecto máquina de escribir */
.typing-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0px solid white;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  animation: blink 1s step-end infinite;
}

/* Parpadeo del cursor */
@keyframes blink {
  0%, 100% {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}


