@charset "UTF-8";
/* ====== Fuentes ====== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
/* ====== Variables & Maps ====== */
/* Tema simple por condicional */
/* ====== Mixins ====== */
/* ====== @extend ====== */
nav .nav-container .nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .nav-container .nav-links a {
  text-decoration: none;
  color: #333;
}

/* ====== Reset box model ====== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ====== Body (condicional por tema) ====== */
body {
  font-family: "Poppins", Verdana, Geneva, Tahoma, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: bisque;
}

/* ====== Tipografía con @for ====== */
.mt-1 {
  margin-top: 8px !important;
}

.mt-2 {
  margin-top: 16px !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mt-5 {
  margin-top: 40px !important;
}

/* ====== NAVBAR (mobile-first) ====== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(245, 245, 245, 0.6941176471);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}
nav .nav-container .nav-logo {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  height: 70px;
  max-width: 140px;
}
nav .nav-container .nav-logo img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}
nav .nav-container {
  /* MOBILE */
}
nav .nav-container .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #333;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1100;
}
nav .nav-container .nav-links {
  position: absolute;
  top: 70px;
  right: 10px;
  width: 180px;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
  text-align: center;
}
nav .nav-container .nav-links.active {
  display: block;
}
nav .nav-container .nav-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
nav .nav-container .nav-links li {
  text-align: center;
}
nav .nav-container .nav-links a {
  display: block;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease, transform 0.25s ease;
}
nav .nav-container .nav-links a:hover {
  color: #007bff;
  transform: translateY(-1px);
}
nav {
  /* DESKTOP */
}
@media (min-width: 768px) {
  nav .nav-container .menu-toggle {
    display: none;
  }
  nav .nav-container .nav-links {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  nav .nav-container .nav-links.active {
    display: flex;
  }
  nav .nav-container .nav-links ul {
    flex-direction: row;
    gap: 80px;
  }
  nav .nav-container .nav-links a {
    font-size: 1rem;
    padding: 0;
  }
}

/* ====== HERO ====== */
.heroInicio {
  height: 70vh;
  overflow: hidden;
}
.heroInicio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Hero_contacto {
  height: 70vh;
  overflow: hidden;
}
.Hero_contacto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Hero_galeria {
  height: 70vh;
  overflow: hidden;
}
.Hero_galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Hero_lugares {
  height: 70vh;
  overflow: hidden;
}
.Hero_lugares img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Hero_ubicacion {
  height: 70vh;
  overflow: hidden;
}
.Hero_ubicacion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== Encabezados ====== */
h1 {
  color: rebeccapurple;
}

.clasegaleria {
  color: brown;
}

#idlugares {
  color: aqua;
}

/* ====== GALERÍA CON GRID ====== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  justify-items: center;
  align-items: center;
}
.galeria-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.galeria-grid img:hover {
  transform: scale(1.05);
}

/* ====== FOOTER ====== */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 40px;
}
.footer .footer-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer p {
  margin-bottom: 10px;
  font-size: 14px;
}
.footer .social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.footer .social-icons a:hover {
  color: #ff9900;
  transform: scale(1.2);
}

.nav-links ul li:first-child a {
  font-weight: bold;
  color: #2c3e50;
}

/* ====== Colores para redes sociales ====== */
.social-icons a[aria-label=Facebook]:hover {
  color: #1877f2;
}
.social-icons a[aria-label=Instagram]:hover {
  color: #e4405f;
}

/* ==== HERO con gradiente de superposición ==== */
.hero-gradient {
  position: relative;
  isolation: isolate;
}

.hero-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05) 40%, transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-gradient .hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 24px;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-title {
  letter-spacing: 0.5px;
}

/* ==== Ejes y transformaciones 3D ==== */
.tilt-3d {
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tilt-3d:hover {
  transform: rotateX(6deg) rotateY(-8deg) translateZ(10px);
}

/* ==== Transiciones y estados en la imagen de la sección ==== */
#fondoPrincipal img {
  transition: filter 0.35s ease, transform 0.35s ease;
}

#fondoPrincipal img:hover {
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.02);
}

/* ==== @keyframes ==== */
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.reveal-text {
  animation: reveal 0.6s ease-out both 0.1s; /* duración + timing + fill + delay */
}

.nav-links a {
  transition: color 0.25s ease-in, transform 0.25s ease-out 0.05s;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation: none !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .tilt-3d, #fondoPrincipal img {
    transition: none !important;
  }
}
/* Altura responsiva del HERO */
@media (max-width: 992px) {
  .heroInicio, .Hero_contacto, .Hero_galeria, .Hero_lugares, .Hero_ubicacion {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .heroInicio, .Hero_contacto, .Hero_galeria, .Hero_lugares, .Hero_ubicacion {
    height: 55vh;
  }
}
@media (max-width: 576px) {
  .heroInicio, .Hero_contacto, .Hero_galeria, .Hero_lugares, .Hero_ubicacion {
    height: 48vh;
  }
}

/*# sourceMappingURL=styles.css.map */
