/* Landing Page Styles - Generated by Landing Generator */
:root {
  /* Colors */
    --color-primary: #0F172A;
    --color-secondary: #64748B;
    --color-background: #FFFFFF;
    --color-foreground: #0F172A;
    --color-accent: #3B82F6;
    --color-muted: #F1F5F9;
    --color-surface: #FFFFFF;
    --color-border: #E2E8F0;
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Spacing */
    --spacing-section-y: 80px;
    --spacing-container-x: 24px;
    --spacing-gap: 24px;
    
    /* Layout */
    --layout-max-width: 1200px;
    --layout-content-width: 720px;
    
    /* Shadows */
    --shadow-card: none;
    --shadow-button: none;
    
    /* Motion */
    --motion-fast: 150ms;
    --motion-normal: 250ms;
}

/* ============================================ */
/* BASE LANDING CLASSES                         */
/* ============================================ */
/* ============================================ */
/* LANDING BASE CLASSES                         */
/* ============================================ */

/* Reset for landing root */
#landing-root {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
}

#landing-root *, 
#landing-root *::before, 
#landing-root *::after {
  box-sizing: border-box;
}

/* ============================================ */
/* LAYOUT                                       */
/* ============================================ */

.landing-container {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding-left: var(--spacing-container-x);
  padding-right: var(--spacing-container-x);
}

.landing-section {
  padding-top: 32px;
  padding-bottom: var(--spacing-section-y);
}

.landing-section--muted {
  background-color: var(--color-muted);
}

.landing-section--surface {
  background-color: var(--color-surface);
}

.landing-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================ */
/* TYPOGRAPHY                                   */
/* ============================================ */

.landing-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-foreground);
}

.landing-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: var(--color-foreground);
}

.landing-subheading {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.7;
  max-width: var(--layout-content-width);
  margin: 16px auto 0;
}

.landing-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-foreground);
}

.landing-text--lg {
  font-size: 1.125rem;
}

.landing-text--sm {
  font-size: 0.875rem;
}

.landing-text--muted {
  opacity: 0.7;
}

.landing-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

/* ============================================ */
/* GRID                                         */
/* ============================================ */

.landing-grid {
  display: grid;
  gap: var(--spacing-gap);
}

.landing-grid--2 {
  grid-template-columns: repeat(1, 1fr);
}

.landing-grid--3 {
  grid-template-columns: repeat(1, 1fr);
}

.landing-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .landing-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .landing-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================ */
/* CARDS                                        */
/* ============================================ */

.landing-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.landing-card--flat {
  box-shadow: none;
  border: none;
}

.landing-card--hover {
  transition: transform var(--motion-normal) ease, box-shadow var(--motion-normal) ease;
}

.landing-card--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--motion-fast) ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-background);
  box-shadow: var(--shadow-button);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

/* ============================================ */
/* BADGES                                       */
/* ============================================ */

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary);
  color: var(--color-background);
}

.landing-badge--muted {
  background-color: var(--color-muted);
  color: var(--color-foreground);
}

.landing-badge--outline {
  background-color: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-foreground);
}

/* ============================================ */
/* ICONS                                        */
/* ============================================ */

.landing-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: color-mix(in srgb, var(--color-primary) 15%, transparent);
  color: var(--color-primary);
  flex-shrink: 0;
}

.landing-icon-box--lg {
  width: 64px;
  height: 64px;
}

.landing-icon-box--sm {
  width: 40px;
  height: 40px;
}

/* ============================================ */
/* DIVIDERS                                     */
/* ============================================ */

.landing-divider {
  height: 1px;
  background-color: var(--color-border);
  border: none;
  margin: 32px 0;
}

/* ============================================ */
/* IMAGES                                       */
/* ============================================ */

.landing-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.landing-img--cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================ */
/* FORMS                                        */
/* ============================================ */

.landing-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  color: var(--color-foreground);
  transition: border-color var(--motion-fast) ease;
}

.landing-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.landing-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  color: var(--color-foreground);
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--motion-fast) ease;
}

