@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Poppins:wght@300;400;600&display=swap');

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

:root {
  --teal:      #c8a87a;
  --teal-lt:   #e8c89a;
  --teal-dim:  rgba(200,168,122,0.12);
  --teal-glow: rgba(200,168,122,0.35);
  --cream:     #f0dfc0;
  --cream-dk:  #d4b896;
  --brown:     #a87a50;
  --dark:      #1a1208;
  --mid:       #221810;
  --card:      #2d2016;
  --steel:     #3a2818;
  --text:      #d4b896;
  --muted:     #8a7050;
  --white:     #f5ecd8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.title em { font-style: italic; color: var(--teal-lt); }

.rule {
  width: 50px;
  height: 1px;
  background: var(--brown);
  margin: 1.2rem 0 1.8rem;
  box-shadow: 0 0 8px rgba(200,168,122,0.4);
}

.rule--center { margin-left: auto; margin-right: auto; }

.centered { text-align: center; }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: linear-gradient(to bottom, rgba(26,18,8,0.97) 0%, rgba(26,18,8,0.7) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,168,122,0.2);
}

.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo img:first-child { height: 44px; width: auto; mix-blend-mode: screen; filter: brightness(1.1); }
.nav__pueblo {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(200,168,122,0.4);
  opacity: 0.9;
  transition: opacity 0.3s, transform 0.3s;
}
.nav__pueblo:hover { opacity: 1; transform: scale(1.08); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
}

.nav__links a:hover { color: var(--teal-lt); }

.nav__cta {
  background: var(--brown) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
}

.nav__cta:hover { background: #8a6348 !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(200,168,122,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(168,122,80,0.12) 0%, transparent 55%),
    linear-gradient(155deg, #2d2016 0%, #1a1208 45%, #100a06 100%);
}

.hero__ring {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,122,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.hero__ring--2 {
  width: 460px;
  height: 460px;
  border-color: rgba(200,168,122,0.08);
  animation-delay: 2s;
}

@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.03); opacity: 0.6; }
}

.hero__content { position: relative; z-index: 2; }

.hero__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-lt);
  border: 1px solid rgba(107,122,79,0.4);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero__logo {
  width: min(240px, 65vw);
  margin: 0 auto 0.5rem;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)) brightness(1.1);
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--brown);
  margin: 1.5rem auto;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero__desc {
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero__pueblos {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s 0.7s ease both;
}

.hero__pueblo-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(200,168,122,0.35);
  box-shadow: 0 0 24px rgba(200,168,122,0.2), 0 8px 24px rgba(0,0,0,0.4);
  animation: floatPueblo 5s ease-in-out infinite;
}

@keyframes floatPueblo {
  0%, 100% { transform: translateY(0px); box-shadow: 0 0 24px rgba(200,168,122,0.2), 0 8px 24px rgba(0,0,0,0.4); }
  50%       { transform: translateY(-10px); box-shadow: 0 0 36px rgba(200,168,122,0.4), 0 18px 32px rgba(0,0,0,0.3); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  animation: fadeUp 1s 0.8s ease both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}




/* Fotos */
.foto{
    border-radius: 20px;
}


/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}

.btn--teal {
  background: linear-gradient(135deg, #d4b480 0%, #c8a87a 50%, #a87a50 100%);
  color: #1a1208;
  box-shadow:
    0 4px 14px rgba(200,168,122,0.45),
    0 1px 3px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn--outline {
  background: rgba(200,168,122,0.06);
  color: var(--cream);
  border: 1px solid rgba(200,168,122,0.45);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--card);
  border-top: 1px solid rgba(200,168,122,0.2);
  border-bottom: 1px solid rgba(200,168,122,0.2);
  position: relative;
  z-index: 1;
}

.stat {
  padding: 2rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(200,168,122,0.12);
}

.stat:last-child { border-right: none; }

.stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}

.stat__label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ABOUT */
.about__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text);
}

.about__img {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(200,168,122,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.05);
}

.about__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,18,8,0.95), transparent);
  text-align: center;
}

.about__badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
}

.about__badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--teal-lt);
  font-weight: 600;
}

/* SERVICIOS */
.servicios { background: var(--mid); }

.svc-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(200,168,122,0.2);
  margin-bottom: 0;
}

.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tab {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.9rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  margin-bottom: -1px;
}

.svc-tab:hover { color: var(--cream); }

.svc-tab.active {
  color: var(--cream);
  border-bottom-color: var(--brown);
}

.svc-panel { display: none; }
.svc-panel.active { display: block; }

.servicios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(200,168,122,0.12);
  margin-top: 1rem;
}

.svc-card {
  background: var(--card);
  padding: 0;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card__img {
  height: 200px;
  overflow: hidden;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--card);
  transition: transform 0.5s;
}

.svc-card:hover .svc-card__img img { transform: scale(1.05); }

.svc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;       /* ← más pequeño */
  color: var(--white);
  padding: 0.7rem 1rem 0.2rem;   /* ← menos padding */
}

.svc-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 1rem 1rem;   /* ← menos padding */
}
/* MENU */
.menu-section { background: var(--dark); }

