/* ==========================================================================
   LAGOS ECOTUR — CSS exclusivo
   Tema CLARO (branco predominante) · acentos de pôr do sol (laranja/âmbar)
   + azul do mar. Poucas seções escuras (hero, vídeos, rodapé).
   Sem contornos: profundidade por sombra projetada.
   ========================================================================== */

:root {
  /* Base clara */
  --bg:        #ffffff;
  --surface:   #f5f8fa;   /* seções alternadas off-white */
  --surface-2: #eef3f6;
  --card:      #ffffff;

  /* Escuro (hero / vídeos / rodapé) */
  --dark:      #0a1119;
  --dark-2:    #0e1620;
  --dark-3:    #16202c;

  /* Marca */
  --sunset:    #ff7a1a;   /* laranja pôr do sol */
  --sunset-2:  #ff9500;   /* âmbar */
  --sea:       #1198bd;   /* azul do mar (contraste no branco) */
  --sea-deep:  #0e7c99;
  --sea-bright:#1fb6d6;

  /* Texto */
  --ink:       #14202b;   /* texto principal (claro) */
  --muted:     #5b6b78;   /* texto secundário */
  --d-text:    #eef4f8;   /* texto em fundo escuro */
  --d-muted:   #a2b3c1;

  --radius:    18px;
  --radius-sm: 12px;

  --shadow-sm: 0 6px 18px -6px rgba(16,24,32,.14);
  --shadow-md: 0 16px 34px -10px rgba(16,24,32,.18);
  --shadow-lg: 0 30px 60px -18px rgba(16,24,32,.26);
  --shadow-sunset: 0 12px 28px -6px rgba(255,106,0,.42);

  --grad-sunset: linear-gradient(135deg, #ff8a1e 0%, #ff6a00 55%, #ff4d3d 100%);
  --grad-sea:    linear-gradient(135deg, #29c7e6 0%, #1198bd 100%);

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container:  1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 100px;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn i { font-size: 1.2em; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--sunset {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: var(--shadow-sunset);
}
.btn--sunset:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -6px rgba(255,106,0,.55); }

.btn--outline-light {
  background: rgba(255,255,255,.08);
  color: var(--d-text);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28);
}
.btn--outline-light:hover { background: rgba(31,182,214,.16); box-shadow: inset 0 0 0 1.5px var(--sea-bright); color: #fff; }

.btn--outline-blue {
  background: #fff;
  color: var(--sea-deep);
  box-shadow: var(--shadow-sm), inset 0 0 0 1.5px rgba(17,152,189,.4);
}
.btn--outline-blue:hover { background: var(--grad-sea); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn--instagram {
  background: linear-gradient(135deg,#feda75,#d62976 45%,#962fbf 80%,#4f5bd5);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--instagram:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Botão gigante RESERVAR AGORA */
.btn--reserve {
  background: var(--grad-sunset);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.15rem, 3.5vw, 1.7rem);
  letter-spacing: .04em;
  padding: 22px 54px;
  border-radius: 100px;
  box-shadow: 0 16px 42px -8px rgba(255,106,0,.6);
  text-transform: uppercase;
  animation: reservePulse 2.4s ease-in-out infinite;
}
.btn--reserve i { font-size: 1.1em; }
.btn--reserve:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 56px -8px rgba(255,106,0,.75); animation-play-state: paused; }
@keyframes reservePulse {
  0%,100% { box-shadow: 0 16px 42px -8px rgba(255,106,0,.55); }
  50%     { box-shadow: 0 16px 50px -6px rgba(255,106,0,.9); }
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
  background: linear-gradient(to bottom, rgba(10,17,25,.55), rgba(10,17,25,0));
}
.header--scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 6px 24px -10px rgba(16,24,32,.25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo-img { width: 46px; height: 46px; object-fit: contain; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: #fff; transition: color .3s; }
.header__logo-sub { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sunset-2); }
.header--scrolled .header__logo-name { color: var(--ink); }

.header__nav { display: flex; align-items: center; gap: 28px; }
.header__menu { display: flex; align-items: center; gap: 26px; list-style: none; }
.header__menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: #fff;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.header--scrolled .header__menu a { color: var(--ink); }
.header__menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--grad-sunset);
  transition: width .25s ease; border-radius: 2px;
}
.header__menu a:hover { color: var(--sunset-2); }
.header--scrolled .header__menu a:hover { color: var(--sunset); }
.header__menu a:hover::after { width: 100%; }

.header__close { display: none; }
.header__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.header__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.header--scrolled .header__toggle span { background: var(--ink); }
.header__toggle--active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__toggle--active span:nth-child(2) { opacity: 0; }
.header__toggle--active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO (escuro) ===================== */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255,122,26,.18), transparent 42%),
    radial-gradient(circle at 6% 88%, rgba(31,182,214,.16), transparent 46%),
    var(--dark);
  color: var(--d-text);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 20px;
}
/* *texto* editado no /admin vira <strong> — mesmo destaque do <em> */
.hero__title strong,
.hero__title em {
  font-style: normal;
  font-weight: inherit;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle { font-size: 1.06rem; color: var(--d-muted); max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: auto; display: block; }
.hero__badge {
  position: absolute; top: -14px; right: 8%; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  padding: 10px 18px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero__badge i { color: var(--sunset); font-size: 1.3rem; }

/* ===================== FAIXA DE DESTAQUES (laranja) ===================== */
.stats {
  background: var(--grad-sunset);
  padding: 32px 0;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 4px 10px;
}
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: -9px; top: 50%; transform: translateY(-50%);
  height: 42px; width: 1px; background: rgba(255,255,255,.3);
}
.stat__icon { font-size: 2.1rem; color: #fff; flex-shrink: 0; }
.stat__label { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: #fff; line-height: 1.2; }

/* ===================== SEÇÕES GENÉRICAS ===================== */
.section { padding: 90px 0; }
.section--alt { background: var(--surface); }
.section--dark { background: linear-gradient(180deg, #070d13, var(--dark)); color: var(--d-text); }

.section__header { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.brand-divider {
  width: 60px; height: 4px; border-radius: 4px;
  background: var(--grad-sunset);
  margin: 0 auto 22px;
}
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--sea-deep);
  margin-bottom: 14px;
}
.section__eyebrow i { font-size: 1.2rem; }
.section__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--ink); line-height: 1.15; letter-spacing: -.01em;
}
.section--dark .section__title { color: #fff; }
.section--dark .section__eyebrow { color: var(--sea-bright); }
.section__title--left { text-align: left; }
.section__subtitle { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.section--dark .section__subtitle { color: var(--d-muted); }

/* ===================== O QUE É A LAGOS ECOTUR ===================== */
.about__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.about__content .section__eyebrow { color: var(--sea-deep); }
.about__text { color: var(--muted); font-size: 1.06rem; margin-top: 18px; }
.about__text strong { color: var(--ink); }
.about__photo {
  position: relative;
}
.about__photo img { width: 100%; height: auto; display: block; border-radius: 24px; box-shadow: var(--shadow-lg); }
.about__tag {
  position: absolute; bottom: 20px; right: -14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px);
  color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: clamp(.58rem, 2.3vw, .74rem); line-height: 1;
  padding: 9px 15px; border-radius: 100px;
  box-shadow: var(--shadow-md);
}
.about__tag i { color: var(--sunset); font-size: 1.1em; flex-shrink: 0; }

/* ===================== FUNDADOR ===================== */
.founder__inner {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.founder__media { position: relative; }
.founder__photo {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.founder__photo img { width: 100%; height: auto; display: block; }
.founder__credential {
  position: absolute; bottom: 22px; right: -20px;
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  padding: 14px 20px; border-radius: 16px; box-shadow: var(--shadow-md);
}
.founder__credential-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: var(--grad-sunset); color: #fff;
}
.founder__credential strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); }
.founder__credential span { font-size: .78rem; color: var(--muted); }

.founder__content .section__eyebrow { color: var(--sunset); }
.founder__text { color: var(--muted); font-size: 1.06rem; margin: 20px 0 30px; }
.founder__text strong { color: var(--ink); }
.founder__cards { display: flex; flex-direction: column; gap: 14px; }
.pillar {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card);
  padding: 18px 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.pillar:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.pillar__icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.5rem;
  color: #fff;
  background: var(--grad-sea);
}
.pillar strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); margin-bottom: 2px; }
.pillar span { font-size: .92rem; color: var(--muted); }

