body {
  padding-top: 80px;
  overflow-x: hidden;
}


.fondo_negro {
  background: black;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Contenedor */
.contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/*--------------------------------------------------------------------------------------------------------------------------------*/
/* Logo pegado a la izquierda */
.logo img {
  width: 80px;
  height: auto;
  display: block;
  padding-bottom: 10px;
}

/* Menú */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: max-height 0.4s ease;
}


.menu.activo {
  max-height: 1000px;
}

/*Links o indices de la barra*/
.menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;

}

/*Línea blanca animada*/
.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.menu li a:hover::after {
  width: 100%;
}

.menu li a:hover::after,
.menu li a.active::after {
  width: 100%;
}

/*boton hamburguesa*/
.hamburguesa {
  display: none;
  font-size: 28px;
  cursor: pointer;

}

.hamburguesa {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/*transicion pequeña */
.menu {
  transition: max-height 0.4s ease;
}

/*-----------------------------------------------------------------------------------------------------------*/
/*parte del banner*/

.banner {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: white;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* CONTENEDOR DE FRAGMENTOS */
.fragmentos {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
}

/* CADA FRAGMENTO */
.fragmentos span {
  flex: 1;
  background: url("../img/prado-banner.png") no-repeat;
  background-size: cover;
  background-position: center;
  animation: fragmentar 1.5s ease forwards;
}

/*el momento cuando se dividen la imagen en 4*/
.fragmentos span:nth-child(1) {
  background-position: 0% center;
  animation-delay: 0s;
}

.fragmentos span:nth-child(2) {
  background-position: 33% center;
  animation-delay: 0.2s;
}

.fragmentos span:nth-child(3) {
  background-position: 66% center;
  animation-delay: 0.4s;
}

.fragmentos span:nth-child(4) {
  background-position: 100% center;
  animation-delay: 0.6s;
}

/* animacion */
@keyframes fragmentar {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* OSCURECER */
.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENIDO */
.banner-contenido {
  position: relative;
  z-index: 2;
}

.banner-contenido h1 {
  font-size: 60px;
}

.banner-contenido h2 {
  font-size: 28px;
}

.banner-contenido p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* BOTÓN */
.btn-banner {
  padding: 12px 25px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

/*--------------------------------------------------------------------------------------------------------------------------------*/
/* ===== SECCIÓN ===== */
.carros {
  padding: 40px 20px;
  text-align: center;
}

.titulo {
  font-size: 80px;
  margin-bottom: 30px;
  font-family: 'Birthstone', cursive;
  background-color: rgb(27, 26, 26);
  color: white;
  text-shadow: #FFD700;
  border-radius: 10px;
}

/* ===== CONTENEDOR ===== */
.contenedor-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centrado en PC */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 380px;
  /* tamaño ideal (no pequeñas) */
  background: white;
  border-radius: 50px;
  /* bordes redondos */
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* HOVER */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* IMAGEN */
.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f5f5f5;
  /* 👈 fondo bonito */
  padding: 10px;
}

/* TEXTO */
.card h3 {
  margin: 15px 0 5px;
  font-size: 20px;
}

.card p {
  color: gray;
  margin-bottom: 15px;
}

/* BOTÓN */
.card button {
  margin-bottom: 20px;
  padding: 10px 20px;
  background: rgb(0, 0, 0);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: goldenrod;
}

/*-----------------------------------------------------------------------------------------------------------*/
/* ===== SECCIÓN ===== */
.requisitos {
  padding: 60px 20px;
}

/* CONTENEDOR */
.contenedor-requisitos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* IMAGEN */
.req-img img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
}

/* TEXTO */
.req-texto {
  max-width: 500px;
}

.req-texto h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.icono {
  flex-shrink: 0;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: rgb(201, 124, 124);
}

.item p {
  margin: 0;
  font-size: 16px;
}


.boton-info {
  margin-top: 25px;
}

.btn-ver-mas {
  display: inline-block;
  padding: 10px 22px;
  background: rgb(176, 143, 46);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-ver-mas:hover {
  background: rgb(206, 104, 60);
  transform: translateY(-2px);
}

/*-------------------------------------------------------------------------------------------------------------------- */


.icono {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  transform: scale(0);
  animation: aparecer 0.5s ease forwards;
}

.item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

@keyframes aparecer {
  to {
    transform: scale(1);
  }
}

.req-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.req-img img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
}

.req-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*-----------------------------------------------------------------------------------------------------------*/
.reseñas {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reseñas h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.reseñas-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reseña-card {
  background: #fff;
  padding: 25px 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.reseña-card:hover {
  transform: translateY(-5px);
}

/* FOTO */
.reseña-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* ESTRELLAS */
.estrellas {
  color: #FFD700;
  margin: 10px 0;
  font-size: 18px;
}

/* TEXTO */
.reseña-texto {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* NOMBRE */
.reseña-autor {
  font-weight: bold;
  color: #000;
}

html,
body {
  margin: 0;
  padding: 0;
}

.mapa-wrapper {
  width: 100%;
}

.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}



.mapa-container {
  width: 100%;
  height: clamp(300px, 60vh, 600px);
  /* 🔥 altura flexible inteligente */
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
  /* 🌫️ sombra */
  border-radius: 10px;
  /* esquinas suaves */
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/*-----------------------------------------------------------------------------------------------------------*/
.imagen-full {
  width: 100%;
}

.imagen-full img {
  width: 100%;
  height: auto;
  /* 🔥 clave para responsividad real */
  display: block;
  object-fit: cover;
  max-height: 80vh;
  /* evita que sea demasiado grande en PC */
}

/*-----------------------------------------------------------------------------------------------------------*/
.instagram-float i,
.tiktok-float i {
  transform: translateY(-3px);
  display: block;
}

.instagram-float,
.tiktok-float {
  font-size: 0;
  overflow: hidden;
}

.instagram-float i,
.tiktok-float i {
  font-size: 30px;
  margin-bottom: -3px;

}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background-color: #25D366;
  color: rgb(255, 255, 255);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;

  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.2s ease;
}


/* INSTAGRAM */
.instagram-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;

  right: 20px;
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

/* TIKTOK */
.tiktok-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 160px;
  /* arriba del de Instagram */
  right: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

/* HOVER (animación bacana) */
.whatsapp-float:hover,
.instagram-float:hover,
.tiktok-float:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/*-----------------------------------------------------------------------------------------------------------*/
/* ===== PIE DE PAGINA===== */
.footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  min-width: 250px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  font-size: 15px;
}

.footer-col a:hover {
  color: #aaa;
}

.footer-col p {
  margin: 8px 0;
  font-size: 15px;
}

.footer-col a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  font-size: 15px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


















@media (max-width: 768px) {

  .contenedor {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburguesa {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    background: black;
  }

  .menu.activo {
    max-height: 400px;

  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: block;
    width: 100%;
    padding: 12px 0;

  }

  .banner-bg {
    animation: none;
    clip-path: none;
  }

  .banner {
    height: 60vh;
  }

  .banner-contenido h1 {
    font-size: 35px;
  }

  .banner-contenido h2 {
    font-size: 18px;
  }

  .banner-contenido p {
    font-size: 14px;
  }



  .contenedor-cards {
    gap: 15px;
    padding: 0 10px;
  }

  .card {
    width: 100%;
    /* 👈 ocupa todo el ancho */
    border-radius: 15px;
  }



  .contenedor-requisitos {
    flex-direction: column;
    /* 👈 se ponen uno debajo del otro */
    text-align: center;

  }

  .req-texto {
    max-width: 100%;
  }

  .item {
    justify-content: center;
  }



  .contenedor-requisitos {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    /* 👈 mejor separación */
    padding: 30px 15px;
  }

  .req-img,
  .req-texto {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .req-img img {
    max-width: 90%;
    margin: 0 auto;
  }

  .item {
    justify-content: center;
  }

  .imagen-full img {
    max-height: 50vh;
  }
}