* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #017f82;
  --ocean: #006b8f;
  --sand: #c9a96e;
  --coral: #d05a3a;
  --ivory: #faf7f2;
  --deep: #002a38;
  --gradient-1: linear-gradient(135deg, #017f82 0%, #003536 100%);
  --shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: var(--deep);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #017f82;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
}
.nav-back {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.nav-back:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* HERO */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 42, 56, 0.3) 0%,
    rgba(0, 42, 56, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 0 2rem;
}
.hero-badge {
  background: rgba(0, 107, 143, 0.35);
  border: 2px solid rgba(201, 169, 110, 0.6);
  color: #f5e9c8;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 900;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}
.hero-subtitle {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 2.5vw, 1.25rem);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease 0.4s backwards;
}
.hero-divider {
  width: 6rem;
  height: 2px;
  background: var(--sand);
  margin-top: 2rem;
  animation: expandWidth 1s ease 0.6s backwards;
}
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 20;
}
.slider-btn {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.slider-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}
.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  width: 2.5rem;
  border-radius: 6px;
  background: var(--sand);
}

/* CONTAINER */
.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}

/* INTRO */
.intro-section {
  background: var(--ivory);
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 48rem) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.intro-text h2 {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.intro-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.unesco-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--deep);
  color: #f5e9c8;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.intro-visual {
  position: relative;
}
.intro-visual img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
  object-fit: cover;
  max-height: 30rem;
}
.intro-visual-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -0.75rem;
  background: var(--sand);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-style: italic;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  max-width: 13rem;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 48rem) {
  .intro-visual-tag {
    display: none;
  }
}

/* FACTS STRIP */
.facts-strip {
  background: var(--deep);
  padding: 3rem 0;
}
.facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.fact-item {
  text-align: center;
  color: white;
}
.fact-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
}
.fact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  opacity: 0.7;
  margin-top: 0.35rem;
}



/* Gallery paginada */
.gallery-batch { margin-bottom: 0.75rem; }

.gallery-footer { text-align: center; margin-top: 2.5rem; }

.gallery-counter { font-size: 0.85rem; color: #999; margin-bottom: 1.25rem; letter-spacing: 0.08rem; }
.gallery-counter span { font-weight: 700; color: var(--ocean); }

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--deep);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.5rem 2rem rgba(0,42,56,0.2);
}
.btn-load-more:hover {
  background: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2.5rem rgba(0,42,56,0.3);
}

.gallery-item.animate-in {
  animation: fadeIn 0.5s ease backwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* GALLERY */
.gallery-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: white;
}
.section-heading {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}
.section-heading.centered {
  text-align: center;
}
.gallery-intro {
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.gallery-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 18rem 14rem;
  gap: 0.75rem;
}
@media (max-width: 48rem) {
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (max-width: 30rem) {
  .gallery-bento {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
  background: #eee;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item-large {
  grid-row: span 2;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 30, 40, 0.88));
  color: white;
  padding: 2.5rem 1.25rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-item-large .gallery-caption {
  transform: translateY(0);
}
.gallery-caption .loc {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}
.gallery-caption .place-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.gallery-caption .count {
  font-size: 0.75rem;
  opacity: 0.65;
  margin-top: 0.2rem;
}

/* SPOTS */
.spots-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--ivory);
}
.spots-intro {
  text-align: center;
  color: #777;
  font-size: 1rem;
  margin-bottom: 3.5rem;
}
.spots-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 36rem) {
  .spots-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .spots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.spot-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.spot-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.13);
}
.spot-image {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.spot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spot-card:hover .spot-image img {
  transform: scale(1.08);
}
.spot-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--ocean);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.spot-body {
  padding: 1.5rem;
}
.spot-body h3 {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.spot-body p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.spot-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.spot-meta span {
  font-size: 0.78rem;
  color: var(--ocean);
  font-weight: 700;
}

/* CULTURE */
.culture-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--deep);
  color: white;
}
.culture-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 48rem) {
  .culture-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.culture-text .section-heading {
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.culture-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.culture-tag {
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.35);
  color: var(--sand);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
}
.culture-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.culture-photo {
  border-radius: 0.75rem;
  overflow: hidden;
}
.culture-photo:first-child {
  aspect-ratio: 2/3;
  margin-top: 2.5rem;
}
.culture-photo:last-child {
  aspect-ratio: 2/3;
}
.culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.culture-photo:hover img {
  transform: scale(1.05);
}

/* VIDEO */
.video-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: white;
}
.video-intro {
  text-align: center;
  color: #777;
  font-size: 1rem;
  margin-bottom: 3rem;
  font-style: italic;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .video-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.video-main {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--deep);
  position: relative;
  min-height: 22rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}
.video-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 30, 40, 0.9));
  color: white;
  padding: 2.5rem 1.5rem 1.5rem;
}
.video-cap h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.video-cap p {
  font-size: 0.82rem;
  opacity: 0.7;
}
.video-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-thumb {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  background: var(--deep);
  min-height: 9rem;
  cursor: pointer;
  flex: 1;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}
.video-thumb:hover img {
  opacity: 0.85;
}
.video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}
.video-thumb-label {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

/* INFO */
.info-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--ivory);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 36rem) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.info-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--teal);
}
.info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.info-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.info-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: white;
}
.cta-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 48rem) {
  .cta-box {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-title {
  font-family: "Playfair Display", serif;
  color: var(--deep);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-text {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.cta-highlight {
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.cta-highlight h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.cta-highlight p {
  font-size: 0.88rem;
  opacity: 0.8;
}
.cta-slogan {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--ocean);
  text-align: center;
  margin-top: 1.5rem;
}
.cta-image img {
  border-radius: 1rem;
  width: 100%;
  height: 25rem;
  object-fit: cover;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

/* CONTACT */
.contact-bar {
  background: #003536;
  padding: 1.5rem 0;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 36rem) {
  .contact-content {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  font-size: clamp(0.8rem, 2vw, 1rem);
}
.contact-icon {
  font-size: 1.1rem;
}

/* FOOTER */
.footer {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}
.footer-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 6rem;
  }
}

@media (max-width: 36rem) {
  .navbar {
    padding: 0.6rem 0;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .hero-section {
    min-height: 100svh;
  }
}