/* ===================== ROTEIROS ===================== */
.routes__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.route-card {
  background: var(--card);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* mídia 1:1 (imagens quadradas fornecidas pelo cliente) */
.route-card__media {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--grad-sea);
  display: grid; place-items: center;
}
.route-card:nth-child(odd) .route-card__media { background: var(--grad-sunset); }
.route-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.route-card:hover .route-card__media img { transform: scale(1.06); }
.route-card__media-icon { color: rgba(255,255,255,.9); font-size: 3rem; z-index: 0; }
.route-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.route-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: var(--ink); margin-bottom: 8px; }
.route-card__text { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
/* Preço (opcional) — some sozinho se o bloco for removido/vazio */
.route-card__price {
  display: flex; align-items: baseline; gap: 7px;
  margin-bottom: 14px; margin-top: auto;
  padding-top: 14px; border-top: 1px dashed var(--surface-2);
}
.route-card__price:empty { display: none; }
/* Valor esvaziado no /admin → bloco de preço some (a promessa do comentário no HTML) */
.route-card__price:has(.route-card__price-value:empty) { display: none; }
.route-card__price-label { font-size: .78rem; color: var(--muted); }
.route-card__price-value {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--sunset);
  line-height: 1;
}
.route-card__price + .route-card__btn { margin-top: 0; }
.route-card__btn { margin-top: auto; }