.menu-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin-bottom: 0;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(200,168,122,0.2);
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.9rem 1.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  margin-bottom: -1px;
}

.menu-tab:hover { color: var(--cream); }

.menu-tab.active {
  color: var(--cream);
  border-bottom-color: var(--brown);
}

.menu-panel {
  display: none;
  background: var(--card);
  border: 1px solid rgba(200,168,122,0.15);
  border-top: none;
  padding: 2.5rem;
}

.menu-panel.active { display: block; }

.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.menu-cols--single { grid-template-columns: 1fr; max-width: 600px; }

.menu-cat {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--cream);
  border-bottom: 1px solid rgba(200,168,122,0.25);
  padding-bottom: 0.5rem;
  margin: 1.8rem 0 0.8rem;
}

.menu-cat:first-child { margin-top: 0; }

.menu-cat-desc,
.menu-flavors {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(200,168,122,0.15);
  gap: 1rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item__name {
  font-size: 0.82rem;
  color: var(--text);
  flex: 1;
}

.menu-item__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--teal-lt);
  white-space: nowrap;
}

.menu-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* CARRUSEL */
.carrusel {
  position: relative;
  width: 100%;
}

.carrusel__track-wrap {
  overflow: hidden;
  width: 100%;
}

.carrusel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.carrusel__item {
  flex: 0 0 calc(100% / 3);
  padding: 0 5px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Shimmer que barre la imagen */
.carrusel__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,0.04) 30%,
    rgba(255,255,255,0.13) 50%,
    rgba(255,255,255,0.04) 70%,
    transparent 100%);
  animation: promoShimmer 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* Borde dorado animado al hacer hover */
.carrusel__item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(200,168,122,0), rgba(200,168,122,0.7), rgba(200,168,122,0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.carrusel__item:hover::before { opacity: 1; }

.carrusel__item:nth-child(1)::after { animation-delay: 0s; }
.carrusel__item:nth-child(2)::after { animation-delay: 0.7s; }
.carrusel__item:nth-child(3)::after { animation-delay: 1.4s; }
.carrusel__item:nth-child(4)::after { animation-delay: 2.1s; }
.carrusel__item:nth-child(5)::after { animation-delay: 2.8s; }
.carrusel__item:nth-child(6)::after { animation-delay: 3.5s; }
.carrusel__item:nth-child(7)::after { animation-delay: 4.2s; }

@keyframes promoShimmer {
  0%        { left: -120%; opacity: 0; }
  10%       { opacity: 1; }
  55%       { left: 160%; opacity: 1; }
  56%, 100% { left: 160%; opacity: 0; }
}

.carrusel__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--card);
  display: block;
  filter: brightness(0.88) saturate(1.0);
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
  border-radius: 12px;
}

.carrusel__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.2);
}

/* Glow dorado debajo de la imagen al hover */
.carrusel__item:hover {
  filter: drop-shadow(0 8px 20px rgba(200,168,122,0.35));
}

.carrusel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(111,78,55,0.85);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carrusel__btn:hover { background: var(--brown); }

.carrusel__btn--prev { left: -20px; }
.carrusel__btn--next { right: -20px; }

.carrusel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.carrusel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carrusel__dot.active {
  background: var(--brown);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .carrusel__item { flex: 0 0 100%; }
  .carrusel__btn--prev { left: 0; }
  .carrusel__btn--next { right: 0; }
}
/* UBICACION */
.ubicacion { background: var(--dark); }

.ubicacion__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.info-card {
  background: var(--card);
  border: 1px solid rgba(200,168,122,0.15);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.info-card p,
.info-card a {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text);
}

.info-card a { color: var(--teal-lt); font-weight: 400; }
.info-card a:hover { text-decoration: underline; }

.map-wrap {
  border: 1px solid rgba(200,168,122,0.2);
  overflow: hidden;
  filter: grayscale(80%) sepia(20%) brightness(0.75);
  transition: filter 0.4s;
}

.map-wrap:hover { filter: grayscale(40%) sepia(15%) brightness(0.85); }

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.ubicacion .btn { margin-top: 0.5rem; }

/* FOOTER */
.footer {
  background: #100a04;
  border-top: 1px solid rgba(200,168,122,0.15);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer__logo {
  height: 56px;
  margin: 0 auto 1rem;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
}

.footer__addr {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.4rem 0 1.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer__links a {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--cream); }

.footer__copy {
  font-size: 0.58rem;
  color: #4a3020;
}

/* WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  animation: waPop 1s 1.5s ease both;
}

.wa-float:hover { transform: scale(1.1); }

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPop {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26,18,8,0.98);
    padding: 1.5rem;
    gap: 1.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    border-bottom: 1px solid rgba(200,168,122,0.2);
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__pueblo-logo { width: 80px; height: 80px; }
  .hero__pueblos { gap: 1.2rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-panel { padding: 1.5rem; }
  .ubicacion__grid { grid-template-columns: 1fr; }
  .galeria__grid { grid-template-columns: 1fr 1fr; }
  .galeria__item--large { grid-row: auto; grid-column: 1 / 3; }
  .stat { padding: 1.5rem 1.8rem; }
}