/* ============================================================
   TASCA DO PORTUGA — Main Stylesheet
   Palette: Deep Green + Warm Red + Cream + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Lato:wght@300;400;700&family=Uncial+Antiqua&display=swap');

/* ─── Variables ─── */
:root {
  --green:   #1C4A30;
  --green-light: #2E7350;
  --red:     #A01C1C;
  --red-light: #C42B2B;
  --cream:   #FAF6EE;
  --cream-dark: #F0E8D6;
  --gold:    #B8922A;
  --gold-light: #D4A843;
  --dark:    #1A1A18;
  --text:    #3A3228;
  --text-muted: #7A6A5A;
  --white:   #FFFFFF;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Lato', sans-serif;

  --shadow-sm: 0 2px 8px rgba(26,26,24,.08);
  --shadow-md: 0 8px 32px rgba(26,26,24,.14);
  --shadow-lg: 0 20px 60px rgba(26,26,24,.18);

  --radius: 4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ─── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green);
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: .6rem;
}
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 1.4rem 0 2rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.divider-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(160,28,28,.3);
}
.btn-outline {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,.2);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,42,.35);
}

/* ─── Texture overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1.2rem 0;
}
#navbar.scrolled {
  background: rgba(26,74,48,.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: .7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}
#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-reserve .btn {
  padding: .6rem 1.5rem;
  font-size: .8rem;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transform: scale(1.08);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,74,48,.45) 0%, rgba(26,26,24,.2) 60%, rgba(160,28,28,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
  animation: heroFadeUp .9s .2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  margin-bottom: .8rem;
  animation: heroFadeUp .9s .35s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
  animation: heroFadeUp .9s .45s ease both;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: .9;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: heroFadeUp .9s .6s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroFadeUp .9s .75s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: heroFadeUp .9s 1.2s ease both;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.5); opacity: .2; }
}

/* ============================================================
   ANNOUNCEMENT BAND
   ============================================================ */
.band {
  background: var(--green);
  color: var(--cream);
  padding: .9rem 0;
  overflow: hidden;
  position: relative;
}
.band-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: bandScroll 28s linear infinite;
  width: max-content;
}
@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.band-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}
.band-item .band-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SECTION: SOBRE / HISTÓRIA
   ============================================================ */
#sobre {
  padding: 6rem 0;
  background: var(--cream);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sobre-images {
  position: relative;
}
.sobre-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}
.sobre-img-accent {
  position: absolute;
  bottom: -2rem; right: -2.5rem;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.sobre-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--red);
  color: var(--white);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.2;
}
.sobre-badge-year { font-size: 1.6rem; font-weight: 700; }
.sobre-badge-text { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.sobre-text .section-subtitle { display: block; }
.sobre-text p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* ============================================================
   SECTION: ESPECIALIDADES
   ============================================================ */
#especialidades {
  padding: 6rem 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
#especialidades::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
#especialidades .container {
  position: relative;
  z-index: 1;
}
.esp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.esp-header .section-title { color: var(--cream); }
.esp-header .section-subtitle { color: var(--gold-light); }
.esp-header .divider::before { background: linear-gradient(to right, transparent, var(--gold-light)); }
.esp-header .divider::after  { background: linear-gradient(to left, transparent, var(--gold-light)); }
.esp-header .divider-icon    { color: var(--gold-light); }

.esp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.esp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.esp-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.esp-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.esp-card-body { padding: 1.5rem; }
.esp-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .4rem;
}
.esp-card-desc {
  font-size: .88rem;
  color: rgba(250,246,238,.65);
  line-height: 1.6;
}
.esp-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   SECTION: DESTAQUES — 3D PEEK CAROUSEL
   ============================================================ */
#destaques {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.destaques-header { text-align: center; margin-bottom: 3rem; }

/* Carousel wrapper — clips side overflow */
.ds-carousel {
  position: relative;
  /* height = width of centre image (1:1) + breathing room */
  --ds-size: min(480px, 80vw);
  height: var(--ds-size);
  overflow: hidden;
  /* extra horizontal space so peek images are visible */
  margin: 0 auto;
  max-width: 900px;
}

/* Track — positions items */
.ds-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each item */
.ds-item {
  position: absolute;
  width: var(--ds-size);
  height: var(--ds-size);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  /* transition every property we animate */
  transition:
    transform .55s cubic-bezier(.4,0,.2,1),
    opacity   .55s ease,
    filter    .55s ease,
    z-index     0s;
  will-change: transform, opacity, filter;
  box-shadow: var(--shadow-lg);
}
.ds-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* ── State classes applied by JS ── */

/* Active — centre, full size, sharp */
.ds-item.ds-active {
  z-index: 10;
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: blur(0px) brightness(1);
}
/* Prev — left, peeking, blurred */
.ds-item.ds-prev {
  z-index: 5;
  transform: translateX(calc(var(--ds-size) * -0.72)) scale(0.82);
  opacity: .6;
  filter: blur(3px) brightness(.75);
}
/* Next — right, peeking, blurred */
.ds-item.ds-next {
  z-index: 5;
  transform: translateX(calc(var(--ds-size) *  0.72)) scale(0.82);
  opacity: .6;
  filter: blur(3px) brightness(.75);
}
/* Far prev / far next — hidden behind */
.ds-item.ds-far-prev {
  z-index: 1;
  transform: translateX(calc(var(--ds-size) * -1.1)) scale(0.65);
  opacity: 0;
  filter: blur(6px) brightness(.5);
}
.ds-item.ds-far-next {
  z-index: 1;
  transform: translateX(calc(var(--ds-size) *  1.1)) scale(0.65);
  opacity: 0;
  filter: blur(6px) brightness(.5);
}
/* Any other item — hidden */
.ds-item.ds-hidden {
  z-index: 0;
  transform: translateX(0) scale(0.6);
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}

