:root {
  --brand: #51a8b1;
  --brand-dark: #3f8a92;
  --topbar: #45474b;
  --dark: #333;
  --text: #555;
  --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;
}
*, *::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.7;
  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.25;
  margin: 0 0 0.6em;
}
h1 { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; }
h2 { font-family: var(--font-body); font-weight: 300; font-size: 1.75rem; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, 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.75rem 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.35rem 0.5rem; align-items: center;
  margin-left: auto;
}
.topbar-contacts .fa-phone,
.topbar-contacts .fa-envelope {
  color: var(--brand); font-size: 18px; margin-right: 4px;
}
.topbar-contacts .fa-envelope { margin-left: 8px; }
.topbar-contacts a { color: #fff; }
.topbar-contacts a:hover { color: var(--link-accent); }
.topbar-sep { opacity: 0.5; color: #fff; }

/* Header / nav */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 12px 0; min-height: 100px;
}
.logo img { max-width: 117px; height: auto; }
.site-nav { position: relative; }
.nav-desktop { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-desktop a {
  display: block; padding: 0 18px; line-height: 70px;
  color: var(--dark); font-weight: 500; font-size: 15px;
  position: relative;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--brand); }
.nav-desktop a.active::after,
.nav-desktop a:hover::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 18px;
  height: 2px; background: var(--brand);
}
.search-toggle-li { list-style: none; }
.site-search-toggle {
  background: none; border: 0; cursor: pointer; color: var(--dark);
  font-size: 16px; padding: 0 14px; line-height: 70px;
}
.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: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-inner { min-height: 72px; }
  .header-searchform-wrap { display: none !important; }
}

/* Page header — OceanWP gray band (no photo hero) */
.page-header {
  background: #f5f5f5;
  color: var(--dark);
  text-align: center;
  padding: 2.5rem 1rem;
  border-bottom: 1px solid #e8e8e8;
}
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header-title,
.page-header h1 {
  color: var(--dark);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0;
}
.site-breadcrumbs {
  margin-top: 0.65rem; font-size: 0.9rem; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; justify-content: center;
}
.site-breadcrumbs a { color: var(--text); }
.site-breadcrumbs a:hover { color: var(--brand); }
.site-breadcrumbs .fa-home { margin-right: 0.25rem; color: var(--brand); }
.breadcrumb-sep { opacity: 0.7; margin: 0 0.15rem; }
.breadcrumb-current { color: var(--dark); }

/* Buttons */
.btn {
  display: inline-block; padding: 12px 28px;
  background: transparent; color: var(--brand);
  border: 2px solid var(--brand); font-weight: 600;
  letter-spacing: 0.02em; transition: .2s ease; cursor: pointer;
  font-family: inherit; font-size: 15px;
}
.btn: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 — SOW left/right arrows */
.hero {
  position: relative; min-height: 70vh; color: #fff; overflow: hidden;
  background: #333;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
  display: grid; place-items: center; text-align: center;
  padding: 2rem;
}
.hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.hero-slide.active { opacity: 1; position: relative; min-height: 70vh; }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-content h1 {
  color: #fff; font-size: clamp(2.5rem, 8vw, 98px);
  font-family: var(--font-display); margin: 0 0 0.3em; line-height: 1.05;
}
.hero-content h2 {
  color: #fff; font-weight: 400; font-size: clamp(1.1rem, 2.5vw, 1.75rem); margin: 0;
}
.hero-hr {
  background: #fff; width: 25%; height: 2px; border: 0; margin: 25px auto;
}
.sow-slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
}
.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: 22px; height: 22px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
}
.sow-arrow-left { transform: rotate(-135deg); }
.sow-arrow-right { transform: rotate(45deg); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-dark { background: var(--panel-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-cover {
  background-size: cover; background-position: center; color: #fff;
  position: relative;
}
.section-cover::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4);
}
.section-cover > .container { position: relative; z-index: 1; }
.section-cover h1, .section-cover h2, .section-cover h3, .section-cover p { color: #fff; }

.welcome-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
}
@media (max-width: 800px) { .welcome-grid { grid-template-columns: 1fr; } }

.cta-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--panel-dark); color: #fff;
}
.cta-bar > div { padding: 1.5rem 2rem; }
.cta-bar h1 { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); margin: 0; }
.cta-bar p { color: #fff; margin: 0.4rem 0 0; }
@media (max-width: 700px) { .cta-bar { grid-template-columns: 1fr; } }

.amenities {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
  text-align: center; margin-top: 2rem;
}
.amenities img { margin: 0 auto 0.75rem; width: 64px; height: 64px; object-fit: contain; }
.amenities h3 { color: #fff; margin: 0; font-size: 1rem; }
@media (max-width: 900px) { .amenities { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .amenities { grid-template-columns: repeat(2, 1fr); } }

.estrutura-home {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
}
@media (max-width: 800px) { .estrutura-home { grid-template-columns: 1fr; } }

.cascata-cta { text-align: center; padding: 3rem 1rem; }
.cascata-cta h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cascata-cta p { color: #fff; }

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

/* Content pages */
.content-page { padding: 3rem 0 4rem; }
.content-page .prose { max-width: 820px; }
.content-page .prose ul { padding-left: 1.25rem; }
.content-page .prose li { margin-bottom: 0.35rem; }

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem;
}
.gallery a {
  display: block; overflow: hidden; border-radius: 2px;
  aspect-ratio: 3/2; background: #eee;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery a:hover img { transform: scale(1.05); }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@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 (no form, no invent cards chrome) */
.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 */
.site-footer { background: #222; color: #bbb; padding: 2.5rem 0 0; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem;
}
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.75rem; }
.site-footer h3 .fa {
  color: var(--brand);
  margin-right: 8px;
  font-size: 18px;
}
.site-footer a { color: #ccc; }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid #333; padding: 1.1rem 0; font-size: 0.9rem; text-align: center;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* Scroll-top (live OceanWP; replaces clone-only float tel) */
.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;
}
