/* ======================================================
   CONVENIÊNCIA PRAIEIRA — style.css
   Estética: Coastal Bold — tropical warm, editorial energy
   ====================================================== */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --primary:    #FF6B2C;       /* laranja praiano */
  --primary-dk: #E05520;
  --primary-lt: #FF8F5A;
  --accent:     #00C2A8;       /* verde-água tropical */
  --accent-dk:  #009E87;
  --dark:       #0F1923;       /* quase preto */
  --dark-2:     #1A2633;
  --mid:        #2E3F50;
  --text:       #1A2633;
  --text-light: #5A6F82;
  --bg:         #F7F4EF;       /* areia clara */
  --bg-2:       #EDE9E1;
  --white:      #FFFFFF;
  --gold:       #F5C842;

  --shadow-sm:  0 2px 8px rgba(15,25,35,.08);
  --shadow-md:  0 8px 32px rgba(15,25,35,.12);
  --shadow-lg:  0 20px 60px rgba(15,25,35,.18);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Syne', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1200px;
  --header-h: 70px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: 80px; }
.section__header { text-align: center; margin-bottom: 52px; }
.section__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section__eyebrow--light { color: var(--accent); }
.section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
}
.section__title--light { color: var(--white); }
.section__header--light .section__title { color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  border-radius: var(--radius-xl);
  padding: 12px 26px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,44,.35);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--dark);
  color: var(--white);
}
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover, .btn--whatsapp:focus-visible {
  background: #1aad53;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.btn--lg { padding: 15px 34px; font-size: 1rem; }
.btn--xl { padding: 18px 44px; font-size: 1.1rem; }
.btn--full { width: 100%; }
.btn--glow {
  box-shadow: 0 0 0 0 rgba(255,107,44,.5);
  animation: glow 2s infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 6px 24px rgba(255,107,44,.4); }
  50%       { box-shadow: 0 6px 40px rgba(255,107,44,.7); }
}

/* ── HEADER ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(247,244,239,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { font-size: 1.6rem; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--dark);
}
.logo__sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
}
.logo--footer .logo__name,
.logo--footer .logo__sub { color: var(--white); }
.logo--footer .logo__sub { color: var(--accent); }

.nav { display: none; }
.nav__list { display: flex; gap: 32px; }
.nav__link {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav__link:hover::after { transform: scaleX(1); }
.header__cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  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); }

/* Mobile nav */
.nav-mobile {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--bg);
  padding: 24px 20px 32px;
  z-index: 850;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
  pointer-events: none;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile .nav__link {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bg-2);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 55%, #1C3048 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(0,194,168,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 20%, rgba(255,107,44,.12) 0%, transparent 70%);
}
.hero__bg-text {
  position: absolute;
  bottom: 60px; left: -20px;
  font-family: var(--ff-display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: -.02em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.hero__content { flex: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,200,66,.15);
  border: 1px solid rgba(245,200,66,.35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--primary);
}
.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.7);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__actions .btn--outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.hero__actions .btn--outline:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.hero__trust span {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}

/* Hero Image */
.hero__visual { flex-shrink: 0; }
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin-inline: auto;
}
.hero__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(.88) saturate(1.2);
}
.hero__img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4AFF72;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,255,114,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(74,255,114,0); }
}

