:root {
  --brand: #51a8b1;
  --brand-dark: #3f8a92;
  --topbar: #45474b;
  --dark: #333;
  --text: #4a4a4a;
  --muted: #929292;
  --white: #fff;
  --panel-dark: #45474b;
  --link-accent: #00acf4;
  --fb: #04aae4;
  --font-body: "Lato", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --max: 1200px;
  --gutter: 30px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.4;
  margin: 0 0 0.6em;
}
h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 35px;
  line-height: 49px;
}
h2 { font-family: var(--font-body); font-weight: 300; font-size: 32px; }
h3 { font-size: 18px; font-weight: 600; }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 0; height: 1px; }
.container { width: 90%; max-width: var(--max); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Top bar — OceanWP #top-bar */
.topbar {
  background: var(--topbar);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  align-items: center; justify-content: space-between;
}
.topbar-social { display: flex; align-items: center; }
.topbar-facebook { color: var(--fb); font-size: 18px; line-height: 1; }
.topbar-facebook:hover { color: #fff; }
.topbar-contacts {
  display: flex; flex-wrap: wrap; gap: 0; align-items: center;
  margin-left: auto;
}
.topbar-contacts .fa-phone,
.topbar-contacts .fa-envelope {
  color: var(--brand); font-size: 18px; margin-right: 8px;
}
.topbar-contacts .fa-envelope { margin-left: 12px; }
.topbar-contacts a { color: #fff; }
.topbar-contacts a:hover { color: #fff; }
.topbar-sep { color: #fff; margin: 0 0.35rem; }

/* Header / nav — not sticky (OceanWP minimal-header) */
.site-header { background: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 15px 0;
}
.logo img { max-width: 117px; height: auto; }
.site-nav { position: relative; }
.nav-desktop {
  display: flex; gap: 0; list-style: none; margin: 0; padding: 0; align-items: center;
}
.nav-desktop a {
  display: block; padding: 0 20px; line-height: 100px;
  color: #555; font-weight: 400; font-size: 13px;
  position: relative;
}
.nav-desktop a.active { color: #555; }
.nav-desktop a:hover { color: var(--brand); }
.nav-desktop a:hover::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: 32px;
  height: 1px; background: var(--brand);
}
.search-toggle-li { list-style: none; }
.site-search-toggle {
  background: none; border: 0; cursor: pointer; color: #555;
  font-size: 13px; padding: 0 14px; line-height: 100px;
}
.site-search-toggle:hover { color: var(--brand); }
.header-searchform-wrap {
  position: absolute; right: 0; top: 100%;
  background: #fff; border-top: 3px solid var(--brand);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  padding: 12px; min-width: 260px; z-index: 60;
}
.header-searchform-wrap[hidden] { display: none !important; }
.header-searchform-wrap .field {
  width: 100%; padding: 0.65rem 0.75rem; border: 1px solid #ddd;
  font: inherit; color: var(--dark);
}
.nav-toggle {
  display: none; background: none; border: 1px solid #ddd;
  padding: 0.5rem 0.75rem; border-radius: 4px; cursor: pointer; font-size: 1.1rem;
}
.nav-mobile {
  display: none; list-style: none; margin: 0; padding: 0 0 1rem;
  border-top: 1px solid #eee;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 0.85rem 0; color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
}
.nav-mobile a.active { color: var(--brand); }

@media (max-width: 780px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { padding: 10px 0; }
  .header-searchform-wrap { display: none !important; }
}

/* Page header — OceanWP: title left, crumbs right */
.page-header {
  position: relative;
  background: #f5f5f5;
  padding: 34px 0;
}
.page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-header-title,
.page-header h1 {
  display: block;
  color: #333;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4em;
  margin: 0;
  max-width: 70%;
  text-align: left;
}
.site-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 13px;
  color: #929292;
  margin: 0;
}
.site-breadcrumbs a { color: #929292; }
.site-breadcrumbs a:hover { color: var(--brand); }
.site-breadcrumbs .fa-home { font-size: 14px; color: #929292; }
.breadcrumb-sep { opacity: 0.7; margin: 0 0.15rem; }
.breadcrumb-current { color: #929292; }
@media (max-width: 780px) {
  .page-header-inner { flex-direction: column; align-items: flex-start; }
  .page-header-title { max-width: 100%; }
}

/* SiteOrigin wire buttons */
.btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 1.4em 2.8em;
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--brand); color: #fff; }
.btn-wire-light {
  border-color: #fff;
  color: #fff;
}
.btn-wire-light:hover { background: #fff; color: var(--brand); border-color: #fff; }
.btn-wire-brand {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-wire-brand:hover { background: var(--brand); color: #fff; }
.btn-solid { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-solid:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-light { border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--dark); }

/* Hero slider — 640px cover, no overlay (SOW measured) */
.hero {
  position: relative;
  height: 640px;
  color: #fff;
  overflow: hidden;
  background: #333;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #333;
  opacity: 0; transition: opacity 0.8s ease;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 1; max-width: 1240px; width: 90%; }
.hero-content h1 {
  color: #fff;
  font-size: 98px;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  line-height: 134.75px;
}
.hero-content h2 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  margin: 0;
}
.hero-hr {
  background: #fff; width: 25%; height: 1px; border: 0; margin: 25px auto 0;
}
.hero-pagination {
  position: absolute; left: 0; right: 0; bottom: 22px;
  z-index: 3; display: flex; justify-content: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
}
.hero-pagination button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%;
  background: #fff; opacity: 0.45; cursor: pointer;
}
.hero-pagination button.is-current { opacity: 1; }
.sow-slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; opacity: 0; transition: opacity .2s ease;
}
.hero:hover .sow-slide-nav { opacity: 1; }
.sow-slide-nav-prev { left: 12px; }
.sow-slide-nav-next { right: 12px; }
.hero-nav-btn {
  background: transparent; border: 0; cursor: pointer;
  width: 48px; height: 48px; padding: 0;
  display: grid; place-items: center;
  opacity: 0.85;
}
.hero-nav-btn:hover { opacity: 1; }
.sow-arrow {
  display: block; width: 18px; height: 18px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
}
.sow-arrow-left { transform: rotate(-135deg); }
.sow-arrow-right { transform: rotate(45deg); }

@media (max-width: 780px) {
  .hero { height: 420px; }
  .hero-content h1 { font-size: 42px; line-height: 1.15; }
  .hero-content h2 { font-size: 18px; line-height: 1.4; }
}

/* Home bands — photo visible, no full-section overlay */
.home-band {
  background-size: cover;
  background-position: center center;
  padding: 90px 0;
}
.kicker { color: var(--brand); margin: 0 0 0.35em; }
.hr-brand {
  width: 15%; height: 1px; background: var(--brand); border: 0; margin: 12px 0 0;
}
.hr-center { margin-left: auto; margin-right: auto; }
.lead { font-size: 22px; line-height: 1.8; margin-top: 20px; }
.home-card {
  background: var(--panel-dark);
  color: #fff;
  padding: 25px;
}
.home-card h1,
.home-card p { color: #fff; }
.home-card .kicker { color: var(--brand); }
.home-card h1 { color: #fff; margin: 0; }
.home-card .card-btn { margin: 20px 0 0; }
.home-card-center { text-align: center; }
.home-card-center .lead { margin-top: 20px; }
.home-card-center h1 { padding-bottom: 25px; }

/* CTA — teal #51a8b1, 25% | 39% empty | 36% */
.cta-bar { background: var(--brand); color: #fff; padding: 35px 0; }
.cta-grid {
  display: grid;
  grid-template-columns: calc(25% - 22.5px) calc(39% - 18.3px) calc(36% - 19.2px);
  column-gap: var(--gutter);
  align-items: start;
}
.cta-bar h1 { color: #fff; margin: 0; font-size: 35px; line-height: 49px; }
.cta-bar p { color: #fff; margin: 0; }
.cta-bar a { color: #fff; }
.cta-bar a:hover { color: #fff; }
.cta-phones p { text-align: right; }

/* Welcome — 25% empty | 31% card | 44% empty */
.welcome-grid {
  display: grid;
  grid-template-columns: calc(24.9638% - 22.51px) calc(31% - 20.7px) calc(44.0362% - 16.79px);
  column-gap: var(--gutter);
  align-items: start;
}

/* Estrutura — 50% text (dark, no overlay) | 50% empty photo */
.estrutura-home {
  display: grid;
  grid-template-columns: calc(50% - 15px) calc(50% - 15px);
  column-gap: var(--gutter);
  align-items: start;
}
.home-estrutura h1 { color: var(--dark); margin: 0; }
.home-estrutura p { color: var(--text); }
.home-estrutura .kicker { color: var(--brand); }

/* Amenities — 56% empty | 22% | 22%, icons 50px, dark titles */
.amenities {
  display: grid;
  grid-template-columns: calc(56% - 13.2px) calc(22% - 23.4px) calc(22% - 23.4px);
  column-gap: var(--gutter);
  align-items: start;
}
.amen-item { margin-bottom: 30px; text-align: center; }
.amen-col .amen-item:last-child { margin-bottom: 0; }
.amenities h3 {
  color: var(--dark);
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.amenities img {
  width: 50px; height: 50px; object-fit: contain;
  margin: 0 auto 8px;
}

/* Cascata — 33/33/33, dark card center */
.cascata-grid {
  display: grid;
  grid-template-columns: calc(33.3333% - 20px) calc(33.3333% - 20px) calc(33.3333% - 20px);
  column-gap: var(--gutter);
  align-items: start;
}

.home-map { width: 100%; margin: 0; padding: 0; line-height: 0; }
.home-map iframe { width: 100%; height: 650px; border: 0; display: block; }

@media (max-width: 780px) {
  .so-empty { display: none; }
  .cta-grid,
  .welcome-grid,
  .estrutura-home,
  .amenities,
  .cascata-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .cta-phones p { text-align: left; }
  .home-band { padding: 60px 0; }
}

/* Content pages — OceanWP 50/50 internals */
.content-page { padding: 50px 0; }
.content-page .prose { max-width: 820px; }
.content-page .prose ul { padding-left: 1.25rem; }
.content-page .prose li { margin-bottom: 0.35rem; }
.inner-50 {
  display: grid;
  grid-template-columns: calc(50% - 15px) calc(50% - 15px);
  column-gap: 30px;
  align-items: start;
}
.estrutura-intro { margin-bottom: 30px; }
.brand-em { color: var(--brand); }
.bullet-lines { margin: 0 0 1em; }
.teal-box {
  border: 1px solid var(--brand);
  padding: 10px;
}
.teal-box p { margin: 0 0 1em; }
.teal-box p:last-child { margin: 0; }
.teal-box-center p { text-align: center; }
.photo-frame {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  border: 3px solid var(--brand);
}
.ow-widget-title {
  display: block;
  line-height: 1;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-body);
  color: #333;
  border-width: 0 0 0 3px;
  border-style: solid;
  border-color: var(--brand);
  letter-spacing: 1px;
  padding-left: 15px;
  margin: 0 0 20px;
  text-transform: capitalize;
}
@media (max-width: 780px) {
  .inner-50 { grid-template-columns: 1fr; row-gap: 30px; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 0;
  margin: 0;
}
.gallery a {
  display: flex;
  justify-content: center;
  line-height: 0;
  margin-top: 10px;
}
.gallery img {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--brand);
}
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

.map-wrap {
  width: 100%; margin: 1.5rem 0 0;
  border: 0; overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 450px; border: 0; display: block; }

/* Contato — 2-col details only */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-col .widget-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.contact-col h3 {
  color: #000;
  font-size: 1.05rem;
  margin: 1rem 0 0.4rem;
}
.contact-col h3 .fa {
  color: var(--brand);
  margin-right: 8px;
  font-size: 18px;
}
.contact-col p { margin: 0 0 0.75rem; }

/* Footer — 4 cols + bottom bar with nav */
.site-footer { background: #222; color: var(--muted); margin-top: 0; }
.footer-widgets { padding: 25px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gutter);
}
.site-footer h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.site-footer h3 .fa,
.site-footer h3 .fab {
  color: var(--brand);
  margin-right: 8px;
  font-size: 18px;
}
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brand); }
.site-footer p { margin: 0; }
.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-menu ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0;
}
.footer-menu a {
  display: block; padding: 0 12px 0 0; margin-right: 12px;
  border-right: 1px solid #444; line-height: 1.2;
}
.footer-menu li:last-child a { border-right: 0; margin-right: 0; padding-right: 0; }
.copyright { color: var(--muted); }
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* Scroll-top (live OceanWP) */
.scroll-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 40px; height: 40px;
  background: rgba(0,0,0,.4); color: #fff;
  display: grid; place-items: center;
  border-radius: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease, background .2s;
  font-size: 18px; text-decoration: none;
}
.scroll-top.is-visible {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.scroll-top:hover { background: var(--brand); color: #fff; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  display: none; place-items: center; z-index: 100; padding: 1rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(96vw, 1100px); max-height: 90vh; }
.lightbox button {
  position: absolute; top: 1rem; right: 1rem; background: transparent;
  border: 0; color: #fff; font-size: 2rem; cursor: pointer;
}