.landing-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ============================================ */
/* UTILITIES                                    */
/* ============================================ */

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

.landing-text-left {
  text-align: left;
}

.landing-text-right {
  text-align: right;
}

.landing-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.landing-flex {
  display: flex;
}

.landing-flex-col {
  flex-direction: column;
}

.landing-items-center {
  align-items: center;
}

.landing-justify-center {
  justify-content: center;
}

.landing-gap-sm {
  gap: 12px;
}

.landing-gap-md {
  gap: var(--spacing-gap);
}

.landing-gap-lg {
  gap: 48px;
}

/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: 1.6;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-background);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
}


/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  flex-wrap: nowrap;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-foreground);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-foreground);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #65a30d;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.site-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-cta:hover::before {
  opacity: 1;
}

.site-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

.site-cta__icon {
  font-size: 1.05rem;
  transition: transform .25s ease;
}

.site-cta:hover .site-cta__icon {
  transform: translateX(4px) scale(1.1);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-left: 40px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F172A;
  margin-bottom: 0px;
}

.hero-eyebrow--center {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  font-size: clamp(0.9rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #111827;
  z-index: 3;
}

.hero-title-line--bold {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #d97706;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 14px;
}

.hero-subtext {
  margin-top: 28px;
  max-width: 560px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #5b6472;
}

@media (max-width: 991px) {
  .nav-logo-img {
    height: 64px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-cta--nav {
    display: none;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 12px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .hero-title-line--bold {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .hero-title-line--accent {
    font-size: clamp(2.8rem, 5.2vw, 3.8rem);
    letter-spacing: 0.03em;
  }

  .hero-subtext {
    max-width: 100%;
    font-size: 1.05rem;
  }
}

@media (max-width: 640px) {
  .nav-logo-img {
    height: 56px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    line-height: 0.96;
  }

  .hero-title-line--accent {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
    margin-top: 10px;
  }

  .hero-subtext {
    margin-top: 20px;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-copy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-eyebrow--center {
    top: 28px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    text-align: center;
    letter-spacing: 0.14em;
  }

  .hero-bg-media {
    min-height: auto;
    margin-top: 0;
    border-radius: 0;
    opacity: 0.22;
    background-position: 68% center;
  }
}

.hero-image {
  background-color: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-eyebrow--center {
    top: 36px;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }

  .hero-bg-media {
    background-position: center;
    opacity: 0.26;
  }

  .hero-mobile-spacer {
    display: none;
  }

  .landing-flex.landing-flex-col[style*="text-align: left"] {
    position: relative;
    z-index: 2;
    width: 100%;
  }
}

.menu-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 16px 60px;
  scroll-snap-type: x mandatory;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.menu-tab {
  min-width: 180px;
  padding: 14px 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.menu-tab:hover {
  transform: translateY(-2px);
  border-color: #d97706;
  color: #d97706;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.menu-tab.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}

@media (max-width: 640px) {
  .menu-tabs {
    gap: 10px;
  }

  .menu-tab {
    width: 100%;
    min-width: unset;
  }

.menu-carousel {
  width: calc(100% - 88px);
  margin: 0 auto;
  padding: 16px 0;
}

.menu-item {
  scroll-snap-align: center;
  margin: 0;
}
}

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

.menu-item {
  width: 260px;
  flex: 0 0 260px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-item.is-hidden {
  display: none;
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.menu-item:hover .menu-img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.menu-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.menu-name {
  color: #0f172a;
  font-weight: 700;
  font-size: 1rem;
}

.menu-price {
  color: #d97706;
  font-weight: 800;
  font-size: 1.05rem;
}

.menu-carousel-wrapper {
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 28px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.06);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

/* ========================= */
/* PROMOCIONES              */
/* ========================= */

.promos-section {
  margin-top: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.promos-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.promos-line {
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  max-width: 120px;
}

.promos-carousel-wrapper {
  position: relative;
}

.promos-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 16px 20px;
}

.promos-carousel::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .promos-carousel {
    width: calc(100% - 104px);
    margin: 0 auto;
    padding: 16px 0;
  }

  .promo-card {
    scroll-snap-align: center;
    margin: 0;
  }
}

.promo-card {
  min-width: 260px;
  max-width: 280px;
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.promo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  margin-bottom: 12px;
  cursor: zoom-in;
}

.promo-content {
  padding: 8px 4px 4px;
}

.promo-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.promo-text {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.5;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.promo-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* Botones del carrusel reutilizados */
.promos-prev {
  left: 8px;
}

.promos-next {
  right: 8px;
}

.menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: -20px;
  position: relative;
  z-index: 2;
}

.menu-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #0f172a; 
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.menu-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.menu-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-btn:hover::before {
  opacity: 1;
}

.menu-btn:hover {
  background: #d97706;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* ========================= */
/* UBICACION Y CONTACTO      */
/* ========================= */

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.location-hero {
  position: relative;
  width: 100%;
  height: clamp(460px, 62vw, 620px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  max-width: 100%;
}

.location-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 56px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.84) 0%, rgba(2, 6, 23, 0.62) 38%, rgba(2, 6, 23, 0.14) 68%, rgba(2, 6, 23, 0.03) 100%);
}

.location-copy {
  display: none;
}

.location-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.location-title {
  max-width: 520px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 18px;
}

.location-text {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.location-info p {
  width: fit-content;
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

/* NUEVO */
.location-info p strong {
  color: #f97316;
  font-weight: 700;
}

.location-info p:last-child {
  font-size: 1.05rem;
}

.location-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.34);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(249, 115, 22, 0.42);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.contact-center {
  flex: 1;
  text-align: center;
}

.contact-center .landing-heading {
  margin-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 600;
  opacity: 0.7;
}

.contact-phone {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.contact-phone:hover {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-hero {
    height: 520px;
  }
  
  .location-hero-overlay {
    padding: 28px 24px;
  }
  
  .location-title {
    font-size: clamp(2.4rem, 8vw, 3.6rem);
  }
  
  .location-text {
    font-size: 1rem;
  }
  
  .location-hero-img {
    object-position: center 58%;
  }

  .contact-strip {
    flex-direction: column;
    text-align: center;
  }
}

.contact-top-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
}

.social-btn .fa-facebook-f {
  color: #1877F2;
}

.social-btn .fa-instagram {
  color: #C13584;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.trust-strip-section {
  padding: 0 0 28px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.trust-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.trust-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .trust-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.menu-modal.is-open {
  display: flex;
}

.menu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
}

.menu-modal-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 20px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalFadeUp 0.28s ease;
}

.menu-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.menu-modal-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 18px;
}

.menu-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.menu-modal-cta:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .menu-modal {
    padding: 16px;
  }

  .menu-modal-content {
    border-radius: 20px;
    padding: 16px 16px 20px;
  }

  .menu-modal-img {
    max-height: 58vh;
  }
}

.menu-section {
  padding-bottom: 40px; 
}

.location-full {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding-left: var(--spacing-container-x);
  padding-right: var(--spacing-container-x);
}

#location {
  padding-top: 64px;
  padding-bottom: 64px;
}

.location-map-full {
  width: 100%;
  max-width: 100%;
  height: 360px;
  margin-top: 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.location-map-full iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991px) {
  .location-map-full {
    height: 300px;
    margin-top: 20px;
    border-radius: 20px;
  }
}

.hero-grid--bg {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-mobile-spacer {
  display: none;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  background-image: url('./imagenes/hamburguesa-avestruz-hero.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-grid--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.2) 70%, transparent 100%);
  z-index: 1;
}

.hero-grid--bg {
  padding: 140px 0 80px;
}

.delivery-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.delivery-platforms {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0;    
}

.delivery-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.delivery-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.delivery-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

@media (max-width: 640px) {
  .promos-section {
    margin-top: 32px;
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .menu-section {
    padding-bottom: 24px;
  }

  .menu-cta {
    margin-bottom: -12px;
  }

  .menu-btn {
    transform: translateY(6px);
  }

.hero-cta {
  position: relative;
  z-index: 2;
}
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
}



