/* =============================================
   Bar Restaurante Aventura - Estilos
   ============================================= */
/* Tipografías cargadas desde <link> en el <head> (más rápido que @import) */

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #FDFBF7;
  color: #1A1A1A;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  touch-action: manipulation;
}

a {
  color: #1A1A1A;
  text-decoration: none;
}

a:hover {
  color: #D4A373;
}

/* Nav: boton reservar */
.btn-reservar-nav {
  background: #1A1A1A;
  color: #D4A373 !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-reservar-nav:hover {
  background: #D4A373;
  color: #1A1A1A !important;
}

/* Hero: CTA primario */
.btn-hero-primary {
  background: #1A1A1A;
  color: #D4A373 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 17px 30px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-primary:hover {
  background: #D4A373;
  color: #1A1A1A !important;
}

/* Hero: CTA secundario */
.btn-hero-secondary {
  background: transparent;
  color: #7A1F2B !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 17px 30px;
  border-radius: 100px;
  border: 2px solid #7A1F2B;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
  background: #7A1F2B;
  color: #FDFBF7 !important;
}

/* Carta: CTA */
.btn-carta {
  display: inline-block;
  background: #1A1A1A;
  color: #D4A373 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 18px 34px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.btn-carta:hover {
  background: #FDFBF7;
  color: #1A1A1A !important;
}

/* Reservas: CTA grande */
.btn-reservas-cta {
  display: inline-block;
  background: #D4A373;
  color: #1A1A1A !important;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  padding: 22px 44px;
  border-radius: 100px;
  margin-bottom: 18px;
  transition: background 0.2s;
}

.btn-reservas-cta:hover {
  background: #FDFBF7;
}

/* Imagenes nocturnas */
.noche-media-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6);
  display: block;
  transition: transform 0.3s ease;
}

.noche-media-primary:hover {
  transform: scale(1.02);
}

.noche-media-secondary {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
  height: 100%;
}

.noche-media-secondary-top,
.noche-media-secondary-bottom {
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.6);
  display: block;
  transition: transform 0.3s ease;
}

.noche-media-secondary-top:hover,
.noche-media-secondary-bottom:hover {
  transform: scale(1.02);
}

/* Botones de idioma */
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 7px;
  font-weight: 700;
  font-size: 12px;
  color: #8A7F6F;
  transition: color 0.2s;
}

.lang-btn.active {
  color: #7A1F2B;
}

/* =============================================
   Componentes de layout (migrados de estilos en línea)
   ============================================= */

.page-wrap {
  background: #FDFBF7;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.text-accent {
  color: #D4A373;
}

/* Reveal al hacer scroll (activado desde JS con la clase .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Cabecera de sección (eyebrow + título + subrayado) */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 80px);
}

.section-head--lg {
  margin-bottom: clamp(48px, 7vw, 88px);
}

.eyebrow-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #D4A373;
  background: #1A1A1A;
  padding: 6px 14px;
  border-radius: 100px;
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7A1F2B;
}

.eyebrow-text--wide {
  letter-spacing: 3px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 52px);
  margin: 22px 0 0;
}

.section-title--lg {
  font-size: clamp(30px, 4.8vw, 54px);
  margin-top: 16px;
}

.underline-bar {
  display: inline-block;
  width: 64px;
  height: 5px;
  background: #7A1F2B;
  border-radius: 100px;
  margin-top: 18px;
}

.section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4640;
  max-width: 460px;
  margin: 18px auto 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px max(clamp(20px, 5vw, 56px), env(safe-area-inset-right)) 16px max(clamp(20px, 5vw, 56px), env(safe-area-inset-left));
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.nav-logo-link {
  display: block;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.lang-sep {
  color: #c9c2b4;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 94vh, 900px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: -1px;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  transform: scale(1.12);
  transform-origin: 50% 15%;
  display: block;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 251, 247, 0) 28%, rgba(253, 251, 247, 0.92) 60%, #FDFBF7 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.hero-content-inner {
  margin-left: auto;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A1A1A;
  color: #D4A373;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7A1F2B;
  flex: none;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 6.2vw, 80px);
  line-height: 1.05;
  margin: 0 0 24px;
  color: #1A1A1A;
}

.hero-title-accent {
  color: #7A1F2B;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: #4a4640;
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .nav-links {
    display: none !important;
  }

  .hero-section {
    display: block;
    min-height: 0;
  }

  .hero-bg {
    position: relative;
    height: clamp(260px, 60vw, 380px);
    inset: auto;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(253, 251, 247, 0) 35%, #FDFBF7 94%);
  }

  .hero-content {
    padding: 0 clamp(20px, 6vw, 40px) clamp(56px, 10vw, 80px);
  }

  .hero-content-inner {
    margin-left: 0;
    max-width: 100%;
  }
}

/* Jornada */
.jornada-section {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px) 0;
  max-width: 1440px;
  margin: 0 auto;
}

.jornada-duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(48px, 7vw, 88px);
}

.jornada-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  margin-bottom: 22px;
}

.jornada-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  margin: 10px 0 16px;
}

.jornada-body {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4640;
  max-width: 420px;
}

.jornada-media {
  position: relative;
  margin-bottom: 22px;
}

/* Noche */
.noche-section {
  background: #1A1A1A;
  color: #FDFBF7;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
}

.noche-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.noche-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #D4A373;
}

.noche-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  margin: 14px 0 20px;
  color: #FDFBF7;
}

.noche-body {
  font-size: 17px;
  line-height: 1.7;
  color: #c9c2b4;
  max-width: 440px;
}

