/* =====================
   DESIGN SYSTEM
===================== */

:root {
  --gold: hsl(42, 50%, 55%);
  --gold-light: hsl(42, 55%, 70%);
  --gold-dark: hsl(42, 45%, 40%);

  --forest: hsl(150, 30%, 8%);
  --forest-light: hsl(150, 25%, 15%);

  --cream: hsl(45, 30%, 95%);
  --cream-muted: hsl(45, 20%, 80%);
}

/* =====================
   RESET
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--forest);
  color: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   HEADER
===================== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 40px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 15, 0.9),
    rgba(10, 20, 15, 0.3),
    transparent
  );
  z-index: 10;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 36px;
}

.nav a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.96rem;
}

.nav a:hover {
  color: var(--gold-light);
}

/* =====================
   HERO
===================== */

.hero {
  height: 100vh;
  background: url("banner02-pousada.png") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(42,50,45,.25), rgba(10,20,15,.75)),
    linear-gradient(to bottom, rgba(10,20,15,.4), rgba(10,20,15,.9));
}

.hero-content {
  margin-top: 120px; /* empurra tudo pra baixo */
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
}

.location {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold-light);
  font-size: .75rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.1;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p {
  color: var(--cream-muted);
  margin: 25px 0 40px;
}

.btn-cta {
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  text-decoration: none;
  color: var(--forest);
  font-weight: 500;
  display: inline-block;
  transition: .3s;
}

.btn-cta:hover {
  transform: translateY(-3px);
}

/* =====================
   TARJA DE DESTAQUE
===================== */

.highlight-strip {
  background: linear-gradient(
    135deg,
    rgba(20,40,30,0.98),
    rgba(10,25,18,0.98)
  );
  border-top: 1px solid rgba(255,206,120,0.25);
  border-bottom: 1px solid rgba(255,206,120,0.15);
}

.strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: center;
}

.strip-icon {
  font-size: 1.4rem;
}

.strip-content p {
  font-size: 0.95rem;
  color: var(--cream);
}

.strip-content strong {
  color: var(--gold-light);
}


/* =====================
   PACOTE
===================== */

.package {
  padding: 90px 0 80px;
  text-align: center;
  background: var(--forest);
}

.package-tag {
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold-light);
  border: 1px solid rgba(255,206,120,.5);
  padding: 6px 18px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 18px;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
}

.package-title span {
  background: linear-gradient(
    to top,
    var(--gold) 0%,
    var(--gold) 50%,
    #ffffff 50%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package-subtitle {
  max-width: 560px;
  margin: 14px auto 40px;
  color: var(--cream-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* FOTO DESTACADA — sem bordas */
.package-highlight {
  max-width: 720px;           /* largura elegante */
  margin: 0 auto 50px;
  border-radius: 26px;        /* bordas bem suaves */
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

.package-highlight-image {
  aspect-ratio: 16 / 9;       /* 🔑 chave do resultado */
  width: 100%;
}

.package-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* preenche sem distorcer */
  display: block;
}



.package-highlight::after {
  display: none;          /* Remove a sombra somente desta imagem */
}


/* =====================
   VÍDEO RETÂNGULO
===================== */

.package-preview {
  max-width: 620px;
  margin: 0 auto;
}

.package-preview h3 {
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .22em;
  text-align: center;
  font-size: .82rem;
  background: linear-gradient(
    to top,
    var(--gold) 0%,
    var(--gold) 50%,
    #ffffff 50%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.package-preview p {
  color: var(--cream-muted);
  margin-bottom: 22px;
}

.package-video {
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
  border-radius: 18px; /* adiciona bordas arredondadas */
}

.package-video video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px; /* garante o arredondamento no vídeo também */
}

/* =====================
   INCLUSO
===================== */

.included {
  padding: 80px 0 90px;
  background: var(--forest);
}

.included-box {
  background: linear-gradient(
    145deg,
    rgba(6,24,18,0.96),
    rgba(14,36,26,0.96)
  );
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(255,206,120,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.included-box h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 34px;
  font-size: 2.1rem;
}

.included-box h2 span {
  color: var(--gold);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px 26px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.04);
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,206,120,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), rgba(0,0,0,0.7));
}

.included-item p {
  font-size: 0.95rem;
  color: var(--cream-muted);
}

/* =====================
   MOMENTOS
===================== */

.moments {
  padding: 80px 0;
  background: var(--forest-light);
}

.moments-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2.3rem;
}

.moments-title span {
  color: var(--gold);
}

