/* ============================================================
   VITÓRIA PALACE HOTEL — Site Proposal
   Design System fiel à marca, elevado.
   ============================================================ */

:root {
  /* Cores fiéis à marca + refinamentos */
  --navy:        #0A1F4E;       /* azul marinho refinado (base #000050 do logo) */
  --navy-deep:   #050F2E;
  --navy-soft:   #1A3A7A;
  --accent:      #E8893A;       /* laranja queimado refinado (base #ff9200) */
  --accent-soft: #F4B070;
  --gold:        #C9A14B;       /* dourado complementar */
  --bg:          #FFFFFF;
  --bg-warm:     #F7F5F0;       /* off-white quente */
  --bg-alt:      #FBFAF7;
  --line:        #E8E4DC;
  --ink:         #0F1729;
  --ink-soft:    #4A5568;
  --ink-muted:   #8A93A6;

  /* Tipografia */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Escala */
  --container: 1240px;
  --gap: 28px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Sombras refinadas */
  --shadow-sm: 0 2px 8px rgba(10, 31, 78, 0.06);
  --shadow:    0 12px 40px rgba(10, 31, 78, 0.10);
  --shadow-lg: 0 24px 70px rgba(10, 31, 78, 0.18);

  /* Easing premium */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------- RESET ----------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;          /* âncoras não ficam atrás do header fixo */
  -webkit-text-size-adjust: 100%;    /* impede o iOS de reescalar o texto */
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;                /* trava scroll horizontal acidental */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
ul { list-style: none; padding: 0; margin: 0; }
iframe { border: 0; }

/* ----------------- UTILITIES ----------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--accent-soft); }

.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 24px;
}
.section--dark .h2,
.section--accent .h2 { color: #fff; }

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 137, 58, 0.35);
}
.btn--accent:hover {
  background: #d77a2c;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232, 137, 58, 0.45);
}
.btn--primary {
  background: var(--navy);
  color: #fff;
}
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all .25s var(--ease);
}
.link-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ----------------- HEADER ----------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(14px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  transition: color .35s var(--ease);
  position: relative;
}
.header.is-scrolled .header__brand { color: var(--navy); }

.header__logo {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity .35s var(--ease), height .35s var(--ease);
}
.header__logo--dark { opacity: 0; position: absolute; top: 0; left: 0; }
.header.is-scrolled .header__logo--light { opacity: 0; }
.header.is-scrolled .header__logo--dark  { opacity: 1; position: absolute; }
.header.is-scrolled .header__logo { height: 48px; }

.header__nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
}
.header__nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.header.is-scrolled .header__nav a { color: var(--navy); }
.header__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.header__nav a:hover::after { transform: scaleX(1); }

.header__cta { height: 44px; padding: 0 22px; font-size: 12px; }

.header__menu {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .35s var(--ease);
}
.header.is-scrolled .header__menu span { background: var(--navy); }
/* hamburger vira X quando o menu está aberto */
.header.is-menu-open .header__menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.is-menu-open .header__menu span:nth-child(2) { opacity: 0; }
.header.is-menu-open .header__menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 120px;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* gradiente vertical: topo escuro pro header, base bem escura pra reserva */
    linear-gradient(180deg, rgba(5,15,46,0.72) 0%, rgba(10,31,78,0.55) 35%, rgba(5,15,46,0.92) 100%),
    /* gradiente diagonal pra reforçar área de texto à esquerda */
    linear-gradient(100deg, rgba(5,15,46,0.6) 0%, rgba(5,15,46,0.25) 55%, rgba(5,15,46,0) 80%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  max-width: 820px;
  text-shadow: 0 2px 30px rgba(5, 15, 46, 0.55);
}
.hero__title em {
  font-style: italic;
  color: var(--accent-soft);
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(5, 15, 46, 0.7);
}
.hero__sub {
  max-width: 560px;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 36px;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(5, 15, 46, 0.85);
}
.hero .eyebrow {
  text-shadow: 0 1px 8px rgba(5, 15, 46, 0.6);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.6);
  margin: 0 auto 12px;
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

/* ----------------- TRUST BAR ----------------- */
.trust {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust__item {
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0 16px;
}
.trust__item:last-child { border-right: none; }
.trust__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 8px;
}
.trust__num sup {
  font-size: 0.5em;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-left: 2px;
}
.trust__lbl {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ----------------- SECTIONS ----------------- */
.section { padding: 120px 0; }
.section--alt { background: var(--bg-warm); }
.section--dark { background: var(--navy); color: #fff; }
.section--accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head--light { color: #fff; }
.section__head-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 16px 0 0;
}
.section__head--light .section__head-sub { color: rgba(255,255,255,0.78); }

/* ----------------- TWO COLUMN ----------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--reverse .two-col__media { order: 2; }
.two-col__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.two-col__media:hover img { transform: scale(1.04); }
.two-col__media-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.two-col__text .lead { margin: 0 0 18px; }
.two-col__text p { color: var(--ink-soft); margin: 0 0 18px; }

.checklist { margin-top: 32px; }
.checklist li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%, #fff 56%, transparent 56%),
    linear-gradient(-45deg, transparent 50%, #fff 50%, #fff 56%, transparent 56%);
  background-size: 6px 6px, 6px 6px;
  background-position: 6px 8px, 9px 5px;
  background-repeat: no-repeat;
}

/* ----------------- ROOMS ----------------- */
.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.room {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.room:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room--featured {
  background: var(--navy);
  color: #fff;
}
.room--featured .room__cap { color: var(--accent-soft); }
.room--featured .room__title { color: #fff; }
.room--featured p { color: rgba(255,255,255,0.78); }
.room--featured .room__feats li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.1); }
.room--featured .link-arrow { color: var(--accent-soft); }
.room--featured .link-arrow:hover { color: #fff; border-color: #fff; }

.room__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.room:hover .room__media img { transform: scale(1.06); }
.room__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
}
.room__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.room__cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.room__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.1;
}
.room__body p { color: var(--ink-soft); margin: 0 0 20px; flex: 1; }
.room__feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
}
.room__feats li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  position: relative;
  padding-left: 14px;
}
.room__feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ----------------- EXPERIÊNCIAS GRID ----------------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 18px;
}
.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  color: #fff;
  isolation: isolate;
}
.exp-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}
.exp-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  z-index: 0;
}
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,78,0.0) 30%, rgba(10,31,78,0.92) 100%);
  z-index: 1;
  transition: background .4s var(--ease);
}
.exp-card:hover img { transform: scale(1.08); }
.exp-card:hover::after {
  background: linear-gradient(180deg, rgba(10,31,78,0.2) 0%, rgba(10,31,78,0.95) 100%);
}
.exp-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px;
}
.exp-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}
.exp-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 6px;
}
.exp-card--lg h3 { font-size: 2.2rem; }
.exp-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 90%;
}

