/* ==========================================================================
   Alcázar — estilos do site
   Breakpoints: notebook ≤1366px · tablet ≤1024px · celular ≤767px
   ========================================================================== */

:root {
  --bg: #0d0d0d;
  --text: #fff;
  --text-soft: #f1f1f1;
  --cream: #ffffc0;
  --gold: #dddd42;
  --highlight: #fff865;
  --red: #d31e1c;
  --red-dark: #ae0200;
  --btn-gradient: linear-gradient(90deg, #bd110f 0%, #e93735 100%);
  --font: "Poppins", sans-serif;
  --font-accent: "Playfair Display", Georgia, serif;
  --font-btn: Arial, Helvetica, sans-serif;
  --gutter: 15px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.1px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 300; }
h1, h2, h3, h4, h5, h6, p, li { text-wrap: pretty; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; letter-spacing: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.nowrap { white-space: nowrap; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Destaque em itálico sublinhado (Playfair) */
.fonte {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ---------- Botões ---------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
  padding: 20px 28px;
  border-bottom: 5px solid var(--red-dark);
  border-radius: 15px;
  background: var(--btn-gradient);
  color: #fff;
  font-family: var(--font-btn);
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  transition: transform .3s;
}
.btn:hover,
.btn:focus-visible { transform: scale(.9); }
.btn svg { flex: none; }

/* ---------- Barra superior + cabeçalho ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  height: 6px;
  background: var(--cream);
  z-index: 99;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(100%, 1168px);
  min-height: 109px;
  padding: 0 113px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(42, 42, 42, .6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 0 0 100px 100px;
}
.header__logo img { width: 88px; }

.nav ul {
  display: flex;
  list-style: none;
}
.nav li { margin: 0 21px; }
.nav a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  transition: color .25s, text-shadow .25s;
}
.nav a:hover,
.nav a.active {
  color: var(--highlight);
  text-shadow: 0 0 6px rgba(255, 248, 101, .35);
}

.menu-toggle { display: none; padding: 0; }
.menu-toggle img { width: 30px; }

/* Menu lateral (celular) */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
  background: rgba(29, 29, 29, .8);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: relative;
  width: 270px;
  height: 100%;
  padding: 120px 30px 0;
  background: #000;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2);
  transform: translateX(100%);
  transition: transform .3s ease-out;
}
.drawer.open .drawer__panel { transform: none; }
.drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.drawer ul { list-style: none; }
.drawer a {
  display: block;
  font-size: 16px;
  line-height: 2.3em;
  color: #fff;
  transition: color .3s;
}
.drawer a:hover { color: var(--highlight); }

/* ---------- Hero ---------- */
.hero {
  min-height: 1186px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 var(--gutter) 120px;
  background: url("../img/hero.webp") center / cover no-repeat;
}
.hero__title {
  max-width: 1161px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  font-size: 85px;
  line-height: 1;
  font-weight: 300;
}
.hero__stars { flex-basis: 100%; display: flex; justify-content: center; }
.hero__stars img { width: 210px; }
.hero__brand {
  font-family: var(--font-btn);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.hero__badge { width: 246px; }
.hero__line { flex-basis: 100%; text-align: center; }
.hero__text {
  max-width: 844px;
  font-size: 16px;
  line-height: 36px;
  color: var(--text-soft);
  text-align: center;
}
.hero .btn-row { gap: 40px; max-width: 980px; }

/* ---------- Sobre ---------- */
.sobre {
  margin-top: 57px;
  padding: 0 var(--gutter) 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.sobre__intro {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.sobre__intro h2 {
  flex: 0 1 840px;
  min-width: 0;
  font-size: 50px;
  line-height: 60px;
}
.sobre__intro p {
  flex: 0 1 804px;
  min-width: 0;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-soft);
}
.sobre__grid {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
}
.sobre__swirl { position: absolute; z-index: 1; width: 297px; pointer-events: none; }
.sobre__swirl--top { top: -41px; left: 0; }
.sobre__swirl--bottom { bottom: -41px; right: 0; }
.sobre__main { flex: 0 1 756px; min-width: 0; height: auto; }
.sobre__side { flex: 0 1 885px; min-width: 0; display: flex; flex-direction: column; gap: 25px; }
.sobre__row {
  display: flex;
  justify-content: space-between;
}
.sobre__row > img {
  flex: 0 1 451px;
  min-width: 0;
  height: 319px;
  object-fit: cover;
  border-radius: 15px;
}
.sobre__wide { width: 100%; }

.card-reserva {
  flex: 0 1 397px;
  min-width: 0;
  min-height: 319px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: url("../img/card-reserva.webp") center / cover no-repeat;
  transition: transform .3s;
}
.card-reserva:hover { transform: scale(.95); }
.card-reserva svg { width: 98px; height: 98px; }
.card-reserva span {
  font-family: var(--font-btn);
  font-size: 24px;
  line-height: 34px;
  text-align: center;
  color: #fff;
}

/* ---------- Por que escolher ---------- */
/* Até 1512px de largura a colagem e o texto ficam empilhados; acima disso, lado a lado */
.porque {
  max-width: 1790px;
  margin: 0 auto;
  padding: 90px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 114px;
}
.porque__collage {
  position: relative;
  flex: 0 0 690px;
  max-width: 100%;
  align-self: flex-start;
}
.porque .btn-row { flex-basis: 100%; }
.porque__collage > img:first-child { width: 100%; }
.tag {
  position: absolute;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}
.tag--sofisticacao { top: 268px; left: -28px; width: 168px; }
.tag--inspiracao { top: 37px; left: 550px; width: 168px; animation-delay: -1.3s; }
.tag--tematica { top: 396px; left: 612px; width: 134px; animation-delay: -2.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.porque__text {
  flex: 0 1 678px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.porque__text h2 { font-size: 56px; line-height: 70px; }
.num-list { list-style: none; }
.num-list li {
  display: flex;
  align-items: center;
  padding-bottom: 6px;
  font-size: 22px;
  line-height: 30.8px;
}
.num-list li + li { margin-top: 6px; }
.num-list .num { flex: 0 0 30px; display: flex; }
.num-list .num svg { height: 24px; width: auto; }
.num-list .txt { padding-left: 5px; }

/* ---------- Galeria ---------- */
.galeria {
  max-width: 1790px;
  margin: 0 auto;
  padding: 90px var(--gutter);
}
.galeria h2 {
  max-width: 42%;
  margin: 0 auto 20px;
  font-size: 56px;
  line-height: 70px;
  text-align: center;
}
.galeria__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}
.galeria__tabs button {
  padding: 7px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--cream);
  transition: color .3s;
}
.galeria__tabs button:hover,
.galeria__tabs button[aria-selected="true"] { color: var(--gold); }
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.galeria__item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  overflow: hidden;
}
.galeria__item[hidden] { display: none; }
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galeria__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .8s;
}
.galeria__item:hover::after,
.galeria__item:focus-visible::after { background: rgba(0, 0, 0, .5); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .92);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: calc(100vw - 140px);
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  border-radius: 6px;
  user-select: none;
}
.lightbox button {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: .8;
  transition: opacity .2s;
}
.lightbox button:hover { opacity: 1; }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 14px;
  color: #ccc;
}

