/* ============ TOKENS ============ */
:root {
  --terracota: #c1592e;
  --terracota-dark: #8f3f1f;
  --verde-mata: #2f4a34;
  --verde-mata-dark: #1e2f24;
  --creme: #f3ecdc;
  --creme-soft: #faf6ec;
  --madeira: #3c2a1e;
  --madeira-light: #6b4c34;
  --texto: #241f1a;
  --branco: #fffdf8;

  --display: "Fraunces", serif;
  --body: "Manrope", sans-serif;
  --mono: "Space Mono", monospace;

  --wrap: 1180px;
}

/* ============ BASE ============ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--texto);
  background: var(--creme-soft);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.08;
}

p {
  margin: 0;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow {
  max-width: 760px;
}

@media (min-width: 720px) {
  .wrap {
    padding: 0 48px;
  }
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============ TAG (plaquinha de madeira) ============ */
.tag {
  display: inline-block;
  position: relative;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--creme);
  padding: 9px 18px;
  border-radius: 3px;
  transform: rotate(-1.5deg);
  background-image:
    linear-gradient(rgba(30,18,10,.55), rgba(30,18,10,.55)),
    url('images/placa.jpg');
  background-size: 260px auto;
  background-position: center 30%;
  box-shadow: 0 6px 14px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.08);
  margin-bottom: 20px;
}

.tag--light {
  color: var(--creme);
}

/* ============ PLANK DIVIDER ============ */
.plank-divider {
  height: 16px;
  background: repeating-linear-gradient(
    90deg,
    var(--madeira-light) 0 34px,
    var(--madeira) 34px 36px
  );
  box-shadow: inset 0 3px 6px rgba(0,0,0,.35);
}

.plank-divider--dark {
  background: repeating-linear-gradient(
    90deg,
    #2a1c13 0 34px,
    #1c120b 34px 36px
  );
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(243,236,220,.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(60,42,30,.12);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__brand-eyebrow {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracota-dark);
}

.nav__brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--verde-mata-dark);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: .93rem;
}

.nav__links a {
  color: var(--texto);
  opacity: .85;
  transition: opacity .2s;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__cta {
  background: var(--terracota);
  color: var(--branco) !important;
  padding: 9px 18px;
  border-radius: 100px;
  opacity: 1 !important;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--verde-mata-dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 860px) {
  .nav__toggle {
    display: none;
  }
  .nav__links {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }
}

@media (max-width: 859px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--creme-soft);
    padding: 10px 24px 22px;
    box-shadow: 0 12px 18px rgba(0,0,0,.08);
  }
  .nav__links a {
    width: 100%;
    padding: 10px 0;
  }
  .nav.is-open .nav__links {
    display: flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,16,10,.35) 0%,
    rgba(20,16,10,.35) 35%,
    rgba(15,12,8,.86) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px 72px;
  max-width: 780px;
}

.hero__title {
  color: var(--creme);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 600;
}

.hero__title em {
  color: #e8b98c;
  font-style: italic;
  font-weight: 500;
}

.hero__subtitle {
  color: rgba(243,236,220,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 46ch;
  margin-top: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(243,236,220,.7);
  border-radius: 20px;
}

.hero__scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--creme);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

