/* =====================================================
   FAVELA TOP TOUR — Santa Marta, Rio de Janeiro
   Folha de estilo 100% EXCLUSIVA — Turismo internacional
   Paleta: Azul Escuro (base) + Amarelo Ouro + Verde Vibrante
   ===================================================== */

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

:root {
  /* Paleta extraída da logo: azul-céu + amarelo + verde/laranja das casas */
  --sky: #17A6E0;
  --sky-600: #1391C6;
  --sky-700: #0F73A0;
  --sky-800: #0B5578;
  --sky-tint: #E9F6FD;

  /* nomes "navy-*" remapeados p/ a nova identidade (chips azuis + seções escuras petróleo) */
  --navy-900: #0B2436;   /* seções escuras / rodapé (petróleo, tom do preto da logo) */
  --navy-800: #0F73A0;   /* chips de ícone (azul-céu escuro) */
  --navy-700: #1391C6;
  --navy-600: #17A6E0;
  --navy-tint: #E9F6FD;

  --gold: #FCD20B;       /* amarelo FAVELA */
  --gold-600: #ECBE00;
  --gold-700: #B98A00;
  --green: #46BC63;      /* verde das casas */
  --green-600: #37A052;
  --green-700: #2C8442;
  --orange: #EA7C2B;     /* laranja das casas (acento) */
  --ta-green: #00AA6C;

  --ink: #12242E;
  --white: #FFFFFF;
  --cream: #F4F8FC;
  --gray-100: #EDF1F7;
  --gray-200: #DCE3EE;
  --gray-300: #C0CADB;
  --gray-400: #8A97AD;
  --gray-500: #5A6885;
  --gray-600: #3A4560;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px rgba(5, 19, 46, 0.08);
  --shadow-md: 0 8px 20px -6px rgba(5, 19, 46, 0.20);
  --shadow-lg: 0 20px 40px -10px rgba(5, 19, 46, 0.30);
  --shadow-xl: 0 32px 60px -16px rgba(5, 19, 46, 0.45);
  --shadow-gold: 0 10px 26px rgba(242, 176, 0, 0.40);
  --shadow-green: 0 10px 26px rgba(15, 169, 90, 0.38);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --header-h: 76px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

/* Cabeçalho de seção centralizado */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy-900);
  margin: 12px 0 14px;
}
.section-head p { color: var(--gray-500); font-size: 17px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-700);
}
.eyebrow i { font-size: 1.25em; }
.eyebrow--green { color: var(--ta-green); }
.eyebrow--light { color: var(--gold); }

/* Estrelas douradas */
.stars { display: inline-flex; gap: 2px; color: var(--gold-600); font-size: 16px; line-height: 1; }
.stars--lg { font-size: 26px; }

/* ===========================
   BOTÕES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 1.3em; line-height: 0; }
.btn--lg { font-size: 17px; padding: 16px 32px; }
.btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-600); }
.btn--green { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn--green:hover { background: var(--green-600); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--dark { background: var(--navy-800); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); }
.btn--insta { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); color: var(--white); border: none; background-clip: padding-box; }
.btn--ta { background: var(--ta-green); color: var(--white); box-shadow: 0 10px 26px rgba(0,170,108,0.35); }
.btn--ta:hover { background: #00915C; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 19, 46, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand__logo { height: 46px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.35)); }
.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  transition: color .2s ease;
}
.nav > a:hover { color: var(--gold); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-green);
}
.nav__cta i { font-size: 1.2em; }
.nav__cta:hover { background: var(--green-600); }

.header__right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  padding: 3px;
  backdrop-filter: blur(6px);
}
.lang-switch__btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  background: transparent;
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.lang-switch__btn.is-active { background: var(--gold); color: var(--navy-900); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 50px) 0 70px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.68) 40%, rgba(0,0,0,0.18) 72%, rgba(0,0,0,0.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.82) 100%);
}
.hero__title .hl { color: var(--gold); font-style: normal; }
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 640px; color: var(--white); }
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(255, 198, 41, 0.12);
  border: 1px solid rgba(255, 198, 41, 0.35);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.hero__title { font-size: clamp(30px, 5.2vw, 56px); font-weight: 800; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.35); overflow-wrap: break-word; }
.hero__subtitle { font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,0.9); max-width: 600px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid rgba(255,255,255,0.14);
}
.hero__photo img { width: 100%; height: auto; display: block; }
.hero__badge {
  position: absolute;
  left: -22px; bottom: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}
.hero__badge-stars { color: var(--gold-600); font-size: 17px; display: flex; gap: 2px; line-height: 1; }
.hero__badge-num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy-900); line-height: 1.1; }
.hero__badge-label { font-size: 12px; font-weight: 600; color: var(--gray-500); font-family: var(--font-display); }

/* ===========================
   SOBRE A EXPERIÊNCIA
   =========================== */