.moments-subtitle {
  text-align: center;
  color: var(--cream-muted);
  margin: 10px 0 40px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.moment-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.moment-info p {
  font-size: 0.95rem;
  color: var(--cream);
}

/* =====================
   DEPOIMENTOS
===================== */

.testimonials {
  padding: 90px 0;
  background: radial-gradient(
    circle at top,
    rgba(255,255,255,0.03),
    transparent
  ), var(--forest);
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(255,206,120,.5);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .7rem;
  letter-spacing: .2em;
  margin-bottom: 18px;
  display: block;
  width: fit-content;
  margin: 0 auto 18px; /* centraliza */
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 50px;
  text-align: center;


}

.section-title span {
  color: var(--gold);
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.testimonial-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(10,30,22,0.95),
    rgba(6,22,16,0.95)
  );
  padding: 34px 28px;
  border-radius: 26px;
  border: 1px solid rgba(255,206,120,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.quote {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  font-family: 'Playfair Display', serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.7;
  margin: 30px 0 22px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
}

.city {
  font-size: 0.8rem;
  color: var(--cream-muted);
}

/* =====================
   FOOTER
===================== */

.footer {
  background: linear-gradient(
    to bottom,
    rgba(10,25,18,0.95),
    rgba(6,18,13,0.98)
  );
  padding: 60px 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  width: 110px;
  margin-bottom: 28px;
}

.footer-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-copy {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: var(--cream-muted);
}

.footer-link {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold-light);
}

/* =====================
   FOOTER
===================== */

.footer {
  background: #0c1f18;
  padding: 70px 20px 30px;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo img {
  width: 110px;
  margin-bottom: 36px;
}

/* INFO CENTRALIZADA */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

/* LINHA (ÍCONE + TEXTO) */
.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--cream);
}

/* IMAGEM DO ÍCONE */
.footer-line img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* LINK */
.footer-line a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-line a:hover {
  color: var(--gold-light);
}

/* COPYRIGHT */
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--cream-muted);
}



/* =====================
   WHATSAPP
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: linear-gradient(145deg, #2eea7f, #1fa855);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2);

  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
}



/* =====================
   RESPONSIVO
===================== */

@media (max-width: 1024px) {
  .moments-grid { grid-template-columns: repeat(2,1fr); }
  .included-grid { grid-template-columns: repeat(2,1fr); }
}

.hero-content {
  margin-top: 120px; /* empurra tudo pra baixo */
}


@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.2rem; }

  
  .package-highlight {
    max-width: 100%;
    border-radius: 22px;
  }

  .package-highlight-image {
    aspect-ratio: 4 / 3; /* melhor leitura no celular */
  }

  .moments-grid { grid-template-columns: repeat(2,1fr); }
  .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .header .hero-title {
    display: none;
  }
}


@media (max-width: 600px) {
  .strip-content {
    flex-direction: column;
    gap: 6px;
  }

  .strip-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: 2.1rem;
  }

  .testimonial-card {
    padding: 28px 22px;
  }
}

/* =====================
   HERO - DESKTOP RESPONSIVO (banner)
===================== */

/* padrão (já pode manter) */
.hero {
  background: url("banner02-pousada.png") center / cover no-repeat;
}

/* Desktop médio/grande: melhora enquadramento da imagem e evita corte ruim */
@media (min-width: 1025px) {
  .hero {
    min-height: 720px;   /* mantém um hero bonito sem depender só de 100vh */
    height: 100vh;
    padding: 0 80px;

    /* ajuste fino do enquadramento do banner (mude o % se quiser) */
    background-position: center 35%;
  }

  .hero-content {
    margin-top: 0;              /* remove “empurrão fixo” */
    padding-top: 140px;         /* controla o espaçamento de forma estável */
    padding-bottom: 60px;
  }
}

/* Desktop muito grande (TV/4K): evita ficar “gigante” e deformar a composição */
@media (min-width: 1440px) {
  .hero {
    min-height: 820px;
    background-position: center 30%;
  }

  .hero-content {
    padding-top: 160px;
  }
}

/* =====================
   AJUSTES iPHONE (HERO)
===================== */
@media (max-width: 600px) {
  .hero {
    padding: 0 16px;
    background-position: center 35%;
  }

  /* desce tudo no banner */
  .hero-content{
    margin-top: 0 !important;
    padding-top: 140px; /* 🔥 aumenta aqui se quiser mais pra baixo */
  }

  .location{
    margin-bottom: 14px;
  }

  /* título com 3 linhas */
  .hero-title{
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
    margin: 0;
  }

  .hero-line1{
    display: block;
    font-size: 2.15rem;      /* diminui só o suficiente */
    white-space: nowrap;     /* 🔥 garante lado a lado */
  }

  .hero-line2{
    display: block;
    font-size: 2.05rem;
    color: var(--gold);
    margin-top: 6px;
  }

  .hero-line3{
    display: block;
    font-size: 2.25rem;
    color: var(--gold);
    margin-top: 2px;
  }
}

/* =====================
   AJUSTES iPHONE (INCLUSOS)
===================== */
@media (max-width: 600px) {
  .included-box{
    padding: 26px 18px;
    border-radius: 24px;
  }

  .included-grid{
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .included-item{
    align-items: center;        /* padrão mais bonito */
    padding: 16px 16px;         /* mais “respiro” */
    border-radius: 18px;
  }

  .included-item p{
    font-size: 0.95rem;         /* mantém legível */
    line-height: 1.35;          /* evita ficar esmagado */
    margin: 0;
  }

  .check-icon{
    flex: 0 0 28px;             /* não deixa achatar */
  }
}

/* Remove o título grande que ficou no header */
.header .hero-title{
  display: none !important;
}