.noche-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  height: clamp(340px, 44vw, 480px);
}

@media (max-width: 640px) {
  .noche-media {
    grid-template-columns: 1fr;
    height: auto;
  }

  .noche-media-primary {
    aspect-ratio: 4/3;
    height: auto;
  }

  .noche-media-secondary {
    height: clamp(280px, 60vw, 380px);
  }
}

/* Producto */
.producto-section {
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.producto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 3px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.producto-card {
  position: relative;
  aspect-ratio: 4/7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.producto-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}

.producto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 38%, rgba(26, 26, 26, 0.6) 62%, rgba(26, 26, 26, 0.94) 100%);
  z-index: 1;
}

.producto-card:hover .producto-card-img {
  transform: scale(1.06);
}

.producto-card-content {
  position: relative;
  z-index: 2;
  padding: 0 12px clamp(18px, 2.4vw, 26px);
  text-align: center;
}

.producto-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #7A1F2B;
  color: #FDFBF7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.6);
}

.producto-card-icon svg {
  width: 17px;
  height: 17px;
}

.producto-card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 19px);
  color: #FDFBF7;
  margin: 0 0 6px;
}

.producto-card-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: #d8d2c6;
  margin: 0;
}

/* CTA de la carta, integrado al final del bloque de producto */
.producto-cta {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: clamp(170px, 20vw, 220px);
  display: flex;
  align-items: center;
}

.producto-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.producto-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #EFE6D8 0%, #EFE6D8 32%, rgba(239, 230, 216, 0.82) 48%, rgba(239, 230, 216, 0.1) 68%, rgba(239, 230, 216, 0) 80%);
}

.producto-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.producto-cta-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 4vw, 40px) clamp(28px, 5vw, 56px);
  max-width: 420px;
}

.producto-cta-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 8px;
  color: #7A1F2B;
}

.producto-cta-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #4a4640;
  margin: 0 0 20px;
}

/* Personalidad */
.personalidad-section {
  background: #EFE6D8;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
}

.personalidad-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.personalidad-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.3;
  margin: 0 0 20px;
}

.personalidad-body {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4640;
  margin: 0;
}

.personalidad-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Reservas */
.reservas-section {
  background: #1A1A1A;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
  text-align: center;
}

.reservas-inner {
  max-width: 640px;
  margin: 0 auto;
}

.reservas-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 54px);
  margin: 0 0 18px;
  color: #FDFBF7;
}

.reservas-sub {
  font-size: 17px;
  color: #c9c2b4;
  margin: 0 0 36px;
}

.reservas-phone-note {
  font-size: 15px;
  color: #8A7F6F;
  margin: 0;
}

.reservas-phone-link {
  color: #8A7F6F;
  font-weight: 700;
}

/* Contacto */
.contacto-section {
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(40px, 6vw, 80px);
}

.contacto-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 12px 0 24px;
}

.contacto-address {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  text-decoration: none;
  margin-bottom: 16px;
}

.contacto-phone {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  margin-bottom: 16px;
}

.contacto-instagram {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  margin-bottom: 28px;
}

.contacto-trust {
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #8A7F6F;
  margin: 0 0 32px;
}

.contacto-map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 2px;
  margin-top: 14px;
  filter: saturate(0.9);
}

/* Horarios */
.horarios-note {
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #8A7F6F;
  margin-top: 6px;
}

.horarios-list {
  margin-top: 16px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.horario-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.horarios-list .horario-row:last-child {
  border-bottom: none;
}

.horario-row--closed {
  color: #8A7F6F;
  font-style: italic;
}

.horario-row--open {
  font-weight: 700;
}

.horario-time {
  color: #7A1F2B;
  text-align: right;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: #1A1A1A;
  color: #c9c2b4;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px) 28px;
  border-top: 4px solid #7A1F2B;
}

.footer-main {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(253, 251, 247, 0.12);
}

.footer-logo {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: #8A7F6F;
  max-width: 220px;
}

.footer-col-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #D4A373;
  margin-bottom: 14px;
}

.footer-link,
.footer-text {
  display: block;
  font-size: 14px;
  color: #c9c2b4;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #D4A373;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: #8A7F6F;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 12px;
  color: #8A7F6F;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-cookie-btn:hover {
  color: #D4A373;
}

.footer-credit {
  color: #8A7F6F;
  text-decoration: none;
  font-size: 12px;
}

.footer-credit strong {
  color: #D4A373;
  font-weight: 700;
}

.footer-credit:hover,
.footer-credit:hover strong {
  color: #D4A373;
}

/* Burbuja flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(26, 26, 26, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 28px -8px rgba(26, 26, 26, 0.55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FDFBF7;
}

@media (max-width: 860px) {
  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Cuando el aviso de cookies está visible, subir la burbuja para que no se solapen */
body:has(#cookie-banner:not([hidden])) .whatsapp-float {
  bottom: 100px;
}

@media (max-width: 860px) {
  body:has(#cookie-banner:not([hidden])) .whatsapp-float {
    bottom: calc(150px + env(safe-area-inset-bottom));
  }
}

/* Aviso de cookies */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: #1A1A1A;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.6;
  color: #c9c2b4;
  max-width: 680px;
}

.cookie-banner-btn {
  background: #D4A373;
  color: #1A1A1A;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s;
  flex: none;
}

.cookie-banner-btn:hover {
  background: #c2895a;
}

@media (max-width: 860px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 16px 18px;
  }
}