/* ═══════════════════════════════════════════════════════════
   ALELÍ COCINA — styles.css
   Archetype 01: Editorial Light Cream (adaptado a brand Alelí)
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --crema:      #F5F0E8;
  --crema-2:    #EDE5D5;
  --crema-3:    #D8CDB8;
  --verde:      #8B9B3A;
  --verde-2:    #7A8A30;
  --verde-dark: #5C6B1F;
  --tinta:      #2C2C2C;
  --tinta-soft: #4A4A4A;
  --tinta-mute: #8A8A8A;
  --blanco:     #FFFFFF;
  --linea:      rgba(44,44,44,0.12);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);

  --nav-h: 72px;
  --max-w: 1280px;
  --pad:   clamp(1.5rem, 5vw, 4rem);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--crema);
  color: var(--tinta);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety: data-split elements never hidden by reveal */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── Kicker ── */
.kicker {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 1.2rem;
}
.kicker-light { color: var(--crema-2); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--verde);
  color: var(--crema);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  transition: background 0.25s var(--ease-out), transform 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--verde-dark); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--crema);
  border-bottom: 1px solid rgba(245,240,232,0.5);
  padding-bottom: 2px;
  transition: border-color 0.2s, opacity 0.2s;
}
.btn-ghost:hover { border-color: var(--crema); }

.btn-verde {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--verde);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1.5px solid var(--verde);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-verde:hover { color: var(--verde-dark); border-color: var(--verde-dark); }

.btn-verde-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--verde);
  color: var(--crema);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem 2.2rem;
  border-radius: 100px;
  transition: background 0.25s var(--ease-out), transform 0.2s;
}
.btn-verde-lg:hover { background: var(--verde-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  gap: 2rem;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}
.nav.is-solid {
  background: var(--crema);
  box-shadow: 0 1px 0 var(--linea);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-flower {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: var(--verde);
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
}
.nav-nombre {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tinta);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--tinta);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--verde);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--verde);
  color: var(--crema);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--verde-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--tinta);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--crema);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mm-link {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 400;
  color: var(--tinta);
  transition: color 0.2s;
}
.mm-link:hover { color: var(--verde); }
.mm-cta {
  font-size: 1rem;
  font-weight: 500;
  background: var(--verde);
  color: var(--crema);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  margin-top: 1rem;
  transition: background 0.2s;
}
.mm-cta:hover { background: var(--verde-dark); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-image: url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* iOS Safari fallback — fixed attachment doesn't work on mobile */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}
.hero-bg { display: none; }
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,44,44,0.35) 0%,
    rgba(44,44,44,0.58) 50%,
    rgba(44,44,44,0.72) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) var(--pad) 5rem;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-bottom: 1.4rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--crema);
  text-wrap: balance;
  max-width: 12ch;
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(245,240,232,0.85);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--verde);
  padding: 0.85rem 0;
  border-top: 1px solid var(--verde-dark);
  border-bottom: 1px solid var(--verde-dark);
}
.marquee-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--crema);
  letter-spacing: 0.03em;
}
.marquee-track .dot {
  font-style: normal;
  opacity: 0.5;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   NOSOTROS
═══════════════════════════════════ */
.nosotros {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.nosotros-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--tinta);
  text-wrap: balance;
  margin-bottom: 1.6rem;
}
.nosotros-text h2 em {
  font-style: italic;
  color: var(--verde);
}
.nosotros-body {
  font-size: 1rem;
  color: var(--tinta-soft);
  max-width: 46ch;
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.nosotros-text .btn-verde { margin-top: 1.6rem; }

/* Gallery */
.nosotros-gallery {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
  max-height: 540px;
}
.gallery-col { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-card {
  overflow: hidden;
  border-radius: 8px;
  flex: 1;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-card:hover img { transform: scale(1.06); }
.col-a .gallery-card:first-child { height: 220px; }
.col-a .gallery-card:last-child  { height: 260px; }
.col-b .gallery-card              { height: 100%; min-height: 460px; }

/* ═══════════════════════════════════
   MENÚ
═══════════════════════════════════ */
.menu-section {
  background: var(--crema-2);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
}
.menu-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.menu-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.menu-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--tinta);
  margin-bottom: 0.8rem;
}
.menu-sub {
  font-size: 0.95rem;
  color: var(--tinta-mute);
  max-width: 44ch;
  margin: 0 auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: var(--crema);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--linea);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(44,44,44,0.10);
}
.menu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.25), transparent 60%);
}
.menu-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.menu-icono {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.menu-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--tinta);
  margin-bottom: 0.8rem;
}
.menu-card-body ul li {
  font-size: 0.88rem;
  color: var(--tinta-soft);
  padding: 0.28rem 0;
  border-bottom: 1px solid var(--linea);
  line-height: 1.4;
}
.menu-card-body ul li:last-child { border-bottom: none; }
.menu-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* ═══════════════════════════════════
   CÓMO ORDENAR
