* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Barlow', sans-serif; color: #fff; background-color: #000; }

    /* HERO */
    .hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Título */
.info-flotante {
  position: absolute;
  top: 5%;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: white;
}

.info-flotante h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 5rem;
  font-weight: bold;
}

.info-flotante .ubicacion {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: white;
}

/* Datos descriptivos */
.info-inferior {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.25); /* transparencia suave */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.datos-contenedor {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.detalle {
  text-align: center;
  color: white;
}

.numero {
  font-size: 1.2rem;
  font-weight: bold;
}

.etiqueta {
  font-size: 0.9rem;
  color: #ccc;
}

/* NAVBAR ARKUP */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10000;
}

.navbar-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  font-family: 'Barlow', sans-serif;
}

.navbar-logo img {
  height: 80px;
  margin-right: 50px;
}

.menu-button {
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px 20px;
  background: transparent;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.menu-icon {
  margin-left: 10px;
  display: inline-block;
}

.menu-icon div {
  width: 20px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
}

.menu-content {
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #202020;
  border: 1px solid white;
  border-radius: 10px;
  padding: 15px;
  display: none;
  flex-direction: column;
}

.menu-content a {
  color: white;
  text-decoration: none;
  margin: 8px 0;
  font-size: 16px;
}

.menu-content a:hover {
  text-decoration: underline;
}

    /* GALERÍA */
    .gallery-section {
      padding: 2rem;
      background: #111;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .gallery-section img {
      width: 150px;
      height: 100px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid #fff;
      transition: transform 0.3s ease;
    }

    .gallery-section img:hover {
      transform: scale(1.05);
    }

    /* DESCRIPCIÓN */
    .descripcion {
      padding: 3rem 2rem;
      max-width: 900px;
      margin: auto;
      color: #fff;
    }

    .descripcion h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .descripcion p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }

    /* CONTACTO */
    .contacto {
      background: #971e1d;
      padding: 2rem;
      text-align: center;
    }

    .contacto h2 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: #fff;
    }

    .whatsapp-btn {
      background: #25D366;
      color: white;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      border-radius: 30px;
      font-size: 1.1rem;
      display: inline-block;
      margin-top: 1rem;
    }

    .footer {
    background-color: #000; /* Fondo negro total */
    color: #fff;
    padding: 3rem 1rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }

  .footer-box {
    flex: 1 1 220px;
  }

  .footer-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
  }

  .footer-box p,
  .footer-box a {
    color: #ccc;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
  }

  .footer-box a:hover {
    color: #fff;
  }

  .social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ccc;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #fff;
  }

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  color: #777;
}