/* ===========================
   FAIXA DE DESTAQUES
   =========================== */
.stats { background: var(--gold); padding: 46px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 0 10px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 54px; width: 1px; background: rgba(11,36,54,0.16); }
.stat__num { font-family: var(--font-display); font-weight: 700; font-size: 36px; color: var(--navy-900); line-height: 1; margin-bottom: 10px; }
.stat__num i { font-size: 42px; color: var(--navy-900); line-height: 1; }
.stat__label { font-size: 14px; color: var(--navy-900); font-weight: 600; line-height: 1.4; }

/* ===========================
   SOBRE A EXPERIÊNCIA
   =========================== */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__media--offset {
  position: absolute; bottom: -40px; right: -30px;
  width: 52% !important; aspect-ratio: 1 / 1 !important;
  border: 6px solid var(--white); box-shadow: var(--shadow-xl);
}
.about__text h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; color: var(--navy-900); margin: 14px 0 18px; }
.about__text > p { color: var(--gray-600); }

/* Separador "Nossas Especialidades" */
.exp-head { text-align: center; max-width: 680px; margin: 106px auto 40px; }
.exp-head h2 { font-size: clamp(23px, 3.2vw, 32px); font-weight: 700; color: var(--navy-900); margin-top: 10px; }

/* Cards da experiência com imagem 1:1 */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 0; }
.exp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.exp-card:hover .exp-card__media img { transform: scale(1.06); }
.exp-card__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: var(--navy-900);
  font-size: 24px;
  box-shadow: var(--shadow-md);
}
.exp-card__body { padding: 24px 24px 28px; }
.exp-card__body h3 { font-size: 20px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.exp-card__body p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ===========================
   GALERIA (bento)
   =========================== */
.gallery { background: var(--sky-tint); }
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 258px; gap: 16px; }
.mosaic figure {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: var(--navy-800);
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; cursor: pointer; }
.mosaic figure:hover img { transform: scale(1.08); }
.mosaic__big { grid-column: span 2; grid-row: span 2; }
.mosaic__tall { grid-row: span 2; }
.mosaic__wide { grid-column: span 2; }

/* ===========================
   TRIPADVISOR / DEPOIMENTOS
   =========================== */
.reviews { background: var(--white); }
.ta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 34px 24px;
  max-width: 460px;
  margin: 0 auto 52px;
  text-align: center;
}
.ta-banner__logo { height: 40px; width: auto; }
.ta-banner__score { display: flex; align-items: center; gap: 14px; }
.ta-banner__num { font-family: var(--font-display); font-weight: 700; font-size: 44px; color: var(--navy-900); line-height: 1; }
.ta-banner__label { font-size: 14px; color: var(--gray-500); font-weight: 600; }

.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dep {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dep:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dep__quote { position: absolute; top: 22px; left: 26px; color: var(--gold); font-size: 30px; line-height: 0; opacity: .9; }
.dep .stars { margin: 6px 0 14px; }
.dep p { font-size: 15px; color: var(--gray-600); font-style: italic; margin-bottom: 18px; }
.dep__who { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; color: var(--navy-900); font-size: 15px; }
.dep__loc { font-weight: 500; color: var(--gray-400); font-size: 13px; }
.reviews__cta { text-align: center; margin-top: 46px; }

/* ===========================
   LOCALIZAÇÃO
   =========================== */
.location { background: var(--sky-tint); }
.location__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 30px; align-items: stretch; }
.location__info { display: flex; flex-direction: column; gap: 16px; }
.location__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.location__card-icon {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  color: var(--gold);
  font-size: 24px;
}
.location__card-content strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--navy-900); margin-bottom: 4px; }
.location__card-content p { font-size: 15px; color: var(--gray-500); line-height: 1.5; }
.location__card-content a { color: var(--green-700); font-weight: 600; }
.location__copy {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: 1px solid var(--gray-200);
  background: var(--cream);
  border-radius: var(--radius-md);
  color: var(--gray-500);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 18px;
  transition: all .2s ease;
}
.location__copy:hover { background: var(--navy-800); color: var(--gold); border-color: var(--navy-800); }
.location__copy--copied { background: var(--green); color: var(--white); border-color: var(--green); }
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  border: 4px solid var(--white);
}
.location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ===========================
   INSTAGRAM + VÍDEOS
   =========================== */
