/* ═══════════════════════════════════════════════════════
   AQUARIOS PRAIA HOTEL — Modelo v3 · R2 Agência Digital
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ocean:      #0a2a3e;
  --ocean-deep: #071c2b;
  --teal:       #1a7fa8;
  --sky:        #29a8e0;   /* azul da logo */
  --sand:       #e8dcc8;
  --gold:       #c49a3c;
  --gold-hover: #d4aa4c;
  --cream:      #faf7f1;
  --white:      #ffffff;
  --ink:        #22323d;
  --body:       #51616c;
  --line:       #e9e2d4;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--body);
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
}
img { max-width: 100%; }
::selection { background: var(--gold); color: var(--ocean); }

/* ─── TOPBAR ─── */
.topbar { background: var(--ocean-deep); }
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 9px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 12.5px; letter-spacing: .4px;
  color: rgba(255,255,255,0.75);
}
.topbar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-left { display: flex; gap: 24px; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 13px; height: 13px; stroke: var(--gold); vertical-align: -2px; margin-right: 6px; }

/* ─── HEADER (claro) ─── */
header.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
header.site-header.scrolled { box-shadow: 0 8px 32px rgba(10,42,62,0.08); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  height: 100px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.logo img {
  height: 72px; display: block;
  filter: saturate(1.5) contrast(1.25) brightness(0.9);
}
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ocean);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 12px 26px !important;
  font-weight: 600 !important;
  letter-spacing: 1.6px !important;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background .25s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--ocean) !important; color: #fff !important; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1101;
}
.nav-burger span { width: 26px; height: 2px; background: var(--ocean); transition: all .3s; display: block; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (home) ─── */
.hero { position: relative; height: calc(100vh - 122px); min-height: 540px; max-height: 820px; overflow: hidden; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
  transform: scale(1.04);
}
.slide.active { opacity: 1; transform: scale(1); transition: opacity 1.4s ease, transform 7s linear; }
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,28,43,0.92) 0%, rgba(7,28,43,0.55) 38%, rgba(7,28,43,0.28) 70%, rgba(7,28,43,0.22) 100%);
}
.hero-content {
  position: absolute; z-index: 10;
  left: 0; right: 0; bottom: 120px;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp 1s ease both .2s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
  text-shadow: 0 1px 3px rgba(7,28,43,.7);
}
.hero-tag::before, .hero-tag::after {
  content: ''; display: inline-block;
  width: 36px; height: 1px;
  background: var(--gold);
  vertical-align: middle; margin: 0 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
  text-shadow: 0 2px 6px rgba(7,28,43,.55), 0 8px 40px rgba(7,28,43,.45);
}
.hero h1 em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.92);
  max-width: 560px; margin: 0 auto 26px;
  font-weight: 300; line-height: 1.7;
  text-shadow: 0 1px 4px rgba(7,28,43,.65);
}
.hero-score {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(7,28,43,0.5);
  border: 1px solid rgba(232,220,200,0.25);
  padding: 10px 20px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-score .score-num {
  background: var(--gold); color: var(--ocean);
  font-weight: 600; font-size: 17px;
  padding: 5px 10px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.hero-score .score-txt { color: #fff; font-size: 12.5px; text-align: left; line-height: 1.5; }
.hero-score strong { letter-spacing: .5px; }
.hero-score .stars { color: var(--gold); letter-spacing: 2px; }

.slider-dots { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.dot { width: 34px; height: 3px; background: rgba(255,255,255,0.35); cursor: pointer; transition: all .3s; border: none; }
.dot.active { background: var(--gold); width: 52px; }

/* ─── BOOKING BAR ─── */
.booking-wrap { position: relative; z-index: 40; margin-top: -58px; padding: 0 24px; }
.booking-bar {
  max-width: 1080px; margin: 0 auto;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(10,42,62,0.18);
  border-top: 3px solid var(--gold);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .8fr .8fr 1.3fr;
}
.bb-field { padding: 20px 26px; border-right: 1px solid var(--line); }
.bb-field label {
  display: block;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.bb-field input, .bb-field select {
  width: 100%;
  border: none; outline: none;
  font-family: 'Jost', sans-serif;
  font-size: 15.5px; font-weight: 400;
  color: var(--ocean);
  background: transparent;
  cursor: pointer;
}
.bb-btn {
  background: var(--ocean);
  color: #fff;
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: background .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.bb-btn:hover { background: var(--gold); color: var(--ocean); }
.booking-note {
  max-width: 1080px; margin: 10px auto 0;
  text-align: center;
  font-size: 12.5px; color: #8b96a0;
}
.booking-note a { color: var(--teal); }

/* ─── SECTIONS ─── */
section { padding: 110px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.section-head.center .section-label::after { content: ''; width: 34px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 300; line-height: 1.12;
  color: var(--ocean);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-head p.lead { margin-top: 18px; font-size: 16.5px; }

.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--ocean);
  padding: 16px 40px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .25s;
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--ocean); color: #fff; }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--ocean);
  color: var(--ocean);
  padding: 15px 36px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--ocean); color: #fff; }

/* ─── PAGE HERO (internas) ─── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,28,43,0.9) 0%, rgba(7,28,43,0.45) 60%, rgba(7,28,43,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 52px; }
.breadcrumb {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand); margin-bottom: 10px;
}
.breadcrumb a { color: var(--sand); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300; color: #fff; line-height: 1.05;
  text-shadow: 0 2px 6px rgba(7,28,43,.55), 0 8px 40px rgba(7,28,43,.45);
}
.breadcrumb { text-shadow: 0 1px 3px rgba(7,28,43,.7); }
.page-hero h1 em { font-style: italic; color: var(--sand); }

/* ─── INFO STRIP ─── */
.info-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.info-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding-top: 30px; padding-bottom: 30px;
}
.strip-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.strip-item svg { width: 30px; height: 30px; stroke: var(--gold); flex-shrink: 0; }
.strip-item small { display: block; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; color: #9aa4ad; line-height: 1.4; }
.strip-item strong { font-size: 15px; font-weight: 500; color: var(--ocean); }

/* ─── WELCOME ─── */
.welcome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 84px; align-items: center; }
.welcome-text p { margin-bottom: 18px; }
.welcome-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 46px; padding-top: 38px;
  border-top: 1px solid var(--line);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 300; color: var(--ocean); line-height: 1; }
.stat-num sup { font-size: 20px; color: var(--gold); }
.stat-label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin-top: 8px; font-weight: 500; }
.welcome-visual { position: relative; }
.welcome-img-main { width: 100%; height: 560px; object-fit: cover; display: block; }
.welcome-img-accent {
  position: absolute; bottom: -36px; left: -36px;
  width: 240px; height: 170px; object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 16px 48px rgba(10,42,62,0.18);
}
.gold-bar { position: absolute; top: 36px; right: -14px; width: 4px; height: 140px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ─── ROOM CARDS ─── */
.bg-cream { background: var(--cream); }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.rooms-tabs { display: flex; gap: 4px; background: rgba(10,42,62,0.05); padding: 4px; }
.tab-btn {
  padding: 11px 26px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink); background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all .2s;
}
.tab-btn.active { background: var(--ocean); color: #fff; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card { background: var(--white); overflow: hidden; transition: transform .35s, box-shadow .35s; box-shadow: 0 2px 12px rgba(10,42,62,0.05); }
.room-card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(10,42,62,0.14); }
.room-img-wrap { overflow: hidden; position: relative; aspect-ratio: 4 / 3; }
.room-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.room-card:hover .room-img { transform: scale(1.05); }
.room-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.94); color: var(--ocean);
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px;
}
.room-info { padding: 28px; }
.room-info h3 { font-family: 'Playfair Display', serif; font-size: 25px; font-weight: 400; color: var(--ocean); margin-bottom: 8px; }
.room-info p { font-size: 14px; line-height: 1.7; }
.room-feats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.room-feats span {
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal); background: rgba(26,127,168,0.07);
  padding: 5px 11px; font-weight: 500;
}
.room-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--gold); text-decoration: none; transition: gap .25s;
}
.room-link:hover { gap: 14px; }
.suite-card { display: none; }
.suite-card.visible { display: block; }
.apt-card.hidden { display: none; }
.rooms-note {
  margin-top: 36px; padding: 20px 26px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(10,42,62,0.05);
}
.rooms-note strong { color: var(--ocean); font-weight: 500; }