/* ===================== VÍDEOS (marquee automático) ===================== */
.videos__marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.videos__track {
  display: flex; gap: 18px;
  width: max-content;
  will-change: transform;
  animation: videoScroll 55s linear infinite;
  padding: 6px 0;
}
.videos__marquee:hover .videos__track { animation-play-state: paused; }
@keyframes videoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vid-tile {
  position: relative; flex: 0 0 auto;
  width: 260px; aspect-ratio: 9/16;
  border-radius: var(--radius); overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
  cursor: pointer; border: 0; padding: 0;
}
.vid-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vid-tile__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to top, rgba(10,17,25,.72), rgba(10,17,25,.05) 55%, rgba(10,17,25,.35));
  transition: background .25s ease;
}
.vid-tile:hover .vid-tile__overlay { background: linear-gradient(to top, rgba(10,17,25,.6), rgba(10,17,25,0) 55%, rgba(10,17,25,.25)); }
.vid-tile__play {
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: var(--grad-sunset); color: #fff;
  box-shadow: 0 8px 24px -4px rgba(255,106,0,.6);
  transition: transform .2s;
}
.vid-tile:hover .vid-tile__play { transform: scale(1.08); }
.vid-tile__label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .86rem;
  color: #fff;
}
.vid-tile__label i { color: var(--sunset-2); font-size: 1.1rem; }

.videos__cta { text-align: center; margin-top: 44px; }
.videos__cta-note { margin-top: 16px; color: var(--d-muted); font-size: .9rem; }

/* Lightbox de vídeo */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 24px; background: rgba(6,10,14,.9);
  opacity: 0; transition: opacity .25s ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__content { position: relative; animation: lb-in .3s cubic-bezier(.22,1,.36,1); }
