/* ===== RESET & BASE ===== */
/* Reset scoped via body para não conflitar com o admin do WordPress */
body.elementor-page *, body.elementor-page *::before, body.elementor-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --turquesa: #4FC8D4;
  --turquesa-dark: #3ab5c1;
  --bege: #e8dcc8;
  --bege-btn: #dad0bb;
  --branco: #ffffff;
  --cinza-texto: #444444;
  --cinza-escuro: #333333;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cinza-texto);
  background: var(--branco);
  overflow-x: hidden;
}

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

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

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  border: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn-turquesa { background: var(--turquesa); color: var(--branco); }
.btn-bege     { background: var(--bege-btn); color: var(--branco); }

/* ===== HEADER / NAV ===== */
header {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

nav ul li a {
  color: var(--branco);
  font-size: 14px;
  font-weight: 500;
  transition: opacity .2s;
}
nav ul li a:hover { opacity: .75; }

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  width: 90%;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  color: var(--branco);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-content h1 strong {
  font-weight: 700;
  font-style: italic;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--branco);
}

.about-text h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--turquesa);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cinza-texto);
  margin-bottom: 12px;
}

.about-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: var(--turquesa);
  padding: 70px 5%;
  text-align: center;
}

.diferenciais h2 {
  color: var(--branco);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 48px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.diferencial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.diferencial-item .icon {
  width: 64px;
  height: 64px;
  stroke: var(--branco);
  fill: none;
}

.diferencial-item p {
  color: var(--branco);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

/* ===== PACOTES ===== */
.pacotes {
  padding: 80px 5%;
  background: var(--branco);
  text-align: center;
}

.pacotes .section-title {
  margin-bottom: 48px;
}

.section-title .line1 {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--turquesa);
}

.section-title .line2 {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
  color: var(--cinza-escuro);
  margin-top: 4px;
}

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pacote-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pacote-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pacote-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}

.pacote-card-content {
  position: relative;
  z-index: 1;
  padding: 24px 16px;
  text-align: center;
}

.pacote-card-content h3 {
  color: var(--branco);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pacote-card-content p {
  color: var(--branco);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ===== GALERIA PREVIEW ===== */
.galeria-preview {
  padding: 80px 5%;
  background: var(--branco);
  text-align: center;
}

.galeria-preview h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--turquesa);
  margin-bottom: 40px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.galeria-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.galeria-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #e0f5f7;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquesa);
  font-size: 13px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--cinza-escuro);
  color: #cccccc;
  text-align: center;
  padding: 40px 5%;
  font-size: 13px;
  line-height: 1.8;
}

footer a { color: var(--turquesa); }

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--branco);
  margin-bottom: 12px;
  font-style: italic;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: #cccccc;
  font-size: 13px;
  transition: color .2s;
}
footer .footer-links a:hover { color: var(--turquesa); }

/* ===== PÁGINA INTERNA — layout base ===== */
.page-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.40);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 6%;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--branco);
  font-style: italic;
  font-weight: 700;
}

.page-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin-top: 8px;
  max-width: 500px;
}

/* ===== SEÇÃO GENÉRICA ===== */
.section-pad {
  padding: 80px 6%;
}

.section-pad h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-pad p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cinza-texto);
  max-width: 760px;
}

/* ===== AMBIENTES GRID ===== */
.ambientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ambiente-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
}

.ambiente-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #d5f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquesa);
  font-size: 14px;
}

.ambiente-card-body {
  padding: 20px;
}

.ambiente-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
}

.ambiente-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--cinza-texto);
}

/* ===== GALERIA FULL ===== */
.galeria-full {
  padding: 80px 5%;
}

.galeria-full h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--turquesa);
  font-style: italic;
  text-align: center;
  margin-bottom: 40px;
}

.galeria-masonry {
  columns: 3;
  column-gap: 12px;
}

.galeria-masonry img,
.galeria-masonry .galeria-placeholder {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  break-inside: avoid;
}

/* ===== CONTATO ===== */
.contato-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 6%;
  align-items: start;
}

.contato-info h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 16px;
}

.contato-info p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cinza-texto);
  margin-bottom: 20px;
}

.contato-info .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--cinza-escuro);
}

.contato-form { display: flex; flex-direction: column; gap: 16px; }

.contato-form input,
.contato-form textarea,
.contato-form select {
  padding: 14px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--cinza-escuro);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.contato-form input:focus,
.contato-form textarea:focus,
.contato-form select:focus {
  border-color: var(--turquesa);
}

.contato-form textarea { min-height: 140px; resize: vertical; }

/* ===== DECORAÇÕES PAGE ===== */
.pacotes-page { padding: 80px 5%; }

.pacotes-page h2 {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--turquesa);
  font-weight: 700;
  margin-bottom: 8px;
}

.pacotes-page .subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--cinza-texto);
  margin-bottom: 48px;
}

.pacote-detalhe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #eee;
}

.pacote-detalhe:last-child { border-bottom: none; margin-bottom: 0; }
.pacote-detalhe.reverse { direction: rtl; }
.pacote-detalhe.reverse > * { direction: ltr; }

.pacote-detalhe img,
.pacote-detalhe .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  background: #d5f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquesa);
  font-size: 14px;
}

.pacote-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: var(--turquesa);
  margin-bottom: 4px;
}

.pacote-info .pacote-tag {
  display: inline-block;
  background: var(--bege);
  color: var(--cinza-escuro);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pacote-info p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--cinza-texto);
  margin-bottom: 20px;
}

.pacote-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.pacote-info ul li {
  font-size: 13px;
  color: var(--cinza-escuro);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pacote-info ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquesa);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(3, 1fr); }
  .pacotes-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .ambientes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 20px 24px; }
  nav ul { gap: 16px; }
  nav ul li a { font-size: 12px; }

  .about { grid-template-columns: 1fr; gap: 32px; padding: 60px 5%; }
  .about-img { order: -1; }
  .about-img img { max-width: 100%; aspect-ratio: 16/9; }

  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pacotes-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .ambientes-grid { grid-template-columns: 1fr; }
  .contato-section { grid-template-columns: 1fr; }
  .pacote-detalhe { grid-template-columns: 1fr; }
  .pacote-detalhe.reverse { direction: ltr; }
  .galeria-masonry { columns: 2; }
}

@media (max-width: 480px) {
  nav ul { gap: 10px; }
  .btn-bege-nav { display: none; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .galeria-masonry { columns: 1; }
}
