/* ═══════════════════════════════════════════════════════
   BRASÍLIA INSIDER – Main Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C875;
  --gold-dark: #A07830;
  --green-wa: #25D366;
  --dark: #0D1117;
  --dark-2: #161B22;
  --dark-3: #1C2333;
  --navy: #0A1628;
  --text: #1a1a2e;
  --text-muted: #5a5a7a;
  --bg: #FAFAF8;
  --bg-alt: #F2F0EB;
  --white: #FFFFFF;
  --border: #E0DDD6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
  --font: 'Inter', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font); font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #1a1000;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: #1a1000; }

.btn-whatsapp {
  background: var(--green-wa);
  color: white;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #1a1000;
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-lg { padding: 14px 30px; font-size: 1rem; }

/* ── Section Utilities ── */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: white;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }

.nav-cta {
  background: var(--green-wa);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: #1ebe5d; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.80) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  margin-top: 80px;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-n { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.stat-l { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px; text-align: center; }

/* ════════════════════════════════════════════
   TOURS
════════════════════════════════════════════ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-img {
  height: 200px;
  background: linear-gradient(135deg, #2a3a5c, #0d1f3c);
  position: relative;
  overflow: hidden;
}

/* Tour image backgrounds — real photos */
.tour-img-arch {
  background: url('images/congresso.jpg') center/cover no-repeat;
}
.tour-img-power {
  background: url('images/stf.jpg') center/cover no-repeat;
}
.tour-img-modernist {
  background: url('images/tv-tower.jpg') center/cover no-repeat;
}
.tour-img-hidden {
  background: url('images/itamaraty.jpg') center/cover no-repeat;
}

.tour-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #1a1000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-duration { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.tour-body h3 { margin-bottom: 12px; }
.tour-body p { color: var(--text-muted); font-size: 0.925rem; margin-bottom: 16px; flex: 1; }

.tour-stops {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.tour-stops li {
  font-size: 0.875rem;
  padding: 4px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.tour-stops li:last-child { border-bottom: none; }

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.price { font-size: 0.875rem; color: var(--text-muted); }
.price strong { color: var(--text); font-size: 1rem; }

/* ════════════════════════════════════════════
   PHOTO TOUR DETAIL
════════════════════════════════════════════ */
.route-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.route-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.route-steps { margin-bottom: 40px; }

.route-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step-icon { font-size: 1.5rem; min-width: 40px; text-align: center; }
.step-text { display: flex; flex-direction: column; gap: 2px; }
.step-text strong { font-weight: 600; }
.step-text span { font-size: 0.875rem; color: var(--text-muted); }

.route-arrow {
  text-align: center;
  padding: 4px 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.route-step-last { border: 2px solid var(--gold); }

.route-includes { background: var(--bg-alt); padding: 28px; border-radius: var(--radius-lg); }
.route-includes h4 { margin-bottom: 16px; }
.route-includes ul li { padding: 6px 0; font-size: 0.925rem; }

.route-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.price-lg { font-size: 1.1rem; color: var(--text-muted); }
.price-lg strong { color: var(--text); font-size: 1.3rem; }

/* Map Visual */
.route-map-visual { position: sticky; top: 88px; }

.map-placeholder {
  background: url('images/hero.jpg') center/cover no-repeat;
  border-radius: var(--radius-lg);
  height: 580px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.3);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.55);
}

.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  cursor: default;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  z-index: 1;
}
.map-pin span {
  background: rgba(201,168,76,0.95);
  color: #1a1000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.map-label {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  z-index: 1;
}

/* ════════════════════════════════════════════
   AIRBNB EXPERIENCE
════════════════════════════════════════════ */
.airbnb-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.airbnb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF5A5F;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.airbnb-intro p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.airbnb-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.meta-item { font-size: 0.925rem; display: flex; align-items: center; gap: 8px; }
.meta-item strong { color: var(--text); }

.experience-selector h3 { margin-bottom: 6px; }
.picker-note { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font); font-weight: 400; }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.exp-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.exp-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.exp-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.exp-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 12px;
  background: var(--gold);
  color: #1a1000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.exp-num { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; margin-bottom: 6px; }