/* ---------- Chamada final ---------- */
.cta { padding: 90px var(--gutter); }
.cta__box {
  width: 100%;
  max-width: 1464px;
  min-height: 640px;
  margin: 0 auto;
  padding: 128px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--red);
  border-top-width: 5px;
  border-radius: 20px;
  background: url("../img/cta-fundo.webp") center / cover no-repeat;
  text-align: center;
}
.cta__box h2 { max-width: 690px; font-size: 56px; line-height: 70px; }
.cta__box p {
  max-width: 1076px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-soft);
}

/* ---------- Tire suas dúvidas ---------- */
.duvidas {
  max-width: 1790px;
  margin: 0 auto;
  padding: 90px var(--gutter);
}
.duvidas > h2 {
  margin-bottom: 60px;
  font-size: 56px;
  line-height: 84px;
  text-align: center;
}
.duvidas__grid {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 0 20px 0 10px;
}
.duvidas__map { position: relative; flex: 0 1 690px; min-width: 0; }
.duvidas__info { flex: 0 1 799px; min-width: 0; }
.duvidas__map iframe {
  display: block;
  width: 100%;
  height: 798px;
  border: 0;
  border-radius: 20px;
}
.folha { position: absolute; z-index: 1; pointer-events: none; }
.folha--top { top: -62px; left: -44px; width: 182px; }
.folha--bottom { bottom: -56px; right: -56px; width: 142px; }

.duvidas__info h3 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 38px;
}
.duvidas__info h3:first-child { margin-top: 0; }
.duvidas__info h3.contato { font-size: 35px; }
.duvidas__info ul {
  padding-left: 40px;
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 30px;
}
.duvidas__info strong { font-weight: 400; }
.duvidas__info a:hover { color: var(--highlight); }