/* ─── LISTAGEM DE ACOMODAÇÕES (página interna) ─── */
.acc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 64px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(10,42,62,0.06);
}
.acc-row:nth-child(even) .acc-media { order: 2; }
.acc-media { position: relative; min-height: 420px; overflow: hidden; }
.acc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.acc-row:hover .acc-media img { transform: scale(1.04); }
.acc-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.acc-body .cat { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.acc-body h3 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 300; color: var(--ocean); margin-bottom: 14px; line-height: 1.1; }
.acc-body p { font-size: 15px; margin-bottom: 8px; }
.acc-body .room-feats { margin-top: 14px; }
.acc-body .acc-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── GALERIA PADRONIZADA ─── */
.bg-ocean { background: var(--ocean); }
.bg-ocean .section-label, .bg-ocean .section-label::before, .bg-ocean .section-label::after { color: var(--gold); }
.bg-ocean .section-title { color: #fff; }
.bg-ocean .section-title em { color: var(--sand); }
.bg-ocean p { color: rgba(255,255,255,0.7); }

.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin-bottom: 44px; }
.gf-btn {
  padding: 10px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  background: transparent; color: var(--body);
  border: 1px solid var(--line); cursor: pointer;
  transition: all .25s;
}
.gf-btn:hover { border-color: var(--gold); color: var(--gold); }
.gf-btn.active { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.bg-ocean .gf-btn { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.bg-ocean .gf-btn.active { background: var(--gold); border-color: var(--gold); color: var(--ocean); }

.gallery-std { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-std.cols4 { grid-template-columns: repeat(4, 1fr); }
.g-tile {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--ocean-deep);
}
.g-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s, opacity .4s; }
.g-tile:hover img { transform: scale(1.06); }
.g-tile .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(to top, rgba(7,28,43,0.85), transparent);
  color: #fff; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: all .35s;
}
.g-tile:hover .g-cap { opacity: 1; transform: translateY(0); }
.g-tile.hide { display: none; }

