/* ============================================================
   CAFÉ AURORA — style.css
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --cream:      #fdf8f3;
  --cream-dark: #f5ede0;
  --warm:       #e8d5b7;
  --amber:      #d4843a;
  --amber-dark: #b5651d;
  --amber-glow: #f0a050;
  --espresso:   #2c1810;
  --espresso-2: #3d2314;
  --mocha:      #5c3d2e;
  --mocha-light:#8b5e3c;
  --latte:      #c69c6d;
  --green-wa:   #25d366;
  --green-wa-d: #1ebe5b;
  --text-dark:  #1a0f0a;
  --text-mid:   #4a3728;
  --text-light: #8b7355;
  --white:      #ffffff;
  --shadow-sm:  0 2px 12px rgba(44,24,16,.08);
  --shadow-md:  0 8px 32px rgba(44,24,16,.14);
  --shadow-lg:  0 20px 60px rgba(44,24,16,.18);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212,132,58,.12);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--amber-glow); background: rgba(240,160,80,.15); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--amber); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--amber-glow); }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 500px; }
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212,132,58,.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,132,58,.55);
}
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 2px solid rgba(44,24,16,.2);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(253,248,243,.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
}
.logo-icon { font-size: 1.5rem; }
.logo-text em { font-style: italic; color: var(--amber); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-link:hover { background: rgba(44,24,16,.07); color: var(--espresso); }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white);
  box-shadow: 0 3px 14px rgba(212,132,58,.4);
}
.nav-link.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,132,58,.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 60px 80px;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,132,58,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(180,100,30,.06) 0%, transparent 50%),
              var(--cream);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--amber-glow), var(--amber));
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.blob2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--latte), var(--mocha-light));
  bottom: -80px; left: -80px;
  animation-delay: 3s;
}
.blob3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--amber-glow), transparent);
  top: 40%; left: 50%;
  animation-delay: 5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(.95); }
}

/* Steam animation */
.coffee-steam {
  position: absolute;
  bottom: 20%; right: 30%;
  display: flex; gap: 8px;
  opacity: .15;
}
.steam {
  width: 6px;
  background: linear-gradient(to top, var(--amber), transparent);
  border-radius: 3px;
  animation: steamRise 2.5s ease-in-out infinite;
}
.s1 { height: 40px; animation-delay: 0s; }
.s2 { height: 60px; animation-delay: .6s; }
.s3 { height: 35px; animation-delay: 1.2s; }
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: .8; }
  100% { transform: translateY(-60px) scaleX(2); opacity: 0; }
}

.hero-content {
  flex: 1;
  max-width: 580px;
}
.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--espresso);
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--amber); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(44,24,16,.15);
}

/* Cup visual */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cup-wrapper { position: relative; }
.cup-card {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius-lg);
  padding: 36px 40px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* CSS Cup Art */