/* ---------- Locais próximos + rodapé ---------- */
.rodape {
  padding: 37px var(--gutter) 53px;
  background: linear-gradient(176deg, #191919 -63.87%, #000 134.98%);
}
.rodape > .footer { max-width: 1760px; margin: 0 auto; }
.locais {
  max-width: 1740px;
  --l-bg: #110808;
  --l-text: #e6e8e5;
  --l-cream: #e2d29a;
  --l-cta: #d12220;
  --l-cta-dark: #c71b19;
  --l-border: #1e1e1e;
  margin: 10px auto;
  padding: 8px;
  border-radius: 14px;
  background: var(--l-bg);
  color: var(--l-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
}
.locais h2 { margin: 0 0 8px; font-size: 22px; font-weight: 400; }
.locais h2 em {
  text-decoration: underline;
  text-decoration-color: var(--l-cream);
  text-underline-offset: 4px;
}
.locais__nota {
  margin: 6px 0 14px;
  padding: 8px;
  border: 1px dashed var(--l-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  color: #d7d9d6;
  font-size: 14px;
}
.locais__nota strong { font-weight: 700; }
.locais__grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .locais__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .locais__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .locais__grid { grid-template-columns: repeat(4, 1fr); } }
.local {
  min-height: 150px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--l-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
}
.local h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; letter-spacing: .2px; line-height: 1.2; }
.local__tempo {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(226, 210, 154, .55);
  border-radius: 999px;
  background: rgba(226, 210, 154, .14);
  color: #efe9d1;
  font-size: 13px;
}
.local a {
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--l-cta);
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  transition: transform .06s ease, background .12s ease;
}
.local a:hover { background: var(--l-cta-dark); transform: translateY(-1px); }
.local a:focus-visible { outline: 2px solid var(--l-cream); outline-offset: 2px; }

.footer { padding: 0; }
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer__top img { width: 104px; }
.footer__nav ul { display: flex; flex-wrap: wrap; list-style: none; }
.footer__nav li { margin-left: 65px; }
.footer__nav a { font-size: 16px; transition: color .3s; }
.footer__nav a:hover { color: var(--highlight); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 55px;
  padding-bottom: 34px;
}
.footer__bottom a:hover { color: var(--highlight); }
.credito {
  padding: 10px;
  font-size: 12px;
  text-align: center;
}
.credito a { color: #0ff; text-decoration: underline; }

/* ---------- Página de texto (política) ---------- */
.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px var(--gutter) 90px;
}
.page h1 {
  position: relative;
  margin-bottom: 50px;
  font-size: 85px;
  line-height: 1.1;
  text-align: center;
}
.page h1 .folha { top: 70px; left: -40px; width: 150px; }
.page h2 {
  margin: 36px 0 10px;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
}
.page h3 { margin: 20px 0 6px; font-size: 18px; font-weight: 400; }
.page p { margin-bottom: 14px; font-size: 16px; line-height: 1.9; color: var(--text-soft); }
.page a { color: var(--cream); text-decoration: underline; }

/* ---------- Animações de entrada ---------- */
.js [data-reveal] {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}
.js [data-reveal="up"] { transform: translateY(100px); }
.js [data-reveal="down"] { transform: translateY(-100px); }
.js [data-reveal="left"] { transform: translateX(100px); }
.js [data-reveal="right"] { transform: translateX(-100px); }
.js [data-reveal].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tag { animation: none; }
  .btn, .card-reserva { transition: none; }
}

/* ==========================================================================
   Notebook ≤1366px
   ========================================================================== */
@media (max-width: 1366px) {
  .header { width: 900px; padding: 0 60px; }
  .hero { padding-bottom: 90px; }
  .hero__title { font-size: 72px; }
  .btn { font-size: 18px; }

  .sobre__intro { flex-direction: column; text-align: center; }
  .sobre__intro h2,
  .sobre__intro p { flex: none; width: 100%; }
  .sobre__intro h2 { max-width: 840px; }
  .sobre__intro p { max-width: 804px; }
  .sobre__grid { flex-direction: column; align-items: center; }
  .sobre__main { flex: none; width: 100%; max-width: 756px; border-radius: 15px; }
  .sobre__side { flex: none; width: 100%; max-width: 756px; }
  .sobre__row { gap: 16px; }
  .sobre__wide { border-radius: 15px; }

  .porque { align-items: center; gap: 24px 114px; }
  .porque__text { order: -1; flex-basis: 100%; align-items: center; }

  .galeria h2 { max-width: 600px; }

  .cta__box { justify-content: center; padding: 48px 24px 32px; }

  .duvidas__grid {
    max-width: 1031px;
    flex-direction: column;
    gap: 20px;
    padding: 48px 24px 24px;
  }
  .duvidas__map { flex: none; width: 100%; max-width: 923px; }
  .duvidas__map iframe { height: 952px; }
  .duvidas__info { flex: none; width: 100%; max-width: 918px; }
  .duvidas__info h3 { font-size: 26px; line-height: 34px; }
  .duvidas__info ul { font-size: 18px; line-height: 28px; }

}