@media (min-width: 720px) {
  .hero__content {
    padding: 0 48px 96px;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 100px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn--primary {
  background: var(--terracota);
  color: var(--branco);
  box-shadow: 0 10px 24px rgba(193,89,46,.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(193,89,46,.45);
}

.btn--ghost {
  background: transparent;
  color: var(--creme);
  border: 1.5px solid rgba(243,236,220,.55);
}

.btn--ghost:hover {
  background: rgba(243,236,220,.12);
}

/* ============ SECTIONS ============ */
.section {
  padding: 88px 0;
}

.section--cream {
  background: var(--creme-soft);
}

.section--dark {
  background: var(--verde-mata-dark);
  color: var(--creme);
}

.section--terracota {
  background: var(--terracota);
  color: var(--branco);
}

.section__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  max-width: 18ch;
  margin-bottom: 34px;
}

.section__title--light {
  color: var(--creme);
}

.section__lead {
  font-size: 1.05rem;
  opacity: .8;
  max-width: 50ch;
  margin-bottom: 32px;
}

.section__lead--light {
  color: rgba(243,236,220,.85);
}

/* ============ ABOUT ============ */
.about__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  max-width: 900px;
}

.about__text {
  font-size: 1.08rem;
  line-height: 1.7;
  opacity: .88;
}

@media (min-width: 780px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ AMENITIES ============ */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 620px) {
  .amenities {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .amenities {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(243,236,220,.06);
  border: 1px solid rgba(243,236,220,.14);
  border-radius: 14px;
  padding: 22px 18px;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
  transition: background .25s ease, transform .25s ease;
}

.amenity:hover {
  background: rgba(243,236,220,.12);
  transform: translateY(-3px);
}

.amenity svg {
  width: 30px;
  height: 30px;
  color: #e8b98c;
  stroke-width: 1.4;
}

/* ============ VÍDEO EM DESTAQUE ============ */
.featured-video {
  margin-bottom: 44px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  background: #000;
}

.featured-video video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.featured-video__caption {
  padding: 18px 22px;
  background: var(--branco);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--texto);
  opacity: .9;
  border-top: 1px solid rgba(60,42,30,.08);
}

.subsection__title {
  font-size: 1.35rem;
  margin-bottom: 24px;
  color: var(--verde-mata-dark);
}

/* ============ CAROUSEL ============ */
.carousel {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  border-radius: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 720px) {
  .carousel__slide {
    aspect-ratio: 16/9;
  }
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(36,31,26,.55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  transition: background .2s ease;
}

.carousel__arrow:hover {
  background: rgba(36,31,26,.8);
}

.carousel__arrow--prev {
  left: 34px;
}

.carousel__arrow--next {
  right: 34px;
}

@media (max-width: 640px) {
  .carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .carousel__arrow--prev {
    left: 10px;
  }
  .carousel__arrow--next {
    right: 10px;
  }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(60,42,30,.25);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}

.carousel__dots button.is-active {
  background: var(--terracota);
  transform: scale(1.3);
}

/* ============ SEÇÃO FAMÍLIA ============ */
.family-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .family-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.family-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.family-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.family-card:hover img {
  transform: scale(1.05);
}

.family-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.family-card__overlay span {
  color: var(--creme);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ============ REASONS ============ */
.reasons {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .reasons {
    grid-template-columns: 1fr 1fr;
  }
}

.reason {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 24px 26px;
}

.reason h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.reason p {
  opacity: .88;
  line-height: 1.55;
  font-size: .96rem;
}

/* ============ LOCATION ============ */
.location-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--branco);
  border: 1px solid rgba(60,42,30,.12);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(60,42,30,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(60,42,30,.14);
}

.location-card svg {
  width: 34px;
  height: 34px;
  color: var(--terracota);
  flex-shrink: 0;
}

.location-card strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--display);
}

.location-card small {
  display: block;
  opacity: .7;
  margin-top: 2px;
}

.location-card em {
  margin-left: auto;
  font-style: normal;
  font-weight: 700;
  color: var(--terracota);
  white-space: nowrap;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(243,236,220,.07);
  border: 1px solid rgba(243,236,220,.18);
  border-radius: 16px;
  padding: 20px 22px;
  transition: background .2s ease, transform .2s ease;
}

.contact-card:hover {
  background: rgba(243,236,220,.14);
  transform: translateY(-2px);
}

.contact-card svg {
  width: 26px;
  height: 26px;
  color: #e8b98c;
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
}

.contact-card small {
  display: block;
  opacity: .65;
  font-size: .82rem;
  margin-top: 2px;
}

/* ============ FOOTER ============ */
.footer {
  background: #1c120b;
  color: rgba(243,236,220,.75);
  padding: 44px 0 32px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}

.footer__brand .nav__brand-name {
  color: var(--creme);
}

.footer p {
  margin: 4px 0;
  font-size: .9rem;
}

.footer__note {
  opacity: .55;
  margin-top: 12px;
  font-size: .82rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  z-index: 90;
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}