.exp-icon { font-size: 1.5rem; margin-bottom: 8px; }
.exp-card h4 { font-size: 0.9rem; margin-bottom: 6px; font-family: var(--font); font-weight: 600; }
.exp-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.exp-counter {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
  padding: 10px;
  background: rgba(201,168,76,0.08);
  border-radius: 8px;
  margin-bottom: 20px;
}

.airbnb-includes { background: var(--bg-alt); padding: 24px; border-radius: var(--radius-lg); }
.airbnb-includes h4 { margin-bottom: 12px; }
.airbnb-includes li { padding: 5px 0; font-size: 0.9rem; }

/* ════════════════════════════════════════════
   DARK NATIVE EXPERIENCE
════════════════════════════════════════════ */
.section-dark {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-header-dark { text-align: center; margin-bottom: 60px; }
.section-header-dark h2 { color: white; margin-bottom: 12px; }
.section-sub-dark { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.eyebrow-gold { color: var(--gold) !important; }

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}
.vp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.vp-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.vp strong { color: white; display: block; font-size: 1rem; margin-bottom: 8px; }
.vp p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.6; }

.vibe-section { margin-bottom: 60px; }
.vibe-section h3 { color: white; text-align: center; margin-bottom: 6px; }
.vibe-sub { color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 28px; font-size: 0.9rem; }

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.vibe-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.vibe-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}
.vibe-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 0 1px var(--gold);
}
.vibe-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.vibe-card strong { color: white; display: block; margin-bottom: 6px; }
.vibe-card p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.5; }

.pace-section {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.pace-group h4 { color: rgba(255,255,255,0.7); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pace-options { display: flex; gap: 10px; flex-wrap: wrap; }

.pace-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.pace-btn:hover, .pace-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1000;
  font-weight: 600;
}

.native-form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.native-form-wrapper h3 { color: white; text-align: center; margin-bottom: 28px; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-full { grid-column: 1 / -1; }

.native-form label, .concierge-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.concierge-form label { color: var(--text-muted); }

.native-form input,
.native-form select,
.native-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
}
.native-form input::placeholder,
.native-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.native-form input:focus,
.native-form select:focus,
.native-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.native-form select option { background: var(--navy); color: white; }

.native-form-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* ════════════════════════════════════════════
   CONCIERGE
════════════════════════════════════════════ */
.concierge-wrapper { max-width: 820px; margin: 0 auto; }

.concierge-form { display: flex; flex-direction: column; gap: 24px; }

.form-section-title {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}

.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: white;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1000;
  font-weight: 700;
}

