:root {
  --primary: #2a98d4;
  --primary-dark: #066ca6;
  --text: #30343a;
  --muted: #68717d;
  --bg: #f5f7fa;
  --white: #fff;
  --dark: #0f2035;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg);
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

.section-subtitle {
  margin: 0 0 26px;
  color: var(--muted);
}

.kicker {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: block;
  min-width: 0;
}

.brand-logo-desktop {
  width: 220px;
  height: auto;
}

.brand-logo-mobile {
  display: none;
  width: 220px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1f2b36;
  margin: 5px auto;
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: #091a2f;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 36, 0.88) 0%, rgba(8, 20, 36, 0.55) 45%, rgba(8, 20, 36, 0.35) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: .95;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(2.05rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero h2 {
  margin: 0 0 16px;
  color: #9fdcff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 0 28px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  box-shadow: var(--shadow);
}

.hero-inner-page .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: 380px;
  padding: 92px 0 52px;
}

.hero-inner-page .hero p {
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .hero-inner {
  min-height: 620px;
  padding-top: 120px;
  padding-bottom: 72px;
}

/* Generic layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.two-col.center {
  align-items: center;
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-carousel {
  position: relative;
  padding-bottom: 42px;
}

.history-track {
  position: relative;
  overflow: hidden;
  border-radius: 56px 8px 56px 8px;
  box-shadow: var(--shadow);
  background: #cfd6df;
}

.history-slide {
  display: none;
  margin: 0;
}

.history-slide.active {
  display: block;
}

.history-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.history-nav {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 56px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.history-nav.prev {
  left: 10px;
}

.history-nav.next {
  right: 10px;
}

.history-nav:hover {
  color: #d6ecff;
}

.history-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.history-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #b6bfca;
  padding: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.history-dot.active {
  background: #12151a;
  transform: scale(1.08);
}

.history-copy p:last-of-type {
  margin-bottom: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.feature-list,
.clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.clean-list li {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list i,
.clean-list i {
  color: var(--primary);
  margin-top: 3px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-grid img,
.gallery-strip img,
.room-gallery img,
.square-grid img,
.map-card iframe {
  width: 100%;
  border-radius: 12px;
}

.photo-grid img,
.square-grid img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-strip img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.testimonial-carousel {
  position: relative;
  margin-top: 18px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 0 8px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  margin: 0;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 32, 53, 0.9);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
}

.carousel-nav.prev {
  left: -14px;
}

.carousel-nav.next {
  right: -14px;
}

.carousel-nav:hover {
  background: var(--primary);
}

.vantagens {
  background: #0a1d31;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vantagens::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 12, 24, 0.82), rgba(4, 12, 24, 0.55));
}

.vantagens .container {
  position: relative;
  z-index: 1;
}

.vantagens h2,
.vantagens p,
.vantagens li {
  color: rgba(255, 255, 255, 0.95);
}

.vantagens .photo-grid img {
  border-radius: 0 50px 50px 0;
}

/* Acomodações */
.room-block {
  padding: 26px 0 36px;
  border-bottom: 1px solid #ebedf1;
}

.room-block:last-child {
  border-bottom: 0;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.room-block.reverse .room-grid {
  direction: rtl;
}

.room-block.reverse .room-grid > * {
  direction: ltr;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.room-gallery img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.room-gallery img:first-child {
  grid-column: span 2;
}

/* Contato hero alignment */
body[data-page="contato"] .contato-hero .hero-inner {
  min-height: 420px;
  padding-top: 110px;
}

body[data-page="contato"] .contato-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body[data-page="contato"] .contato-hero h1 {
  margin: 0 0 10px;
}

body[data-page="contato"] .contato-hero h2 {
  margin: 0 0 20px;
}

body[data-page="contato"] .contato-hero p {
  max-width: 760px;
  margin: 0 auto;
}

/* Acomodações fidelity */
body[data-page="acomodacoes"] .acom-hero {
  color: #fff;
}

body[data-page="acomodacoes"] .acom-hero::before {
  background: linear-gradient(90deg, rgba(4, 16, 35, 0.9) 0%, rgba(6, 21, 44, 0.78) 55%, rgba(6, 21, 44, 0.7) 100%);
}

body[data-page="acomodacoes"] .acom-hero .hero-bg {
  opacity: 0.9;
}

body[data-page="acomodacoes"] .acom-hero .hero-inner {
  min-height: 380px;
  padding: 110px 0 48px;
}

body[data-page="acomodacoes"] .acom-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

body[data-page="acomodacoes"] .acom-hero h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 1.1;
}

body[data-page="acomodacoes"] .acom-hero h2 {
  margin: 0 0 14px;
  color: #9ddcff;
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  line-height: 1.15;
}

body[data-page="acomodacoes"] .acom-hero p {
  margin: 0;
  max-width: 640px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.02rem, 1.55vw, 1.3rem);
}

.comfort-section .section-title {
  margin-bottom: 18px;
}

.comfort-carousel .carousel-track {
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
}

.comfort-carousel .carousel-slide {
  margin: 0;
}

.comfort-carousel .carousel-slide img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.comfort-carousel .carousel-nav {
  background: rgba(15, 32, 53, 0.82);
}

/* Contato */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.map-card iframe {
  border: 0;
  min-height: 420px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.hour-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  text-align: center;
}

.hour-card i {
  color: var(--primary);
  font-size: 24px;
}

.hour-card h4 {
  margin: 8px 0 2px;
  font-size: 1rem;
}

.hour-card p {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e9ef;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1e2832;
}

.faq-answer {
  display: none;
  padding: 0 0 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Pre footer + footer */
.pre-footer {
  background: var(--bg);
  border-top: 1px solid #e8ecf2;
  padding: 48px 0;
}

.pre-footer-title {
  text-align: center;
  margin-bottom: 20px;
}

.pre-footer-title h3 {
  margin: 4px 0 0;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  line-height: 1.05;
  color: #111;
}

.pre-footer-title p {
  margin: 6px 0 0;
  color: #8a9097;
  font-size: 1rem;
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 38px 24px 42px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.quick-card i {
  color: #000;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 30px;
}

.quick-card h4 {
  margin: 0 0 24px;
  font-size: 1.28rem;
  line-height: 1.12;
  color: #222;
}

.quick-card p {
  margin: 0;
  color: #9a9fa5;
  font-size: 1rem;
  line-height: 1.15;
  max-width: 200px;
}

.quick-card::after {
  content: "";
  width: 74px;
  height: 4px;
  background: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.site-footer {
  background: #0d1d30;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 40px 0;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-social,
.dev-social {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.footer-social a,
.dev-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer h5 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.privacy-link {
  color: rgba(255, 255, 255, 0.78);
}

.dev-logo {
  width: 120px;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 14px 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: #2398d5;
  color: #fff;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.15);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cookie-banner__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.cookie-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cookie-banner__text strong {
  font-size: 1rem;
}

.cookie-banner__text span {
  font-size: .94rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-banner__link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__accept {
  border: 0;
  border-radius: 999px;
  padding: 11px 24px;
  background: #1f990f;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner__accept:hover {
  filter: brightness(1.05);
}

body[data-page="quem-somos"] .quem-hero {
  color: #fff;
  background: #091a2f;
}

body[data-page="quem-somos"] .quem-hero::before {
  background: linear-gradient(90deg, rgba(3, 11, 24, 0.95) 0%, rgba(3, 11, 24, 0.84) 44%, rgba(3, 11, 24, 0.72) 100%);
}

body[data-page="quem-somos"] .quem-hero .hero-bg {
  opacity: .82;
  background-position: center;
}

body[data-page="quem-somos"] .quem-hero-inner {
  min-height: 420px;
  padding: 122px 0 56px;
}

body[data-page="quem-somos"] .quem-hero .hero-copy {
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
}

body[data-page="quem-somos"] .quem-hero h1 {
  margin: 0 0 2px;
  color: #fff;
  opacity: 1;
  font-size: clamp(2.2rem, 4.3vw, 3.75rem);
}

body[data-page="quem-somos"] .quem-hero h2 {
  margin: 0;
  color: #9fdcff;
  opacity: 1;
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
  font-weight: 700;
}

body[data-page="quem-somos"] .quem-hero p {
  color: rgba(255, 255, 255, 0.94);
  opacity: 1;
}

.quem-hero-divider {
  display: inline-block;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 12px;
}

body[data-page="quem-somos"] .quem-history-section {
  padding-top: 74px;
  padding-bottom: 78px;
}

body[data-page="quem-somos"] .quem-history-section .section-title {
  font-size: clamp(2.05rem, 3.6vw, 3.1rem);
  margin-bottom: 6px;
}

.quem-history-author {
  margin: 0 0 30px;
  color: #4d545e;
  font-style: normal;
}

body[data-page="quem-somos"] .quem-history-grid {
  align-items: center;
  gap: 40px;
}

.quem-history-copy p {
  margin: 0 0 12px;
  color: #454d56;
}

.quem-history-copy p:last-child {
  margin-bottom: 0;
}

.quem-history-carousel {
  padding-bottom: 36px;
}

body[data-page="quem-somos"] .quem-history-carousel .history-track {
  border-radius: 26px;
  box-shadow: none;
  border: 1px solid #d8dde5;
}

body[data-page="quem-somos"] .quem-history-carousel .history-slide img {
  aspect-ratio: 1 / 1;
}

body[data-page="quem-somos"] .quem-history-carousel .history-nav {
  font-size: 52px;
  top: calc(50% - 18px);
}

body[data-page="quem-somos"] .quem-history-carousel .history-dots {
  bottom: 2px;
}

body[data-page="quem-somos"] .quem-history-carousel .history-dot {
  width: 7px;
  height: 7px;
}

body[data-page="quem-somos"] .quem-social-section {
  position: relative;
  background: #bcbec4;
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 50px;
}

body[data-page="quem-somos"] .quem-social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-decor.jpg") center bottom / cover no-repeat;
  opacity: 0.16;
}

body[data-page="quem-somos"] .quem-social-section .container {
  position: relative;
  z-index: 1;
}

.quem-social-icons {
  justify-content: center;
  margin: 8px 0 24px;
}

.quem-social-icons a {
  background: var(--primary);
}

body[data-page="quem-somos"] .quem-social-section .quem-social-icons a {
  background: var(--primary);
  color: #fff;
}

.quem-social-carousel {
  margin-top: 8px;
}

.quem-social-carousel .carousel-track {
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
}

.quem-social-carousel .carousel-slide img {
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.quem-social-carousel .carousel-nav {
  width: 34px;
  height: 34px;
  background: transparent;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.24);
  font-size: 34px;
  top: 46%;
}

.quem-social-carousel .carousel-nav.prev {
  left: -28px;
}

.quem-social-carousel .carousel-nav.next {
  right: -28px;
}

.quem-social-carousel .carousel-nav:hover {
  background: transparent;
  color: rgba(0, 0, 0, 0.46);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1100;
}

.whatsapp-float i {
  margin-top: 16px;
}

body.cookie-banner-visible .whatsapp-float {
  bottom: 110px;
}

/* 404 */
.not-found {
  padding: 80px 0;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin: 0;
  color: var(--primary);
  opacity: .2;
}

.not-found h2 {
  margin: -16px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.js-reveal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 152, 212, .55); }
  70% { box-shadow: 0 0 0 16px rgba(42, 152, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 152, 212, 0); }
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-inner,
  .two-col,
  .history-grid,
  .room-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 22px;
  }

  .pre-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    order: -1;
  }

  .hero-media img,
  .vantagens .photo-grid img {
    border-radius: 16px;
  }

  body[data-page="home"] .hero-inner {
    min-height: 560px;
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .history-track {
    border-radius: 26px;
  }

  .history-slide img {
    aspect-ratio: 4 / 3;
  }

  .history-copy {
    margin-top: 8px;
  }

  .room-block.reverse .room-grid {
    direction: ltr;
  }

  .carousel-track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .carousel-nav.prev {
    left: -10px;
  }

  .carousel-nav.next {
    right: -10px;
  }

  .comfort-carousel .carousel-track {
    grid-auto-columns: calc((100% - 24px) / 3);
  }

  .quem-social-carousel .carousel-track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #ebedf1;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid #f0f2f5;
  }

  .menu-open .site-nav {
    display: flex;
  }

  .brand-logo-desktop {
    display: none;
  }

  .brand-logo-mobile {
    display: block;
    width: 180px;
  }

  .photo-grid,
  .photo-grid.three,
  .hours-grid,
  .pre-footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 0;
  }

  .pre-footer-title h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  body[data-page="acomodacoes"] .acom-hero .hero-inner {
    min-height: 280px;
    padding: 44px 0 28px;
  }

  body[data-page="contato"] .contato-hero .hero-inner {
    min-height: 300px;
    padding: 42px 0 28px;
  }

  body[data-page="acomodacoes"] .acom-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  body[data-page="acomodacoes"] .acom-hero h2 {
    font-size: clamp(1.35rem, 5.5vw, 2rem);
  }

  body[data-page="acomodacoes"] .acom-hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .comfort-carousel .carousel-track {
    grid-auto-columns: calc((100% - 12px) / 2);
  }

  .quem-social-carousel .carousel-track {
    grid-auto-columns: 100%;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .section {
    padding: 44px 0;
  }

  .whatsapp-float {
    right: 22px;
    bottom: 22px;
  }

  body.cookie-banner-visible .whatsapp-float {
    bottom: 132px;
  }

  body[data-page="home"] .hero-inner {
    min-height: 520px;
    padding-top: 88px;
    padding-bottom: 44px;
  }

  .comfort-carousel .carousel-track {
    grid-auto-columns: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
  }

  .cookie-banner__actions {
    justify-content: space-between;
  }
}