.lightbox__content video {
  max-width: min(92vw, 420px); max-height: 86vh;
  width: auto; border-radius: 16px; box-shadow: var(--shadow-lg); display: block;
}
@keyframes lb-in { from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__close {
  position: absolute; top: -14px; right: -14px;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
  background: #fff; color: var(--ink); border: 0; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.lightbox__close:hover { background: var(--sunset); color: #fff; }

/* ===================== AVALIAÇÕES ===================== */
.reviews__summary {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 40px;
}
.reviews__score { font-family: var(--font-head); font-weight: 900; font-size: 3rem; color: var(--ink); line-height: 1; }
.reviews__stars { color: var(--sunset-2); font-size: 1.5rem; display: flex; gap: 3px; }
.reviews__based { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: .92rem; }
.reviews__based i { font-size: 1.15rem; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--card);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #fff;
  background: var(--grad-sea);
}
.review-card__meta { flex: 1; }
.review-card__name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.review-card__stars { color: var(--sunset-2); font-size: .9rem; display: flex; gap: 2px; }
.review-card__g { font-size: 1.4rem; color: #b4c0cb; }
.review-card__text { color: var(--muted); font-size: .96rem; font-style: italic; }

.reviews__cta { text-align: center; margin-top: 44px; }

/* ===================== LOCALIZAÇÃO ===================== */
.location__inner { display: grid; grid-template-columns: .8fr 1.2fr; 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(--card);
  padding: 20px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.location__card-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: var(--grad-sunset); color: #fff;
}
.location__card-content strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.location__card-content p, .location__card-content a { font-size: .94rem; color: var(--muted); }
.location__card-content a:hover { color: var(--sunset); }
.location__copy {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer; font-size: 1.1rem;
  background: rgba(17,152,189,.1); color: var(--sea-deep);
  border: 0;
  transition: background .2s, color .2s;
}
.location__copy:hover { background: var(--grad-sea); color: #fff; }
.location__copy--copied { background: #1db954; color: #fff; }

.location__map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.location__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ===================== INSTAGRAM ===================== */
.instagram { text-align: center; background: var(--surface); }
.instagram__icon {
  width: 70px; height: 70px; margin: 0 auto 18px;
  border-radius: 20px; display: grid; place-items: center; font-size: 2rem; color: #fff;
  background: linear-gradient(135deg,#feda75,#d62976 45%,#962fbf 80%,#4f5bd5);
  box-shadow: var(--shadow-sm);
}
.instagram__handle { font-family: var(--font-head); font-weight: 600; color: var(--sea-deep); font-size: 1.1rem; margin: 8px 0 26px; }
.instagram__grid { display: none; }

/* ===================== RODAPÉ (escuro) ===================== */
.footer { background: #070d13; color: var(--d-text); padding: 60px 0 26px; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand-logo .header__logo-img { width: 46px; height: 46px; }
.footer__brand-logo .header__logo-name { color: #fff; }
.footer__tagline { color: var(--d-muted); font-size: .96rem; max-width: 480px; }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-label {
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--sunset-2);
  margin-bottom: 4px;
}
.footer__col a, .footer__col p { color: var(--d-muted); font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__legal { padding: 22px 0; text-align: center; color: var(--d-muted); font-size: .84rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; }
.footer__bottom p { color: var(--d-muted); font-size: .86rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.2rem; color: var(--d-text);
  background: rgba(255,255,255,.06);
  transition: background .2s, transform .2s, color .2s;
}
.footer__social a:hover { background: var(--grad-sunset); color: #fff; transform: translateY(-3px); }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff;
  padding: 14px 20px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float i { font-size: 1.5rem; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 38px -6px rgba(37,211,102,.65); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 440px; margin: 0 auto; width: 100%; }
  .about__inner { grid-template-columns: 1fr; gap: 34px; }
  .about__content { text-align: center; }
  .about__content .section__eyebrow { display: inline-flex; }
  .about__media { max-width: 560px; margin: 0 auto; width: 100%; }
  .founder__inner { grid-template-columns: 1fr; gap: 40px; }
  .founder__content { order: 1; }
  .founder__media { order: 2; max-width: 440px; margin: 0 auto; width: 100%; }
  .section__title--left { text-align: center; }
  .founder__content { text-align: center; }
  .founder__content .section__eyebrow { display: inline-flex; }
  .founder__cards { text-align: left; }
  .routes__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .location__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header { background: rgba(10,17,25,.9); backdrop-filter: blur(10px); }
  .header--scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); box-shadow: 0 6px 24px -10px rgba(16,24,32,.25); }
  .header__toggle { display: flex; }
  .header__nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 86vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 22px; padding: 78px 30px 30px;
    background: #fff;
    transform: translateX(100%); transition: transform .3s ease;
    box-shadow: -20px 0 50px -20px rgba(16,24,32,.4);
  }
  .header__nav--open { transform: translateX(0); }
  .header__close {
    display: grid; place-items: center;
    position: absolute; top: 16px; right: 18px;
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--surface); color: var(--ink);
    border: 0; cursor: pointer; font-size: 1.4rem;
  }
  .header__close:hover { background: var(--sunset); color: #fff; }
  .header__menu { flex-direction: column; align-items: flex-start; gap: 20px; width: 100%; }
  .header__menu a { color: var(--ink); }
  .header__nav .btn { width: 100%; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .stat::after { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 70px; }
  .hero__actions .btn { width: 100%; }
  .routes__grid { grid-template-columns: 1fr; }
  .founder__credential { right: 12px; }
  .hero__badge { right: auto; left: 50%; transform: translateX(-50%); }
  .vid-tile { width: 220px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__cols { grid-template-columns: 1fr; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 16px; }
}