.cup-art { position: relative; width: 160px; margin: 0 auto 20px; }
.cup-body {
  position: relative;
  width: 140px;
  margin: 0 auto;
}
.coffee-liquid {
  width: 120px;
  height: 90px;
  background: linear-gradient(160deg, #8b4513 0%, #5c2e0a 60%, #3d1a06 100%);
  border-radius: 8px 8px 50px 50px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,.3);
}
.latte-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.latte-leaf {
  position: absolute;
  background: rgba(255,220,160,.55);
  border-radius: 50%;
}
.l1 { width: 60px; height: 28px; transform: rotate(-30deg); top: 20px; left: 18px; }
.l2 { width: 45px; height: 20px; transform: rotate(30deg); bottom: 18px; right: 15px; }
.latte-dot {
  position: absolute;
  background: rgba(255,240,200,.4);
  border-radius: 50%;
}
.d1 { width: 12px; height: 12px; top: 15px; right: 22px; }
.d2 { width: 8px; height: 8px; bottom: 22px; left: 20px; }
.cup-base {
  width: 100px;
  height: 14px;
  background: linear-gradient(135deg, #f5f0eb, #e8ddd0);
  border-radius: 4px 4px 8px 8px;
  margin: 0 auto;
  border: 2px solid rgba(200,180,160,.4);
}
.cup-handle {
  position: absolute;
  right: -18px;
  top: 20px;
  width: 28px; height: 40px;
  border: 5px solid rgba(200,180,160,.6);
  border-left: none;
  border-radius: 0 30px 30px 0;
}
.saucer {
  width: 160px;
  height: 16px;
  background: linear-gradient(135deg, #f5f0eb, #e0d4c4);
  border-radius: 50%;
  margin: 4px auto 0;
  box-shadow: 0 4px 12px rgba(44,24,16,.15);
}
.cup-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
}
.cup-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--amber);
  font-family: 'Playfair Display', serif;
}
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--espresso);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: badgeFloat 5s ease-in-out infinite;
}
.badge1 { top: -10px; left: -60px; animation-delay: .5s; }
.badge2 { bottom: 40px; right: -55px; animation-delay: 2s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.6); }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrapper {
  position: relative;
  height: 480px;
}
.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--espresso-2), var(--mocha));
  border-radius: var(--radius-xl);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-lg);
}
.about-img-card {
  position: absolute;
  inset: 20px;
  background: linear-gradient(160deg, #2c1810 0%, #5c3d2e 50%, #8b5e3c 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-decoration {
  position: relative;
  width: 200px; height: 200px;
}
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212,132,58,.3);
}
.c1 { inset: 0; }
.c2 { inset: 25px; border-color: rgba(212,132,58,.5); }
.beans-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bean {
  position: absolute;
  font-size: 1.8rem;
  animation: beanSpin 10s linear infinite;
}
.b1 { top: 20px; transform-origin: 50% 80px; animation-delay: 0s; }
.b2 { top: 20px; transform-origin: 50% 80px; animation-delay: -3.3s; }
.b3 { top: 20px; transform-origin: 50% 80px; animation-delay: -6.6s; }
@keyframes beanSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.since-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.since-year { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.since-text { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }

.about-content .section-tag { margin-bottom: 12px; }
.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: rgba(212,132,58,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature strong { display: block; font-size: .95rem; color: var(--espresso); margin-bottom: 2px; }
.feature p { font-size: .85rem; color: var(--text-light); }

/* ── MENU SECTION ────────────────────────────────────────── */
.menu-section { padding: 100px 0; background: var(--cream); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tab:hover { border-color: var(--amber); color: var(--amber); }
.tab.active {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,132,58,.4);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp .4s ease both;
}
.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-item-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.menu-item-body { padding: 18px 20px 20px; }
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}
.menu-item-desc { font-size: .82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--amber);
}
.menu-item-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge-hot { background: rgba(220,80,40,.1); color: #c44b1a; }
.badge-new { background: rgba(50,180,80,.1); color: #2a9a50; }
.badge-pop { background: rgba(212,132,58,.12); color: var(--amber-dark); }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g1 { grid-row: span 2; background: linear-gradient(160deg, #2c1810 0%, #8b5e3c 100%); }
.g2 { background: linear-gradient(135deg, #4a2c1a 0%, #c69c6d 100%); }
.g3 { background: linear-gradient(135deg, #3d2314 0%, #a07040 100%); }
.g4 { background: linear-gradient(135deg, #1a0f0a 0%, #5c3d2e 100%); }

.gallery-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  transition: var(--transition);
}
.gallery-card:hover .gallery-inner { background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 100%); }
.gallery-label {
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  transform: translateY(8px);
  transition: var(--transition);
  opacity: .85;
}
.gallery-card:hover .gallery-label { transform: translateY(0); opacity: 1; }

/* Add CSS art to gallery cards */
.g1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='rgba(255,200,100,0.15)' stroke-width='2'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='rgba(255,200,100,0.1)' stroke-width='2'/%3E%3C/svg%3E") center/cover;
}
.g2::before, .g3::before {
  content: '☕';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-size: 4rem;
  opacity: .2;
}
.g3::before { content: '🌿'; }
.g4::before {
  content: '✨';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-size: 3rem;
  opacity: .2;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--espresso), var(--mocha));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured .stars { color: var(--amber-glow); }
.testimonial-card.featured p { color: rgba(255,255,255,.85); }
.testimonial-card.featured strong { color: var(--white); }
.testimonial-card.featured span { color: rgba(255,255,255,.6); }
.stars { color: #f0a030; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #d4843a, #b5651d); }
.av2 { background: linear-gradient(135deg, #5c3d2e, #3d2314); }
.av3 { background: linear-gradient(135deg, #c69c6d, #8b5e3c); }
.author strong { display: block; font-size: .9rem; color: var(--espresso); }
.testimonial-card.featured .author strong { color: var(--white); }
.author span { font-size: .78rem; color: var(--text-light); }

/* ── RESERVAS ────────────────────────────────────────────── */
.reservas {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-2) 40%, var(--mocha) 100%);
  position: relative;
  overflow: hidden;
}
.reservas::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,132,58,.2), transparent 70%);
  border-radius: 50%;
}
.reservas::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,132,58,.15), transparent 70%);
  border-radius: 50%;
}
.reservas-wrapper {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.reservas-info .section-title { margin-bottom: 16px; }
.reservas-desc {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,.65); font-size: .85rem; line-height: 1.6; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,.2); color: var(--white); transform: translateY(-2px); }
.social-btn.whatsapp-social { background: rgba(37,211,102,.2); color: var(--green-wa); }
.social-btn.whatsapp-social:hover { background: var(--green-wa); color: var(--white); }

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.form-header {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  padding: 28px 32px;
}
.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.form-header p { font-size: .88rem; color: rgba(255,255,255,.85); }
.reservation-form { padding: 28px 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { margin-bottom: 16px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-light); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid rgba(44,24,16,.1);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,132,58,.15);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e05030; }
.field-error { font-size: .78rem; color: #e05030; min-height: 18px; }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Counter */
.counter-input {
  display: flex;
  align-items: center;
  border: 2px solid rgba(44,24,16,.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.counter-input:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,132,58,.15);
}
.counter-btn {
  width: 44px; height: 46px;
  background: transparent;
  font-size: 1.3rem;
  color: var(--amber);
  font-weight: 700;
  transition: background var(--transition);
  flex-shrink: 0;
}
.counter-btn:hover { background: rgba(212,132,58,.08); }
.counter-input input[type="number"] {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  padding: 0;
}
.counter-input input[type="number"]:focus { box-shadow: none; }
/* Hide number spinners */
.counter-input input[type=number]::-webkit-inner-spin-button,
.counter-input input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-d));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.btn-submit:active { transform: translateY(0); }
.wa-icon { flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,.75);
  padding: 64px 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,.08);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-links-col h4 {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links-col ul li a { transition: color var(--transition); }
.footer-links-col ul li a:hover { color: var(--amber); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── WHATSAPP FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #1ebe5b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}
.wa-fab.visible { opacity: 1; transform: scale(1); }
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--white);
  color: var(--espresso);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-fab:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE: TABLET (≤900px) ────────────────────────── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    min-height: auto;
    padding-top: 110px;
  }
  .hero-tag { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .scroll-hint { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrapper { height: 340px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g1 { grid-row: span 1; grid-column: span 2; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .reservas-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .reservas-info { text-align: center; }
  .contact-item { text-align: left; }
  .social-links { justify-content: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: span 2; }
}

/* ── RESPONSIVE: MOBILE (≤600px) ─────────────────────────── */
@media (max-width: 600px) {
  .navbar { padding: 12px 0; }
  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(253,248,243,.98);
    backdrop-filter: blur(20px);
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  .hero { padding: 90px 20px 60px; }
  .hero-title { font-size: 2.2rem; }
  .badge1, .badge2 { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .reservation-form { padding: 20px 20px; }
  .form-header { padding: 22px 20px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .g1 { grid-column: 1; height: 200px; }
  .gallery-card { height: 180px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  .btn { padding: 12px 22px; font-size: .88rem; }

  .section-title { font-size: 1.8rem; }

  .wa-fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
