﻿:root {
  --green-900: #183d2d;
  --green-800: #21533e;
  --green-700: #2f7952;
  --green-500: #35a66a;
  --green-300: #a8d7b7;
  --terracotta: #c96f3e;
  --cream: #f7f1e6;
  --cream-2: #fffdf8;
  --text: #1f2a24;
  --muted: #66736b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 61, 45, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream-2);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.modal-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  max-width: 100%;
  margin-inline: auto;
}

main,
section,
footer,
.site-header,
.hero__grid,
.split,
.contact-grid,
.experience-grid,
.section__text,
.hero__content,
.split__media,
.contact-card,
.cta-panel,
.map-card,
.gallery-carousel {
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 50;
  width: min(calc(100% - 32px), 1180px);
  max-width: calc(100% - 32px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 61, 45, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, color 0.3s ease, inset 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--green-900);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(24, 61, 45, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  min-height: 54px;
  padding: 2px 12px 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  background: rgba(24, 61, 45, 0.06);
  border-color: rgba(24, 61, 45, 0.1);
}

.brand__logo,
.brand__logo img {
  display: block;
}

.brand__logo img {
  width: auto;
  height: clamp(46px, 4vw, 52px);
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:not(.btn) {
  opacity: 0.9;
}

.site-nav a:not(.btn):hover {
  color: var(--green-500);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(24, 61, 45, 0.1);
  border-radius: 50%;
  color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 6px 16px rgba(24, 61, 45, 0.14);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 111, 62, 0.24);
  box-shadow: 0 8px 18px rgba(24, 61, 45, 0.18);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 3px;
  margin: 0;
  border-radius: 99px;
  background: #ec6428;
  transition: transform 0.2s ease, opacity 0.16s ease;
}

.site-header.is-open .nav-toggle {
  background: var(--white);
  border-color: rgba(201, 111, 62, 0.3);
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg,
.whatsapp-float svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.btn--small {
  min-height: 42px;
  padding: 11px 16px;
}

.btn--whatsapp {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline {
  color: var(--green-900);
  border: 1px solid rgba(24, 61, 45, 0.18);
  background: var(--cream-2);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg {
  background: url("midia/midia/compressadas/img_017.webp") center 38% / cover;
  transform: scale(1.04);
}

.hero__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 75% 25%, rgba(53, 166, 106, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(10, 31, 22, 0.88), rgba(24, 61, 45, 0.56) 48%, rgba(10, 31, 22, 0.4));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 390px;
  gap: 48px;
  align-items: end;
  padding-top: 112px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--green-500);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--green-300);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  color: var(--green-900);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  color: var(--green-900);
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.13);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-card div {
  padding: 18px 8px 6px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.12rem;
}

.hero-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 108px 0;
  position: relative;
}

.section--cream {
  background:
    radial-gradient(circle at 10% 10%, rgba(53, 166, 106, 0.09), transparent 30%),
    var(--cream);
}

.section--green {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 111, 62, 0.25), transparent 28%),
    linear-gradient(135deg, var(--green-900), var(--green-800));
}

.section--green h2,
.section--green h3,
.section--green p,
.section--green .eyebrow {
  color: var(--white);
}

.section--green p {
  opacity: 0.78;
}

.split,
.contact-grid,
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img,
.cta-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--green-900);
  font-weight: 900;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 36px rgba(24, 61, 45, 0.14);
}

.section__text p {
  font-size: 1.04rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stats-grid strong {
  padding: 18px;
  border-radius: 18px;
  color: var(--green-900);
  background: var(--cream-2);
}

.stats-grid span {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--terracotta);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading--inline {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(24, 61, 45, 0.09);
  border-radius: var(--radius-md);
  background: var(--cream-2);
  box-shadow: 0 18px 48px rgba(24, 61, 45, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 111, 62, 0.45);
  box-shadow: 0 28px 68px rgba(24, 61, 45, 0.13);
}

.feature-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  padding: 12px;
  border-radius: 16px;
  fill: var(--green-700);
  background: rgba(53, 166, 106, 0.12);
}

.stay-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stay-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  transition: transform 0.28s ease;
}

.stay-card:hover {
  transform: translateY(-8px);
}

.stay-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.stay-card div {
  padding: 28px;
}

.stay-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-300);
  font-weight: 900;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(24, 61, 45, 0.12);
}

.mosaic img:nth-child(2),
.mosaic img:nth-child(3) {
  transform: translateY(34px);
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.round-btn,
.modal-close,
.video-controls button {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.round-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--cream);
  transition: transform 0.25s ease, background 0.25s ease;
}

.round-btn:hover {
  transform: translateY(-3px);
  background: var(--green-300);
}

.round-btn svg,
.modal-close svg,
.video-controls svg,
.play-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gallery-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 66px) / 4);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 4px 2px 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--green-500) var(--cream);
}

.gallery-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  height: 430px;
  border: 0;
  border-radius: 28px;
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(24, 61, 45, 0.12);
  scroll-snap-align: start;
  cursor: zoom-in;
}

.gallery-card::after {
  content: "Ampliar";
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  background: rgba(24, 61, 45, 0.75);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  margin: 0;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.play-card {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--terracotta));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.contact-card {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.contact-list strong {
  color: var(--green-900);
}

.cta-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel img {
  height: 430px;
  border-radius: 0;
}

.cta-panel div {
  padding: 30px;
}

.cta-panel h3,
.cta-panel p {
  color: var(--white);
}

.map-card {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-900);
  overflow-wrap: anywhere;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a,
.site-footer small {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--green-300);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 48;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.36);
  animation: pulse 2.8s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.lightbox,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(4, 13, 9, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox.is-open,
.video-modal.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(96vw, 1180px);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.video-player {
  position: relative;
  width: min(920px, 96vw);
  overflow: hidden;
  border-radius: 28px;
  background: #050806;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.video-player video {
  width: 100%;
  max-height: 78vh;
  background: #050806;
}

.video-controls {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 44px 1fr auto 44px 44px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(24, 61, 45, 0.82);
  backdrop-filter: blur(12px);
}

.video-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.video-controls input {
  accent-color: var(--green-500);
}

.video-controls span {
  min-width: 92px;
  font-size: 0.82rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    color: var(--green-900);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 8px;
  }

  .hero__grid,
  .split,
  .contact-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 920px;
  }

  .hero__grid {
    padding-bottom: 48px;
  }

  .feature-grid,
  .stay-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-carousel {
    grid-auto-columns: calc((100% - 22px) / 2);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    inset: 10px 0 auto;
    width: min(calc(100% - 20px), 1180px);
    max-width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
    align-items: center;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .brand {
    min-height: 44px;
    padding: 4px;
    border-radius: 18px;
  }

  .brand__logo {
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 15px;
  }

  .brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .nav-toggle {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__grid {
    gap: 28px;
    padding-top: 104px;
  }

  .hero-card img {
    height: 300px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading--inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .stay-grid,
  .video-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .split__media img,
  .cta-panel img {
    height: 420px;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic img,
  .mosaic img:nth-child(2),
  .mosaic img:nth-child(3) {
    height: 320px;
    transform: none;
  }

  .gallery-carousel {
    grid-auto-columns: 88%;
    gap: 16px;
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .gallery-card {
    height: 440px;
  }

  .contact-card {
    padding: 28px;
  }

  .map-card iframe {
    height: 360px;
  }

  .video-controls {
    grid-template-columns: 40px 1fr 40px;
    border-radius: 24px;
  }

  .video-controls span,
  [data-video-fullscreen] {
    display: none !important;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
