/* Reset básico */
body, h1, h2, p {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Estilos generales */
body {
  scroll-behavior: smooth;
}

/* Navegación */
/*nav {
  background: #333;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

nav ul li a:hover {
  color: yellow;
}*/

/* Secciones */
section {
  display: grid;
  align-items: center;
  justify-content: center;
  scroll-margin-top: 100px;
}
.nav-link a.active {
  color: yellow;
  font-weight: bold;
  border-bottom: 2px solid yellow;
}


/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #333;
  color: white;
}


section::before {
  content: "";
  display: block;
  height: 1200px; /* Altura del espacio que queremos dejar */
  margin-top: -1600px; /* Empuja la sección hacia abajo */
  visibility: hidden;
}


.swiper-container {
  width: 99%;
  padding: 20px;
}
.swiper-slide {
  display: flex;
  justify-content: center;
}
.card {
  width: 550px;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}
.card img {
  width: 100%;
  border-radius: 10px;
}


/*SLIDER VIDEOS*/
.slider-container {
  width: 80%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  width: 30%;
  text-align: left;
}

.card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
}

.card p {
  font-size: 14px;
  color: gray;
}

.dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #d2a067;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #5a3b1a;
}

/* 🔹 Responsive para móviles */
@media (max-width: 768px) {
  .slide {
      flex-direction: column;
      align-items: center;
  }
  .card {
      width: 90%;
  }
}