/* Nav buttons */
.ds-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 20;
  background: var(--green);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.ds-btn:hover { background: var(--green-light); transform: translateY(-50%) scale(1.1); }
.ds-prev { left:  8px; }
.ds-next { right: 8px; }

/* Dots */
.ds-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.6rem;
}
.ds-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
}
.ds-dot.ds-dot-on {
  background: var(--green);
  transform: scale(1.35);
}

/* ============================================================
   SECTION: AMBIENTES / INTERNAS
   ============================================================ */
#ambientes {
  padding: 6rem 0;
  background: var(--cream);
}
.ambientes-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.amb-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.amb-item:nth-child(1) { grid-column: span 8; }
.amb-item:nth-child(2) { grid-column: span 4; }
.amb-item:nth-child(3) { grid-column: span 4; }
.amb-item:nth-child(4) { grid-column: span 4; }
.amb-item:nth-child(5) { grid-column: span 4; }
.amb-item img {
  width: 100%; height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.amb-item:hover img { transform: scale(1.06); }
.amb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(28,74,48,.5));
  opacity: 0;
  transition: var(--transition);
}
.amb-item:hover::after { opacity: 1; }

/* ============================================================
   SECTION: ÁREA KIDS
   ============================================================ */
#kids {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  position: relative;
  overflow: hidden;
}
#kids::before {
  content: '★';
  position: absolute;
  font-size: 30vw;
  color: rgba(255,255,255,.02);
  right: -5vw; top: -5vw;
  line-height: 1;
  pointer-events: none;
}
.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.kids-text .section-title { color: var(--cream); }
.kids-text .section-subtitle { color: var(--gold-light); }
.kids-text .divider::before { background: linear-gradient(to right, transparent, var(--gold-light)); }
.kids-text .divider::after  { background: linear-gradient(to left, transparent, var(--gold-light)); }
.kids-text .divider-icon    { color: var(--gold-light); }
.kids-text p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 300;
  color: rgba(250,246,238,.85);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}
.kids-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.kids-feature {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: rgba(255,255,255,.08);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
}
.kids-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.kids-feature-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .2rem;
}
.kids-feature-text span {
  font-size: .82rem;
  color: rgba(250,246,238,.7);
}
.kids-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.kids-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.kids-img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.kids-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.kids-img:hover img { transform: scale(1.05); }

/* ============================================================
   SECTION: CARDÁPIO PREVIEW
   ============================================================ */
#cardapio-preview {
  padding: 6rem 0;
  background: var(--cream-dark);
}
.cardapio-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cardapio-cta .section-title { margin-bottom: .5rem; }
.cardapio-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.cardapio-cta .btn { font-size: .9rem; padding: 1rem 2.5rem; }

/* ============================================================
   SECTION: HORÁRIOS & LOCALIZAÇÃO
   ============================================================ */
#info {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--cream);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.info-block .section-title { color: var(--cream); font-size: 2rem; }
.info-block .section-subtitle { color: var(--gold-light); }
.info-block .divider::before { background: linear-gradient(to right, transparent, var(--gold-light)); }
.info-block .divider::after  { background: linear-gradient(to left,  transparent, var(--gold-light)); }
.info-block .divider-icon    { color: var(--gold-light); }

.horarios-list { display: flex; flex-direction: column; gap: .6rem; }
.horario-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .92rem;
}
.horario-day { font-weight: 700; letter-spacing: .04em; color: var(--cream); }
.horario-time { color: var(--gold-light); font-weight: 300; }
.horario-closed { color: var(--red-light); }

.contato-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .92rem;
}
.contato-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contato-item-text strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .2rem;
}
.contato-item-text span, .contato-item-text a {
  color: rgba(250,246,238,.75);
  transition: color var(--transition);
}
.contato-item-text a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION: RESERVA (WhatsApp CTA)
   ============================================================ */
#reserva {
  padding: 5rem 0;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#reserva::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}
.reserva-content { position: relative; z-index: 1; }
.reserva-content .section-subtitle { color: rgba(255,255,255,.7); }
.reserva-content .section-title { color: var(--white); margin-bottom: .5rem; }
.reserva-content p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  font-style: italic;
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 3.5rem 0 2rem;
  color: rgba(250,246,238,.55);
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,246,238,.6);
  margin-bottom: 1.2rem;
}
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); transform: rotate(90deg); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,74,48,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================================
   ANIMATIONS (scroll-reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX( 28px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .esp-grid { grid-template-columns: 1fr 1fr; }
  .kids-grid { grid-template-columns: 1fr; }
  .kids-images { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-reserve { display: none; }
  .burger { display: flex; }

  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-img-accent { display: none; }
  .sobre-badge { display: none; }
  .sobre-stats { grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }

  .esp-grid { grid-template-columns: 1fr; }

  .ambientes-grid { grid-template-columns: 1fr 1fr; }
  .amb-item:nth-child(n) { grid-column: span 1; }
  .amb-item:nth-child(1) { grid-column: span 2; }

  .info-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }


  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 1rem; }
}

@media (max-width: 480px) {
  .sobre-stats { grid-template-columns: 1fr; }
  .ambientes-grid { grid-template-columns: 1fr; }
  .amb-item:nth-child(n) { grid-column: span 1; }
  .kids-features { grid-template-columns: 1fr; }
  .social-links { flex-direction: column; }
}