/* ─── DINING ─── */
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dining-card { position: relative; min-height: 460px; overflow: hidden; display: flex; align-items: flex-end; }
.dining-card img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.dining-card:hover img.bg { transform: scale(1.05); }
.dining-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,28,43,0.9) 0%, rgba(7,28,43,0.2) 55%, transparent 100%);
}
.dining-info { position: relative; z-index: 2; padding: 40px; }
.dining-info .tag {
  display: inline-block; margin-bottom: 12px;
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border-left: 2px solid var(--gold); padding-left: 10px; font-weight: 600;
}
.dining-info h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.dining-info p { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 460px; }

/* ─── AMENITIES ─── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.service-card {
  background: var(--white);
  padding: 44px 28px; text-align: center;
  border: 1px solid var(--line);
  transition: all .3s;
}
.service-card:hover { border-color: transparent; box-shadow: 0 20px 48px rgba(10,42,62,0.1); transform: translateY(-4px); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(196,154,60,0.14); }
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.service-card h4 { font-size: 13px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ocean); }
.service-card p { font-size: 13.5px; margin-top: 8px; line-height: 1.65; }

/* ─── EVENTOS ─── */
.events-table-wrap { margin-top: 12px; overflow-x: auto; box-shadow: 0 4px 24px rgba(10,42,62,0.06); }
table.events-table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
.events-table th {
  background: var(--ocean); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 16px 18px; text-align: left; white-space: nowrap;
}
.events-table th:first-child { color: var(--gold); }
.events-table td { padding: 14px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.events-table td:first-child { font-weight: 500; color: var(--ocean); }
.events-table tr:last-child td { border-bottom: none; }
.events-table tr:hover td { background: var(--cream); }

/* ─── REVIEWS ─── */
.reviews-band { background: linear-gradient(135deg, var(--teal) 0%, var(--ocean) 65%); position: relative; overflow: hidden; }
.reviews-band::before { content: ''; position: absolute; top: -80px; left: -80px; width: 340px; height: 340px; border-radius: 50%; background: rgba(196,154,60,0.08); }
.reviews-band::after  { content: ''; position: absolute; bottom: -100px; right: -60px; width: 440px; height: 440px; border-radius: 50%; background: rgba(196,154,60,0.06); }
.reviews-inner { position: relative; z-index: 2; text-align: center; }
.review-scores { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 52px; }
.score-card {
  background: rgba(7,28,43,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px 42px; min-width: 190px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.score-card .num { font-family: 'Playfair Display', serif; font-size: 54px; font-weight: 300; color: var(--gold); line-height: 1; }
.score-card .lbl { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 10px; }
.score-card .src { font-size: 10.5px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--ocean-deep); text-align: center; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 4vw, 56px); font-weight: 300; color: #fff; margin-bottom: 14px; }
.cta-band h2 em { font-style: italic; color: var(--sand); }
.cta-band > .container > p { color: rgba(255,255,255,0.7); margin-bottom: 42px; }
.cta-phones { display: flex; justify-content: center; gap: 48px; margin-bottom: 42px; flex-wrap: wrap; }
.cta-phone-item small { display: block; font-size: 10.5px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.cta-phone-item strong { font-size: 20px; font-weight: 300; color: #fff; }
.cta-phone-item a { color: #fff; text-decoration: none; }

/* ─── LOCATION / CONTATO ─── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.distances { margin: 26px 0 6px; }
.distances li {
  list-style: none;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.distances li strong { font-weight: 500; color: var(--ocean); }
.contact-items { margin-top: 26px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { border-top: 1px solid var(--line); }
.c-icon {
  width: 38px; height: 38px; background: var(--ocean); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px;
}
.c-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.contact-item strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ocean); margin-bottom: 3px; }
.contact-item span { font-size: 14.5px; }
.contact-item span a { color: var(--teal); text-decoration: none; }
.map-embed { min-height: 480px; height: 100%; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; min-height: 480px; border: none; filter: saturate(0.75) contrast(1.05); }

/* form estático (modelo) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px; color: var(--ocean);
  outline: none;
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }

/* ─── FOOTER ─── */
footer { background: var(--ocean-deep); padding: 84px 0 40px; color: rgba(255,255,255,0.55); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 38px;
}
footer h5 { font-size: 11px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
footer p, footer a { font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.55); text-decoration: none; display: block; transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-logo img { height: 46px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .9; }
.footer-copy { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: rgba(255,255,255,0.32); flex-wrap: wrap; gap: 8px; }
.footer-copy a { display: inline; font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(7,28,43,0.97); z-index: 2000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; box-shadow: 0 0 90px rgba(0,0,0,.55); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none; color: #fff;
  cursor: pointer; opacity: .65; transition: opacity .2s; z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 22px; right: 30px; font-size: 34px; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 52px; font-family: 'Playfair Display', serif; padding: 20px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.55); font-size: 12.5px; letter-spacing: 2px; }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 900; text-decoration: none; transition: transform .25s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ══════════ RESPONSIVO ══════════ */
@media (max-width: 1080px) {
  .container, .header-inner, .topbar-inner { padding-left: 32px; padding-right: 32px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .gallery-std.cols4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-std { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid, .location-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-strip .container { grid-template-columns: repeat(2, 1fr); }
  .booking-bar { grid-template-columns: 1fr 1fr; }
  .bb-btn { grid-column: 1 / -1; padding: 18px; }
  .acc-body { padding: 40px; }
}

@media (max-width: 860px) {
  .topbar .tb-left span.hide-m { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(340px, 84vw); height: 100vh;
    background: var(--white);
    flex-direction: column; justify-content: center; gap: 30px;
    transition: right .35s ease;
    box-shadow: -24px 0 70px rgba(10,42,62,0.25);
    z-index: 1100;
  }
  .nav-links.open { right: 0; }
  .nav-burger { display: flex; }
  .welcome-grid, .location-grid, .dining-grid, .acc-row { grid-template-columns: 1fr; }
  .acc-row:nth-child(even) .acc-media { order: 0; }
  .acc-media { min-height: 300px; }
  .welcome-visual { order: -1; }
  .welcome-img-main { height: 400px; }
  .welcome-img-accent { display: none; }
  .hero { height: 70vh; min-height: 480px; }
  .hero-content { bottom: 100px; }
  .map-embed, .map-embed iframe { min-height: 380px; }
}

@media (max-width: 600px) {
  section { padding: 68px 0; }
  .container, .header-inner, .topbar-inner { padding-left: 20px; padding-right: 20px; }
  .topbar-inner { justify-content: center; }
  .topbar .tb-right { display: none; }
  .header-inner { height: 84px; }
  .logo img { height: 56px; }
  .rooms-grid, .services-grid, .gallery-std, .gallery-std.cols4, .form-grid { grid-template-columns: 1fr; }
  .welcome-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .info-strip .container { grid-template-columns: 1fr 1fr; gap: 18px; }
  .strip-item { flex-direction: column; text-align: center; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-copy { justify-content: center; text-align: center; }
  .booking-wrap { margin-top: -40px; }
  .booking-bar { grid-template-columns: 1fr; }
  .bb-field { border-right: none; border-bottom: 1px solid var(--line); padding: 15px 22px; }
  .cta-phones { gap: 26px; }
  .page-hero { height: 300px; }
  .dining-card { min-height: 360px; }
  .acc-body { padding: 32px 24px; }
  .form-grid .full { grid-column: auto; }
}

/* ─── PLAYFAIR DISPLAY — pesos e refinamentos (aprovado 31/07) ─── */
.hero h1, .page-hero h1 { font-weight: 700; letter-spacing: -0.5px; }
.hero h1 em, .page-hero h1 em { font-weight: 500; }
.section-title, .cta-band h2, .reviews-band h2 { font-weight: 700; letter-spacing: -0.3px; }
.section-title em, .cta-band h2 em { font-weight: 500; }
.room-info h3, .acc-body h3, .dining-info h3 { font-weight: 600; }
.stat-num, .score-card .num { font-weight: 600; }

/* ─── AJUSTES WORDPRESS ─── */
.nav-links li { list-style: none; }
.nav-links .menu-item a { display: inline-block; }
.nav-links .current-menu-item > a { color: var(--gold); }
.nav-links .current-menu-item > a::after { transform: scaleX(1); }
.acc-body .entry-content p, .single-room-content p { margin-bottom: 16px; }
.wp-post-image { display: block; }
img.size-full, img.size-large { height: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
/* form CF7 herda o visual do modelo */
.wpcf7 .form-grid p { margin: 0; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 select, .wpcf7 textarea {
  width: 100%; border: 1px solid var(--line); background: var(--white);
  padding: 13px 16px; font-family: 'Jost', sans-serif; font-size: 15px;
  color: var(--ocean); outline: none; transition: border-color .25s;
}
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { border-color: var(--gold); }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: var(--gold); color: var(--ocean); border: none; cursor: pointer;
  padding: 16px 40px; font-size: 12.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; font-family: 'Jost', sans-serif;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .25s;
}
.wpcf7 input[type="submit"]:hover { background: var(--ocean); color: #fff; }

/* ─── CASAMENTOS ─── */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; align-items: start; }
.ig-grid blockquote.instagram-media { margin: 0 !important; min-width: 0 !important; width: 100% !important; max-width: 100% !important; }
.wed-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.wed-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wed-photos img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
@media (max-width: 1200px) { .nav-links { gap: 22px; } }
@media (max-width: 1080px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } .wed-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ig-grid, .wed-cards { grid-template-columns: 1fr; } }
