body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #002547; /* color de fondo general */
  color: #fff;
  overflow-x: hidden;
}

.logo {
  max-width: 160px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.hero {
  height: 100vh;
  background-image: url('../images/istockphoto-133729032-2048x2048.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.4em;
}

.section-title {
  font-size: 2em;
  text-align: center;
  margin: 40px 0 20px;
  color: #002547;
}

.slider-container {
  padding: 20px 0 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.slider-container.alt {
  background: #f5f5f5;
}

.slider-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
}

.slide {
  flex: 0 0 80vw;
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.6); /* Fondo oscuro con transparencia */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
  color: white; /* Forzamos texto blanco */
}

.slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.slide h3 {
  font-size: 1.5em;
  margin: 10px 0 5px;
  color: white;
}

.slide p {
  font-size: 1em;
  padding: 0 10px 20px;
  color: white;
}

.section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  max-width: 800px;
}

.section h1 {
  font-size: 2.5em;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.2em;
  margin-bottom: 1rem;
}
.titulo-cursos {
  background-color: #002547;
  color: white;
  text-align: center;
  padding: 60px 20px 20px;
}

.titulo-cursos h2 {
  font-size: 2.5em;
  margin: 0 0 10px;
  font-weight: bold;
}