.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ── PRODUTOS ────────────────────────────────────────── */
.produtos { background: var(--bg); }
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.produto-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border: 1.5px solid var(--bg-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.produto-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg-2);
  transition: background var(--transition);
}
.produto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.produto-card:hover::before { background: var(--primary); }
.produto-card--highlight {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-color: transparent;
}
.produto-card--highlight::before { background: var(--accent); }
.produto-card--highlight .produto-card__title,
.produto-card--highlight .produto-card__desc { color: var(--white); }
.produto-card--highlight .produto-card__desc { color: rgba(255,255,255,.65); }
.produto-card--highlight:hover { box-shadow: 0 12px 40px rgba(0,194,168,.25); }
.produto-card__icon { font-size: 2rem; margin-bottom: 12px; }
.produto-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.produto-card__desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── GALERIA ─────────────────────────────────────────── */
.galeria {
  background: var(--bg-2);
  padding-bottom: 0;
}
.galeria .container { padding-bottom: 40px; }
.galeria__track-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.galeria__track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.galeria__slide {
  min-width: 100%;
  position: relative;
}
.galeria__slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(.9) saturate(1.15);
}
.galeria__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.galeria__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
}
.galeria__btn:hover { background: var(--primary); color: var(--white); }
.galeria__btn--prev { left: 12px; }
.galeria__btn--next { right: 12px; }
.galeria__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 32px;
  background: var(--bg-2);
}
.galeria__dot {
  width: 8px; height: 8px;
  background: rgba(0,0,0,.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.galeria__dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ── DIFERENCIAIS ────────────────────────────────────── */
.diferenciais {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.diferenciais::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 85% 50%, rgba(0,194,168,.1) 0%, transparent 70%);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.diferencial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
}
.diferencial-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,194,168,.3);
  transform: translateX(4px);
}
.diferencial-card__num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
}
.diferencial-card__icon { font-size: 1.8rem; margin-bottom: 10px; }
.diferencial-card__title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.diferencial-card p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ── LOCALIZAÇÃO ─────────────────────────────────────── */
.localizacao { background: var(--bg); }
.localizacao__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.localizacao__info { display: flex; flex-direction: column; gap: 24px; }
.info-block__title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-block__text { font-size: .95rem; color: var(--text); line-height: 1.7; }
.info-link { color: var(--primary); font-weight: 700; }
.info-link:hover { text-decoration: underline; }

.horarios {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.horarios td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--bg-2);
  color: var(--text-light);
}
.horarios td:first-child { font-weight: 600; color: var(--text); }
.horarios td:last-child { text-align: right; }
.horarios tr.hoje td { color: var(--primary); font-weight: 700; background: rgba(255,107,44,.05); }

.localizacao__mapa {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--bg-2);
}

/* ── CTA FINAL ───────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,0,0,.2) 0%, transparent 70%);
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final__wave-deco {
  font-size: 1.8rem;
  letter-spacing: 8px;
  margin-bottom: 20px;
  opacity: .5;
}
.cta-final__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-final__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.8);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.65;
}
.cta-final .btn--primary {
  background: var(--white);
  color: var(--primary);
}
.cta-final .btn--primary:hover {
  background: var(--bg);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cta-final .btn--glow { animation: glow-white 2s infinite; }
@keyframes glow-white {
  0%, 100% { box-shadow: 0 6px 24px rgba(255,255,255,.3); }
  50%       { box-shadow: 0 6px 40px rgba(255,255,255,.55); }
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding-top: 60px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__slogan { font-size: .85rem; color: rgba(255,255,255,.4); }
.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links li, .footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  line-height: 1.6;
}
.footer__links a:hover { color: var(--white); }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__social a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--accent); }
.footer__bottom {
  padding-block: 24px;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.footer__bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--transition);
  animation: floatPulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── LEAFLET OVERRIDES ───────────────────────────────── */
.leaflet-container { font-family: var(--ff-body); }
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
}
.leaflet-popup-content { font-size: .85rem; line-height: 1.6; }

/* ── ANIMATIONS / SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE: TABLET (640px+) ────────────────────── */
@media (min-width: 640px) {
  .produtos__grid { grid-template-columns: repeat(3, 1fr); }
  .galeria__slide img { height: 380px; }
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: row; flex-wrap: wrap; gap: 32px 48px; }
  .footer__brand { flex: 1 1 100%; }
}

/* ── RESPONSIVE: DESKTOP (900px+) ───────────────────── */
@media (min-width: 900px) {
  .nav { display: flex; align-items: center; }
  .header__cta { display: inline-flex; }
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    min-height: calc(100svh - var(--header-h));
    padding-bottom: 120px;
  }
  .hero__content { flex: 1; }
  .hero__visual { flex: 0 0 480px; }
  .hero__img { height: 460px; }

  .diferenciais__grid { grid-template-columns: repeat(3, 1fr); }

  .localizacao__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  .localizacao__info { flex: 0 0 340px; }
  .localizacao__mapa { flex: 1; height: 420px; }

  .galeria__slide img { height: 500px; }

  .footer__brand { flex: 0 0 auto; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── FOCUS VISIBLE (ACESSIBILIDADE) ─────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}