/* ==========================================================================
   Tablet ≤1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .header { width: 800px; min-height: 99px; padding: 0 40px; }
  .nav li { margin: 0 14px; }
  .hero__title { font-size: 48px; line-height: 68px; }
  .hero .btn-row { max-width: 637px; flex-wrap: nowrap; }
  .hero .btn { font-size: 15px; }
  .btn { font-size: 18px; }

  .sobre__intro h2,
  .porque__text h2,
  .galeria h2,
  .cta__box h2,
  .duvidas > h2 { font-size: 38px; line-height: 58px; }
  .galeria h2,
  .cta__box h2 { max-width: none; }

  .cta__box { min-height: 510px; }

  .duvidas__grid { gap: 10px; padding: 0 40px 0 10px; }
  .duvidas__map { max-width: 724px; }
  .duvidas__map iframe { height: 800px; }
  .duvidas__info h3,
  .duvidas__info h3.contato { margin-top: 10px; font-size: 18px; line-height: 20px; }
  .duvidas__info ul { font-size: 14px; line-height: 28px; }


  .footer__top { flex-direction: column; }
  .footer__nav ul { justify-content: center; }
  .footer__nav li { margin: 0 32px; }
}

@media (max-width: 1023px) {
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Celular ≤767px
   ========================================================================== */
@media (max-width: 767px) {
  html { scroll-padding-top: 70px; }

  .header {
    width: 280px;
    min-height: 60px;
    padding: 8px 20px;
    border-radius: 0 0 30px 30px;
  }
  .header__logo img { width: 67px; }
  .nav { display: none; }
  .menu-toggle { display: block; }

  .btn-row { gap: 40px; }
  .hero .btn-row { flex-wrap: wrap; max-width: none; }
  .btn { margin-top: 24px; font-size: 15px; line-height: 24px; }

  .hero {
    min-height: 826px;
    padding: 0 8px 60px;
    background-image: url("../img/hero-mobile.webp");
  }
  .hero__title { gap: 0 12px; font-size: 28px; line-height: 38px; }
  .hero__stars img { width: 154px; }
  .hero__badge { width: 112px; }
  .hero__text { margin-top: 12px; font-size: 15px; line-height: 30px; }

  .sobre__intro h2 { font-size: 24px; line-height: 38px; }
  .sobre__intro p { font-size: 16px; line-height: 32px; }
  .sobre__swirl--top { width: 165px; }
  .sobre__swirl--bottom { width: 172px; }
  .sobre__row { flex-direction: column; }
  .sobre__row > img { flex: none; width: 100%; height: 347px; }
  .card-reserva { flex: none; min-height: 299px; border-radius: 20px; }
  .card-reserva svg { width: 50px; height: 50px; }
  .card-reserva span { font-size: 20px; line-height: 30px; }

  .porque { padding: 60px var(--gutter); }
  .porque { gap: 24px 0; }
  .porque__text h2 { font-size: 24px; line-height: 34px; text-align: center; }
  .num-list li { font-size: 14px; line-height: 24px; }
  .tag--sofisticacao { top: 52%; left: -3%; width: 28%; }
  .tag--inspiracao { top: 7%; left: auto; right: -3%; width: 34%; }
  .tag--tematica { top: 76%; left: auto; right: -3%; width: 22%; }

  .galeria { padding: 60px var(--gutter); }
  .galeria h2 { max-width: none; font-size: 24px; line-height: 34px; }
  .galeria__tabs button { font-size: 14px; line-height: 24px; }
  .galeria__grid { grid-template-columns: 1fr; }

  .cta { padding: 60px var(--gutter); }
  .cta__box { min-height: 390px; padding: 32px 8px; }
  .cta__box h2 { font-size: 24px; line-height: 34px; }
  .cta__box p { margin-top: 12px; font-size: 14px; line-height: 30px; }

  .duvidas { padding: 60px var(--gutter); }
  .duvidas > h2 { margin-bottom: 40px; font-size: 30px; line-height: 34px; }
  .duvidas__grid { padding: 20px 10px; gap: 40px; }
  .duvidas__map iframe { height: 414px; }
  .folha--top { top: -21px; left: -4px; width: 108px; }
  .folha--bottom { bottom: -30px; right: -10px; width: 70px; }
  .duvidas__info h3,
  .duvidas__info h3.contato { font-size: 18px; line-height: 24px; }
  .duvidas__info ul { padding-left: 22px; font-size: 14px; line-height: 22px; }

  .locais { margin: 10px 0; }
  .local h3 { font-size: 17px; }
  .local__tempo { padding: 5px 10px; font-size: 12px; }
  .local a { text-align: center; }

  .footer__nav a { line-height: 2.3em; }
  .footer__nav li { margin: 0 25px; }
  .footer__bottom { flex-direction: column; margin-top: 34px; }

  .lightbox img { max-width: 100vw; max-height: calc(100vh - 120px); border-radius: 0; }
  .lightbox__prev,
  .lightbox__next { top: auto; bottom: 16px; transform: none; }

  .page { padding-top: 110px; }
  .page h1 { font-size: 40px; }
  .page h1 .folha { top: 30px; left: 0; width: 90px; }
}
