/* =============================================
   MARTHA'S COCINA CASUAL — GLOBAL STYLES
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:      #f5f0e8;
  --warm-bg:    #1a1410;
  --section-bg: #0f0d0b;
  --gold:       #c8973a;
  --gold-light: #e2b96a;
  --text:       #1a1410;
  --text-light: #5c4f3d;
  --text-muted: #9c8f7e;
  --white:      #ffffff;
  --card-bg:    #ffffff;
  --border:     #ede5d8;
  --green:      #2e7d52;
  --wa-green:   #25D366;
  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 6px 30px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.label-light { color: var(--gold-light); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(15,13,11,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(15,13,11,0.98);
  padding: 16px 24px 24px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.mobile-menu.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,7,4,0.78) 0%,
    rgba(10,7,4,0.52) 55%,
    rgba(10,7,4,0.38) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-tag {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-rating .stars { color: #f4b942; font-size: 1.1rem; letter-spacing: 2px; }
.hero-rating .score { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.hero-rating .count { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.hero-rating .sep { color: rgba(255,255,255,0.3); }
.hero-rating .price { color: var(--gold-light); font-weight: 600; }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollDown 1.8s ease infinite;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(200,151,58,0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,58,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--text);
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

/* ---------- ABOUT ---------- */
.about-section {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.92rem;
}

.info-item svg { color: var(--gold); flex-shrink: 0; }
.info-item a { color: var(--gold); font-weight: 600; }

.open { color: var(--green) !important; font-weight: 600; }

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-img-badge span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.about-img-badge small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- MENU SECTION ---------- */
.menu-section {
  padding: 100px 0;
  background: var(--warm-bg);
}

.menu-section .section-header { text-align: center; margin-bottom: 60px; }
.menu-section .section-header h2 { color: var(--white); }
.menu-section .section-header p { color: rgba(255,255,255,0.5); margin-top: 10px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.menu-card {
  background: #1e1814;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-img img { transform: scale(1.08); }

.menu-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.menu-card-body p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.price-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

.menu-cta { text-align: center; margin-top: 52px; }

/* ---------- HORARIOS ---------- */
.horarios-section {
  padding: 100px 0;
  background: var(--cream);
}

.horarios-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.horarios-text h2 { margin-bottom: 16px; }
.horarios-text p { color: var(--text-light); font-size: 1rem; margin-bottom: 28px; }

.badge-open {
  display: inline-block;
  background: #eaf7ee;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid #c3e8ce;
}

.horarios-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.service-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.tab {
  flex: 1;
  padding: 16px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.horarios-table { width: 100%; border-collapse: collapse; }

.horarios-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.horarios-table tr:last-child td { border-bottom: none; }

.horarios-table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 35%;
}

.horarios-table td:last-child { color: var(--text-light); }

.horarios-table tr.highlight td:first-child { color: var(--gold); }
.horarios-table tr:hover td { background: #faf8f5; }

/* ---------- REVIEWS ---------- */
.reviews-section {
  padding: 100px 0;
  background: var(--section-bg);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--white); margin-bottom: 20px; }
.section-header > p { color: rgba(255,255,255,0.5); }

.overall-rating {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 18px 36px;
  border-radius: var(--radius);
}

.big-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.rating-detail .stars-row { color: #f4b942; font-size: 1.2rem; letter-spacing: 3px; }
.rating-detail span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #1a1612;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card.featured {
  border-color: rgba(200,151,58,0.35);
  background: #1e1c15;
}

.review-card:hover {
  border-color: rgba(200,151,58,0.3);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; color: var(--white); font-size: 0.95rem; }

.guide-badge {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.review-stars { color: #f4b942; font-size: 0.9rem; letter-spacing: 1px; }

.review-text {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.owner-reply {
  margin-top: 18px;
  padding: 14px;
  background: rgba(200,151,58,0.1);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.reply-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.owner-reply p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-style: italic;
}

.review-cta { text-align: center; margin-top: 52px; }
.review-cta .btn-outline-dark {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.review-cta .btn-outline-dark:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ---------- RESERVAR ---------- */
.reservar-section {
  position: relative;
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.reservar-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(200,151,58,0.08) 0%, transparent 70%);
}

.reservar-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.reservar-text h2 { margin-bottom: 16px; }
.reservar-text > p { color: var(--text-light); font-size: 1rem; margin-bottom: 30px; }

.reservar-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.reservar-benefits li {
  color: var(--text-light);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reservar-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-chip:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.reservar-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.reservar-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.personas-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  width: fit-content;
}

.counter-btn {
  background: none;
  border: none;
  width: 42px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--gold);
  font-weight: 700;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover { background: rgba(200,151,58,0.12); }

#personas-count {
  width: 52px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  line-height: 44px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
  letter-spacing: 0.02em;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- MAP ---------- */
.map-section {
  padding: 80px 0 0;
  background: var(--cream);
}

.map-header {
  text-align: center;
  margin-bottom: 40px;
}

.map-header h2 { margin-bottom: 8px; }
.map-header p { color: var(--text-light); margin-bottom: 20px; }

.map-embed {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-embed iframe { display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--warm-bg);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
}

.footer-logo em { color: var(--gold); font-style: italic; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li { font-size: 0.88rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold-light); }

.btn-footer-cta {
  display: inline-block;
  margin-top: 22px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition);
}

.btn-footer-cta:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ---------- FLOAT WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.8s ease infinite;
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

.shake { animation: shake 0.5s ease; }

/* ---------- INTERSECTION OBSERVER ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .about-grid,
  .horarios-grid,
  .reservar-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-img { height: 300px; }
  .about-img-badge { left: 12px; }

  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .hero-title { font-size: 3.2rem; }

  .about-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-badges { flex-direction: column; }
  .reservar-form-wrap { padding: 24px; }
}