═══════════════════════════════════ */
.como-ordenar {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.como-inner { max-width: 700px; }
.como-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--tinta);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.como-inner h2 em { font-style: italic; color: var(--verde); }
.pasos {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--linea);
}
.paso {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--linea);
}
.paso-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--verde);
  line-height: 1;
  padding-top: 2px;
}
.paso-text h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.paso-text p {
  font-size: 0.92rem;
  color: var(--tinta-soft);
  line-height: 1.6;
}
.como-cta {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.como-tel {
  font-size: 0.9rem;
  color: var(--tinta-mute);
}
.como-tel a {
  color: var(--verde);
  border-bottom: 1px solid var(--verde);
}

/* ═══════════════════════════════════
   HORARIOS
═══════════════════════════════════ */
.horarios {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  overflow: hidden;
}
.horarios-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.horarios-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.horarios-tint {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.72);
}
.horarios-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.horarios-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--crema);
  text-wrap: balance;
  margin-bottom: 3rem;
  max-width: 10ch;
}
.horarios-inner h2.light em { font-style: italic; color: var(--crema-2); }
.horarios-tabla {
  max-width: 560px;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.15);
}
.horario-row:last-child { border-bottom: none; }
.horario-row .dia {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  font-weight: 300;
}
.horario-row .horas {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--crema);
  font-weight: 400;
}

/* ═══════════════════════════════════
   GALERÍA
═══════════════════════════════════ */
.galeria {
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  background: var(--crema-2);
}
.galeria-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gal-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gal-item:hover img { transform: scale(1.07); }

/* ═══════════════════════════════════
   UBICACIÓN
═══════════════════════════════════ */
.ubicacion {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
}
.ubicacion-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.ubicacion-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--tinta);
  text-wrap: balance;
  margin-bottom: 1.6rem;
}
.ubicacion-text h2 em { font-style: italic; color: var(--verde); }
.ubicacion-addr {
  font-size: 1rem;
  color: var(--tinta-soft);
  line-height: 1.9;
  margin-bottom: 1.6rem;
}
.ubicacion-contacto {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contacto-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--tinta-soft);
  transition: color 0.2s;
}
.contacto-link:hover { color: var(--verde); }
.mapa-embed-wrap {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--linea);
}
.mapa-abrir {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--verde);
  font-weight: 500;
  border-bottom: 1px solid var(--verde);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.mapa-abrir:hover { color: var(--verde-dark); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: var(--tinta);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-flower {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--verde);
  border-radius: 50%;
  padding: 6px;
  flex-shrink: 0;
}
.footer-nombre {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--crema);
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--crema-3);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crema-3);
  margin-bottom: 0.4rem;
}
.footer-links p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
  display: block;
}
.footer-links a:hover { color: var(--crema); }
.footer-ig { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-ig h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--crema-3);
  margin-bottom: 0.4rem;
}
.ig-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.2s;
}
.ig-link:hover { color: var(--crema); }
.ig-link span { font-size: 0.88rem; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.4rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════
   BOTÓN WA FLOTANTE
═══════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--verde);
  color: var(--crema);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139,155,58,0.4);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.wa-float:hover {
  background: var(--verde-dark);
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(139,155,58,0.5);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--tinta);
  color: var(--crema);
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-inner { grid-template-columns: 1fr; }
  .nosotros-gallery {
    grid-template-columns: repeat(3, 1fr);
    max-height: 280px;
  }
  .col-a { flex-direction: row; }
  .col-a .gallery-card { height: 280px; flex: 1; }
  .col-b .gallery-card { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ubicacion-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding-top: calc(var(--nav-h) + 3rem); }
  .menu-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .nosotros-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-height: 320px;
  }
  .col-b { display: none; }
  .col-a { flex-direction: row; }
  .col-a .gallery-card { height: 200px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .como-cta { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .wa-float { bottom: 1.4rem; right: 1.4rem; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .paso { grid-template-columns: 44px 1fr; }
}