.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  width: 100%;
  transition: var(--transition);
}
.concierge-form input:focus,
.concierge-form select:focus,
.concierge-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.concierge-confirm {
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.confirm-icon { font-size: 3rem; margin-bottom: 16px; }
.concierge-confirm h3 { margin-bottom: 12px; }
.concierge-confirm p { color: var(--text-muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.stars-row { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial p { color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 16px; font-size: 0.95rem; }
.test-author { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.test-author em { color: var(--text-muted); font-style: normal; }

/* ════════════════════════════════════════════
   RESTAURANTS
════════════════════════════════════════════ */
.cuisine-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.cuisine-tab {
  background: white;
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.cuisine-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.cuisine-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1000;
}

.restaurant-panel { display: none; }
.restaurant-panel.active { display: block; }

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.restaurant-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.restaurant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.rest-header {
  height: 160px;
  position: relative;
}

/* Restaurant image placeholders — warm color overlays */
.rest-br1 { background: linear-gradient(160deg, rgba(45,74,10,0.85), rgba(106,64,16,0.7)), url('images/pontao.jpg') center/cover; }
.rest-br2 { background: linear-gradient(160deg, rgba(74,10,10,0.8), rgba(176,48,48,0.6)), url('images/congresso.jpg') center/cover; }
.rest-br3 { background: linear-gradient(160deg, rgba(26,26,10,0.85), rgba(106,64,16,0.7)), url('images/cathedral.jpg') center/cover; }
.rest-jp1 { background: linear-gradient(160deg, rgba(10,10,26,0.85), rgba(204,51,51,0.5)), url('images/museu-republica.jpg') center/cover; }
.rest-jp2 { background: linear-gradient(160deg, rgba(26,10,16,0.85), rgba(138,32,64,0.6)), url('images/itamaraty.jpg') center/cover; }
.rest-jp3 { background: linear-gradient(160deg, rgba(10,26,42,0.85), rgba(204,51,51,0.4)), url('images/alvorada.jpg') center/cover; }
.rest-md1 { background: linear-gradient(160deg, rgba(10,26,10,0.85), rgba(42,96,64,0.6)), url('images/ponte-jk.jpg') center/cover; }
.rest-md2 { background: linear-gradient(160deg, rgba(26,10,0,0.85), rgba(106,48,16,0.6)), url('images/pontao.jpg') center/cover; }
.rest-md3 { background: linear-gradient(160deg, rgba(0,26,42,0.85), rgba(0,74,106,0.6)), url('images/stf.jpg') center/cover; }
.rest-cer1 { background: linear-gradient(160deg, rgba(26,26,0,0.85), rgba(106,106,16,0.6)), url('images/tv-tower.jpg') center/cover; }
.rest-cer2 { background: linear-gradient(160deg, rgba(10,26,10,0.85), rgba(58,128,32,0.6)), url('images/congresso.jpg') center/cover; }
.rest-cer3 { background: linear-gradient(160deg, rgba(26,10,0,0.85), rgba(138,80,32,0.6)), url('images/cathedral.jpg') center/cover; }

.rest-header::after {
  content: attr(data-emoji);
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 2rem;
  opacity: 0.6;
}

.rest-body { padding: 20px; }
.rest-body h4 { font-size: 1.1rem; margin-bottom: 10px; }

.rest-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.rest-tags span {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.rest-body > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }

.must-try {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text);
}
.must-try strong { display: block; margin-bottom: 2px; color: var(--gold-dark); }

.restaurants-note {
  text-align: center;
  margin-top: 48px;
  padding: 20px;
  background: rgba(201,168,76,0.08);
  border-radius: var(--radius);
  font-size: 0.925rem;
  color: var(--text-muted);
}
.restaurants-note a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-item {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-icon { font-size: 2.5rem; }
.contact-item h4 { font-size: 1.1rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.footer .logo { color: white; font-size: 1.2rem; margin-bottom: 4px; }
.footer .logo span { color: var(--gold); }
.footer-brand p:not(.logo) { font-size: 0.875rem; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; width: 100%; text-align: center; }

/* ════════════════════════════════════════════
   STICKY WHATSAPP
════════════════════════════════════════════ */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--green-wa);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.sticky-wa:hover { background: #1ebe5d; transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ════════════════════════════════════════════
   STAR FIELD
════════════════════════════════════════════ */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--dur, 3s) var(--delay, 0s) ease-in-out infinite alternate;
}
@keyframes twinkle {
  0% { opacity: 0.1; transform: scale(0.8); }
  100% { opacity: 0.8; transform: scale(1.2); }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .route-wrapper { grid-template-columns: 1fr; }
  .route-map-visual { display: none; }
  .airbnb-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section, .section-alt, .section-dark { padding: 60px 0; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }

  .hero-stats { gap: 28px; }

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

  .pace-section { flex-direction: column; gap: 24px; }

  .cuisine-tab { font-size: 0.8rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .tour-grid { grid-template-columns: 1fr; }
  .route-cta { flex-direction: column; align-items: flex-start; }
  .native-form-cta { flex-direction: column; align-items: center; }
  .form-cta { flex-direction: column; }
}