/* ----------------- GALERIA STRIP (gastronomia) ----------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.gallery-strip figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-strip figure:hover img { transform: scale(1.06); }
.gallery-strip figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(10,31,78,0.88) 100%);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ----------------- LOCALIZAÇÃO ----------------- */
.location {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.location__info { padding: 8px 0; }
.location__info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 24px;
}
.poi li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.poi li strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}
.poi li span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ----------------- DEPOIMENTOS ----------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
.testi {
  background: var(--bg-warm);
  padding: 36px;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
}
.testi::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}
.testi blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 20px;
}
.testi figcaption {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi__stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.ratings {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
}
.ratings__item {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.ratings__item:last-child { border-right: none; }
.ratings__item span {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.ratings__item small {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ratings__source {
  margin: 18px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.ratings__source a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.ratings__source a:hover { border-color: var(--accent); }

/* ----------------- RESERVA ----------------- */
.reserve {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.reserve__text { color: #fff; }
.reserve__text .h2 { color: #fff; margin-bottom: 20px; }
.reserve__text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.7; }
.reserve__perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reserve__perks li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.95);
}
.reserve__form {
  background: #fff;
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.reserve__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.reserve__form label {
  display: block;
  margin-bottom: 16px;
}
.reserve__form span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.reserve__form input,
.reserve__form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 16px;            /* 16px evita zoom automático ao focar no iOS */
  color: var(--ink);
  background: #fff;
  transition: border-color .2s var(--ease);
  -webkit-appearance: none;   /* remove estilo nativo do iOS em inputs/selects */
  appearance: none;
}
.reserve__form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A1F4E' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}
.reserve__form input:focus,
.reserve__form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 78, 0.08);
}
.reserve__note {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
}

/* ----------------- FOOTER ----------------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand { padding-right: 24px; }
.footer__logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer__brand p { font-size: 0.92rem; line-height: 1.6; margin: 0; max-width: 260px; }
.footer__col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer__col p { font-size: 0.92rem; line-height: 1.8; margin: 0; }
.footer__col a:hover { color: var(--accent-soft); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom small { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ----------------- WHATSAPP FLOAT ----------------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ----------------- ANIMAÇÕES DE ENTRADA ----------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .section { padding: 80px 0; }

  .header { padding: 16px 0; }
  .header__inner { gap: 16px; }
  .header__nav, .header__cta { display: none; }
  .header__menu { display: flex; }
  .header__logo { height: 44px; }
  .header.is-scrolled .header__logo { height: 38px; }

  .hero { padding-bottom: 72px; min-height: 90vh; }
  .hero__sub { font-size: 1rem; }
  .hero__scroll { display: none; }   /* não faz sentido em telas touch */

  .trust { padding: 40px 0; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(-n+2) { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.12); }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col__media { order: 0; }
  .two-col__media { aspect-ratio: 16/10; }

  .rooms { grid-template-columns: 1fr; gap: 24px; }

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .exp-card, .exp-card--lg {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .location { grid-template-columns: 1fr; gap: 32px; }
  .location__map, .location__map iframe { min-height: 340px; }

  .gallery-strip { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }

  .testi-grid { grid-template-columns: 1fr; }
  .ratings { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .ratings__item:nth-child(3) { border-right: none; }
  .ratings__item:nth-child(n+4) { padding-top: 24px; border-top: 1px solid var(--line); }

  .reserve { grid-template-columns: 1fr; gap: 40px; }
  .reserve__form { padding: 28px; }

  .footer { padding-top: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .footer__brand { grid-column: 1 / -1; padding-right: 0; }

  /* menu aberto: header ganha fundo branco para os elementos contrastarem */
  .header.is-menu-open {
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  .header.is-menu-open .header__logo--light { opacity: 0; }
  .header.is-menu-open .header__logo--dark  { opacity: 1; position: absolute; }
  .header.is-menu-open .header__menu span { background: var(--navy); }

  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    padding: 8px 24px 20px;
    gap: 0;
    box-shadow: var(--shadow);
  }
  .header__nav.is-open a {
    color: var(--navy);
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .header__nav.is-open a::after { display: none; }
  .header__nav.is-open a:last-child { border-bottom: none; }
}

@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .header__inner { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }

  .hero { padding-bottom: 56px; }
  .hero__content { padding: 0 20px; }
  .hero__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    hyphens: auto;
  }
  .hero__sub { margin-bottom: 28px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { width: 100%; }

  .eyebrow { margin-bottom: 14px; font-size: 10px; }
  .h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }

  .trust__grid { grid-template-columns: 1fr; gap: 0; }
  .trust__item,
  .trust__item:nth-child(-n+2) {
    border-right: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .trust__item:last-child { border-bottom: none; }

  .room__body { padding: 24px; }
  .room__title { font-size: 1.6rem; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-card, .exp-card--lg { aspect-ratio: 3/2; }
  .exp-card__content { padding: 22px; }
  .exp-card h3, .exp-card--lg h3 { font-size: 1.5rem; }

  .gallery-strip { gap: 12px; margin-top: 36px; }
  .gallery-strip figcaption { padding: 12px 14px; font-size: 0.9rem; }

  .testi { padding: 28px; }
  .testi blockquote { font-size: 1.1rem; }

  .ratings { grid-template-columns: repeat(2, 1fr); gap: 0 20px; padding: 20px; }
  .ratings__item { border-right: none; padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .ratings__item:nth-last-child(-n+2) { border-bottom: none; }
  .ratings__item:nth-child(n+4) { padding-top: 14px; border-top: none; }
  .ratings__item:nth-child(odd) { border-right: 1px solid var(--line); }

  /* form: campos lado a lado ficam apertados demais — empilha tudo */
  .reserve__form { padding: 24px; }
  .reserve__form .row { grid-template-columns: 1fr; gap: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .wa-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .header__inner { padding: 0 16px; }
  .hero__content { padding: 0 16px; }
  .room__body, .reserve__form { padding: 20px; }
  .ratings { grid-template-columns: 1fr; }
  .ratings__item,
  .ratings__item:nth-child(odd) { border-right: none; }
  .ratings__item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ratings__item:last-child { border-bottom: none; }
}
