/* ═══════════════════════════════════════════════════════════════════════
   Florencia — Home page (full-width, layout de producción)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero: ocupa gran parte del viewport ─────────────────────── */
.hero {
  position: relative;
  min-height: min(720px, 82vh);
  padding: 60px 40px 100px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1360px;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}
.hero-blob {
  position: absolute; right: -180px; top: -140px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-2-200), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-blob-2 {
  position: absolute; left: -100px; bottom: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 15%, transparent), transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 {
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 1.02; margin: 20px 0 12px;
  letter-spacing: -0.025em;
  white-space: pre-line;
}
.hero-copy p.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  margin: 28px 0 36px; max-width: 52ch;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-image {
  position: relative; z-index: 1;
  aspect-ratio: 4/5;
  min-height: 400px;
  max-height: 620px;
}
.hero-image .photo {
  width: 100%; height: 100%;
  border-radius: 250px 250px 24px 24px;
}

/* ── Sección: Lo que hay hoy (destacados) ────────────────────── */
.section-destacados {
  padding: 100px 40px;
  background: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
}
.section-destacados-inner { max-width: 1280px; margin-inline: auto; }

.section-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
  margin-bottom: 48px;
}
.section-head h2 { margin: 10px 0 0; }
.section-head .actions { justify-self: end; }

.destacados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.destacado-card .photo {
  aspect-ratio: 4/3;
  margin-bottom: 8px;
}
.destacado-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}

/* ── Sección: Historia ───────────────────────────────────────── */
.section-historia {
  padding: 120px 40px;
  background: #fff;
  display: grid; place-items: center;
}
.section-historia-inner {
  max-width: 1280px; width: 100%;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.section-historia figure {
  border-radius: 40px;
  overflow: hidden;
}
.section-historia .photo {
  aspect-ratio: 3/4;
  border-radius: 40px;
}
.section-historia h2 {
  margin: 12px 0 8px;
  white-space: pre-line;
}
.section-historia p {
  font-size: 17px; line-height: 1.7;
  margin-top: 24px; max-width: 48ch;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

/* ── Sección: Testimonios ────────────────────────────────────── */
.section-testimonios {
  padding: 100px 40px;
  background: var(--color-neutral-100);
  display: grid; place-items: center;
}
.section-testimonios-inner {
  max-width: 1280px; width: 100%;
}
.section-testimonios .head {
  text-align: center; margin-bottom: 48px;
}
.section-testimonios h2 { margin: 8px 0 4px; }
.section-testimonios .en { margin-top: 6px; }

.testimonios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonio-card {
  background: #fff;
  border-radius: calc(var(--radius-lg) * 1.15);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.testimonio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonio-card .stars {
  display: flex; gap: 2px; color: var(--color-accent);
}
.testimonio-card .stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonio-card blockquote {
  font-family: var(--font-heading);
  font-size: 19px; line-height: 1.4;
  margin: 0; color: var(--color-text);
  quotes: "\201C" "\201D";
}
.testimonio-card blockquote::before {
  content: open-quote;
  font-size: 42px; color: var(--color-accent-200);
  vertical-align: -14px; margin-right: 4px;
  line-height: 0;
}
.testimonio-card .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-divider);
}
.testimonio-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-accent-100); color: var(--color-accent-800);
  display: grid; place-items: center;
  font-family: var(--font-heading); font-size: 18px;
  flex: none;
}
.testimonio-card .author-info strong {
  font-family: var(--font-body); font-weight: 700;
  font-size: 14px; display: block;
}
.testimonio-card .author-info .fuente {
  font-size: 12px; color: color-mix(in srgb, var(--color-text) 55%, transparent);
}

@media (max-width: 900px) {
  .section-testimonios { padding: 60px 20px; }
  .section-testimonios .head { margin-bottom: 32px; }
  .testimonios-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonio-card { padding: 24px 22px; }
  .testimonio-card blockquote { font-size: 17px; }
}

/* ── Cuenta regresiva Happy Hour ─────────────────────────────── */
.happy-hour-pill {
  position: fixed; left: 50%; bottom: 24px;
  transform: translateX(-50%);
  z-index: 45;
  background: var(--color-accent);
  color: #fff;
  padding: 12px 24px; border-radius: 999px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--color-accent) 40%, transparent);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-size: 14px;
  cursor: pointer;
  animation: slide-up 400ms ease;
  max-width: calc(100vw - 40px);
}
.happy-hour-pill .icon { width: 20px; height: 20px; }
.happy-hour-pill .countdown { font-weight: 700; font-size: 15px; }
.happy-hour-pill.active {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-600));
}
@keyframes slide-up {
  from { transform: translate(-50%, 60px); opacity: 0; }
  to   { transform: translate(-50%, 0); opacity: 1; }
}
@media (max-width: 720px) {
  .happy-hour-pill { bottom: 88px; padding: 10px 20px; font-size: 13px; }
  /* deja espacio para el whatsapp fab abajo derecha */
}

/* ── Sección: CTA reservas ───────────────────────────────────── */
.section-reservas {
  background: var(--color-accent-2-100);
  padding: 100px 40px;
  display: grid; place-items: center;
}
.section-reservas-inner {
  max-width: 1280px; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.section-reservas h2 { margin: 0 0 8px; }
.section-reservas p {
  margin-top: 20px; max-width: 44ch;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}
.section-reservas .form-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.section-reservas .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.section-reservas .form-row .full { grid-column: 1 / -1; }

/* ═══════════════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px 60px;
    min-height: auto;
  }
  .hero-image { min-height: 280px; max-height: 400px; aspect-ratio: 4/3; }
  .hero-image .photo { border-radius: 24px; }
  .hero-blob { width: 260px; height: 260px; right: -100px; top: -80px; }
  .hero-blob-2 { display: none; }

  .section-destacados { padding: 60px 20px; border-radius: 30px 30px 0 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
  .section-head .actions { justify-self: start; }
  .destacados-grid { grid-template-columns: 1fr; gap: 20px; }

  .section-historia { padding: 60px 20px; }
  .section-historia-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-historia .photo { aspect-ratio: 4/3; }

  .section-reservas { padding: 60px 20px; }
  .section-reservas-inner { grid-template-columns: 1fr; gap: 32px; }
  .section-reservas .form-card { padding: 24px; }
}