.social-band {
  background:
    radial-gradient(80% 120% at 88% 8%, rgba(20,196,107,0.14) 0%, transparent 55%),
    radial-gradient(80% 120% at 8% 0%, rgba(23,166,224,0.14) 0%, transparent 55%),
    linear-gradient(135deg, #06141A 0%, #04110D 100%);
  color: var(--white);
}
.social-band__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.social-band__content .eyebrow { color: var(--white); }
.social-band__content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin: 12px 0 14px; }
.social-band__content p { color: rgba(255,255,255,0.92); margin-bottom: 26px; }
.social-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Reels: 1 vídeo grande à direita + 2 menores, rotativos a cada 4s */
.reels { position: relative; height: 500px; }
.reel {
  position: absolute;
  top: 50%; left: 50%;
  width: 262px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transform: translate(-50%, -50%) scale(.66);
  opacity: 0;
  z-index: 1;
  transition: transform .55s ease, opacity .55s ease;
}
.reel.is-prev { transform: translate(calc(-50% - 152px), -50%) scale(.68); opacity: .55; z-index: 2; }
.reel.is-next { transform: translate(calc(-50% + 152px), -50%) scale(.68); opacity: .55; z-index: 2; }
.reel.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  border-color: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-xl);
}
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel__play {
  position: absolute; inset: 0; margin: auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: rgba(252,210,11,0.95);
  color: var(--navy-900);
  font-size: 22px; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, opacity .2s ease;
}
.reel:not(.is-active) .reel__play { width: 40px; height: 40px; font-size: 15px; }
.reel__play.is-hidden { opacity: 0; pointer-events: none; }
.reel.is-active:hover .reel__play { transform: scale(1.1); }

/* ===========================
   RODAPÉ
   =========================== */
.footer { background: #05132E; color: rgba(255,255,255,0.8); padding: 64px 0 32px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer__tagline { font-size: 15px; line-height: 1.7; max-width: 460px; }
.footer__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__column { display: flex; flex-direction: column; gap: 10px; }
.footer__column-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer__column a, .footer__column p { font-size: 15px; color: rgba(255,255,255,0.78); transition: color .2s ease; }
.footer__column a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
}
.footer__bottom > p { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 20px;
  transition: background-color .2s ease;
}
.footer__social-link:hover { background: var(--gold); color: var(--navy-900); }

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  background: rgba(5,19,46,0.94);
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox__stage img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%; border: none;
  background: rgba(255,255,255,0.14); color: var(--white);
  font-size: 22px; cursor: pointer;
  transition: background-color .2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,0.28); }

/* ===========================
   RESPONSIVO
   =========================== */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  .hero { padding-bottom: 80px; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__content { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero__tagline { align-self: center; }
  .hero__actions { justify-content: center; }
  .hero__media { max-width: 380px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__text { order: 1; }
  .about__media { order: 2; max-width: 460px; margin: 0 auto; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .location__inner { grid-template-columns: 1fr; }
  .social-band__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .reels { height: 420px; }
  .reel { width: 198px; }
  .reel.is-prev { transform: translate(calc(-50% - 94px), -50%) scale(.6); }
  .reel.is-next { transform: translate(calc(-50% + 94px), -50%) scale(.6); }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(5,19,46,0.98);
    backdrop-filter: blur(10px);
    padding: 12px 24px 24px;
    transform: translateY(-140%);
    transition: transform .3s ease;
    box-shadow: 0 20px 30px rgba(0,0,0,.3);
  }
  .nav.is-open { transform: translateY(0); }
  .nav > a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__cta { justify-content: center; margin-top: 12px; }
  /* logo à esquerda · idioma no centro · menu à direita (via space-between) */
  .nav-toggle { display: flex; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .lang-switch__btn { padding: 6px 8px; font-size: 12px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
  .stat + .stat::before { display: none; }
  .stat__num { font-size: 30px; }
  .hero { padding-top: calc(var(--header-h) + 20px); }
  .hero__badge { left: 10px; bottom: -18px; padding: 12px 16px; }
  .about__media--offset { display: none; }
  .about__media img { aspect-ratio: 3 / 4; }
  .exp-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .mosaic__big { grid-column: span 2; grid-row: span 1; }
  .mosaic__tall { grid-row: span 1; }
  .hero__tagline { font-size: 10.5px; white-space: nowrap; padding: 7px 12px; letter-spacing: 0; gap: 6px; }
  .exp-head { margin-top: 54px; }
  .reviews__cta .btn { white-space: normal; max-width: 92%; line-height: 1.35; text-align: center; }
  .social-band__actions { flex-direction: column; align-items: stretch; }
  .social-band__actions .btn { width: 100%; }
  .footer__columns { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
