/* ==========================================================
   FONTES
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Cormorant+Garamond:ital,wght@0,300;1,300&family=Cormorant+SC:wght@300;400;500;600;700&display=swap');

/* ==========================================================
   PALETA
   ========================================================== */
:root {
  --cor-hero-base: #fde8de;     /* COR EXATA DO HERO (igual ao print) */
  --cor-fundo: #fbe9e7;         /* COR BASE DO SITE */
  --cor-primaria: #b3413e;
  --cor-secundaria: #f6d2b8;
  --cor-texto: #5b302f;
  --cor-destaque: #fff7f0;
  --cor-verde: #a5b65c;
  --vermelho-borda-foto: #b3413e;
  --cor-footer: #f6e3e3;
}

/* ==========================================================
   BASE
   ========================================================== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Alice', serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

section { padding: 3rem 10%; }

/* ==========================================================
   HEADER
   ========================================================== */
header {
  background-color: var(--cor-destaque);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .3s ease, opacity .3s ease;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-flor { height: 52px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cor-primaria);
}

.logo-slogan {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: .75;
}

nav a {
  margin-left: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .9rem;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--cor-primaria);
  transition: .3s;
}

nav a:hover::after { width: 100%; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  background: url("fotos/fundofloral.jpg") center/cover no-repeat;
  background-color: var(--cor-hero-base);
  text-align: center;
  padding: 7rem 2rem 6rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.hero button {
  background: var(--cor-primaria);
  color: #fff;
  border: none;
  padding: .9rem 2.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(179,65,62,.25);
}

/* ==========================================================
   QUEM SOMOS
   ========================================================== */
.quem-somos {
  background-color: var(--cor-destaque);
  text-align: center;
  padding-top: 0.2rem;
}

.quem-somos h2 {
  color: var(--cor-primaria);
  font-size: 2.4rem;
}

.quem-somos h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--cor-primaria);
  margin: 12px auto;
}

.membros {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 6rem;
  flex-wrap: wrap;
}

/* ==========================================================
   CARD SOBRE MIM
   ========================================================== */
.card.sobre-mim-card {
  position: relative;
  width: 350px;
  background-color: var(--cor-destaque);
  border-radius: 20px;
  border: 2px solid var(--vermelho-borda-foto);
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
  padding: 120px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card.sobre-mim-card .img-box {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--vermelho-borda-foto);
}

.card.sobre-mim-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card.sobre-mim-card .content {
  max-width: 280px;
  text-align: center;
}

.card.sobre-mim-card h2 {
  color: var(--cor-primaria);
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: 0.03em;
}

.card.sobre-mim-card h2::after { content: none; }

/* ==========================================================
   PILARES / FEATURES (base)
   ========================================================== */
.features {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 5rem 10%;
  background: url("fotos/fotorosa2.jpg") center/cover no-repeat;
  background-color: var(--cor-fundo);
  cursor: pointer;
}

.feature {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 280px;
}

.feature.flip-card { perspective: 1000px; }

.flip-inner {
  position: relative;
  height: 230px;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform .7s ease;
  box-shadow: 0 14px 35px rgba(0,0,0,.15);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  background: #fffaf4;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.flip-front { flex-direction: column; }

.flip-front .icon {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 0.3rem;
}

.flip-front h3 {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0;
}

.flip-back {
  transform: rotateY(180deg);
  text-align: center;
  padding: 1rem;
}

.flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.flip-card.ativo .flip-inner { transform: rotateY(180deg); }

/* ==========================================================
   EXPERIÊNCIA (segunda faixa)
   ========================================================== */
.features-experiencia {
  background: url("fotos/fotorosa3.jpg") center/cover no-repeat;
  background-color: var(--cor-fundo);
  padding: 5rem 10%;
  flex-wrap: wrap;
  cursor: pointer;
}

.features-experiencia .titulo-experiencia {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--cor-primaria);
}

/* ==========================================================
   VÍDEO
   ========================================================== */
.video-experiencia {
  text-align: center;
  background-color: var(--cor-destaque);
}

.video-experiencia h2 {
  color: var(--cor-primaria);
  font-size: 2rem;
  margin: 0 0 0.6rem;
}

.video-experiencia p { margin: 0; }

.video-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.video-container video {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 16px;
}

/* ==========================================================
   LOCAL
   ========================================================== */
.local {
  background-color: var(--cor-destaque);
  text-align: center;
}

.local > h2 {
  color: var(--cor-primaria);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: .04em;
  margin: 0 0 1rem;
  text-align: center;
}

/* ==========================================================
   TÍTULO – ACOMODAÇÕES
   ========================================================== */
.titulo-acomodacoes {
  color: var(--cor-primaria);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: .04em;
  margin: 0 0 2.5rem;
  text-align: center;
}

.titulo-acomodacoes::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--cor-primaria);
  margin: .8rem auto 0;
  opacity: .7;
}

/* ==========================================================
   CARDS – ACOMODAÇÕES
   ========================================================== */
.cards-local {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.card-local {
  background: rgba(255,247,240, .92);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
  border: 1px solid rgba(179,65,62,.14);
}

.card-local-body { padding: 1.2rem 1.2rem 1.4rem; }

.card-local-tag {
  margin: 0 0 .35rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(91,48,47,.75);
}

.card-local-title {
  margin: 0 0 .5rem;
  color: var(--cor-primaria);
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.card-local-desc {
  margin: 0 0 1rem;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(91,48,47,.92);
}

/* CTA */
.card-local-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;

  background: var(--cor-primaria);
  color: #fff;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(179,65,62,.18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.card-local-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(179,65,62,.24);
}

/* ==========================================================
   ÁLBUM (carrossel) – BASE
   ========================================================== */
.album {
  position: relative;
  aspect-ratio: 16 / 8;
  background: rgba(0,0,0,.04);
}

.album-track {
  height: 100%;
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.album-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  display: block;
  filter: saturate(1.02);
}

/* Botões prev/next */
.album-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.25);
  color: rgba(91,48,47,.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  opacity: 0;
}

.album:hover .album-btn { opacity: 1; }
.album-btn:hover { background: rgba(255,255,255,.38); transform: translateY(-50%) scale(1.04); }

.album-btn.prev { left: 10px; }
.album-btn.next { right: 10px; }

/* Dots */
.album-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.album-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  opacity: .8;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.album-dots button.active {
  background: rgba(255,255,255,.92);
  transform: scale(1.25);
  opacity: 1;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  position: relative;
  color: var(--cor-primaria);
  text-align: center;
  padding: 3.5rem 10% 2.5rem;
  background: url("fotos/fotorosa3.jpg") center / cover no-repeat;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0) 60%
  );
  pointer-events: none;
}

footer h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 1.2rem;
  letter-spacing: 0.04em;
}

footer button {
  position: relative;
  overflow: hidden;

  background: var(--cor-primaria);
  color: #ffffff;
  border: none;

  padding: 2rem 3rem;
  border-radius: 999px;

  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  cursor: pointer;
  margin: 0 0 2rem;

  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}

footer button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}

/* Glow de fundo */
footer button::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.08) 22%,
    rgba(255,255,255,0) 60%
  );
  opacity: 0;
  transform: scale(.9);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

/* Flor PNG central */
footer button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  background: url("fotos/florbotao.png") center/contain no-repeat;
  transform: translate(-50%, -50%) scale(.75);
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}

footer button:hover::before { opacity: 1; transform: scale(1); }
footer button:hover::after  { opacity: 0.18; transform: translate(-50%, -50%) scale(1); }

footer button * { position: relative; z-index: 1; }

.footer-credit a {
  color: var(--cor-primaria);
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover { text-decoration: underline; }

/* ==========================================================
   CONTEÚDO INCLUSO – APÓS VÍDEO
   ========================================================== */
.conteudo-incluso {
  max-width: 760px;
  margin: 3.5rem auto 0;
  text-align: left;
}

.conteudo-incluso h3 {
  color: var(--cor-primaria);
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  text-align: center;
}

.conteudo-incluso ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 3rem;
}

.conteudo-incluso li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
  break-inside: avoid;
}

.conteudo-incluso li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-primaria);
  opacity: 0.6;
}

/* ==========================================================
   BLOCO – COMO É VIVER ESSA IMERSÃO
   ========================================================== */
.bloco-imersao {
  max-width: 760px;
  margin: 3rem auto 4rem;
  text-align: center;
}

.titulo-imersao {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cor-primaria);
  font-size: 2rem;
  letter-spacing: .04em;
  margin: 0 0 1.2rem;
}

.titulo-imersao::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--cor-primaria);
  margin: .8rem auto 0;
  opacity: .7;
}

.texto-imersao {
  font-size: 1rem;
  line-height: 1.7;
  margin: 1.6rem auto 2.2rem;
  max-width: 680px;
  color: rgba(91, 48, 47, 0.92);
}

.lista-imersao {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 520px;
  text-align: left;
}

.lista-imersao li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

.lista-imersao li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-primaria);
  opacity: 0.6;
}

/* ==========================================================
   SCROLLBAR MINIMALISTA
   ========================================================== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 65, 62, 0.35) rgba(255, 247, 240, 0.85);
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track {
  background: rgba(255, 247, 240, 0.9);
}

::-webkit-scrollbar-thumb {
  background: rgba(179, 65, 62, 0.35);
  border-radius: 999px;
  border: 3px solid rgba(255, 247, 240, 0.9);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(179, 65, 62, 0.55);
}

/* ==========================================================
   RESPONSIVO
   ========================================================== */
@media (max-width: 980px) {
  .cards-local { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

@media (max-width: 700px) {
  .conteudo-incluso ul { columns: 1; }
}

@media (max-width: 640px) {
  section { padding: 3rem 6%; }

  .cards-local { grid-template-columns: 1fr; }
  .album-btn { opacity: 1; } /* em touch, deixa disponível */

  .bloco-imersao { margin: 2.5rem auto 3.5rem; }
  .texto-imersao { font-size: .95rem; }
}

@media (min-width: 901px) {
  .card.sobre-mim-card p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity .3s ease, max-height .3s ease;
    margin-top: 0;
  }

  .card.sobre-mim-card:hover p {
    opacity: 1;
    max-height: 400px;
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  .membros { row-gap: 6rem; }

  .card.sobre-mim-card p {
    opacity: 1;
    max-height: none;
    margin-top: 12px;
  }

  .features { flex-wrap: wrap; gap: 1.2rem; }

  .feature {
    flex: 1 1 calc(50% - 1.2rem);
    max-width: 320px;
  }

  .flip-front .icon { font-size: 2.8rem; }
  .flip-front h3 { font-size: 1.4rem; }
  .flip-back p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .feature {
    flex: 1 1 100%;
    max-width: 360px;
  }
}

/* ==========================================================
   OVERRIDES / AJUSTES ESPECÍFICOS (mantidos)
   ========================================================== */

/* Normaliza borda do card-extra na área de acomodações */
.cards-local .card-local.card-extra {
  border: 1px solid rgba(179,65,62,.14);
}

/* ÁLBUM IMERSÃO – BORDA + ARREDONDADO */
.album.album-imersao {
  border: 4px solid var(--cor-primaria);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,247,240,.92);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.album.album-imersao .album-track,
.album.album-imersao .album-track img {
  border-radius: 26px; /* mantém consistente com o container */
}

/* ==========================================================
   LISTA IMERSÃO – 2 COLUNAS
   ========================================================== */

.lista-imersao{
  columns: 2;
  column-gap: 3rem;
  max-width: 760px;     /* opcional: mantém alinhado com o texto */
  margin: 0 auto;
  text-align: left;
}

.lista-imersao li{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: .9rem;
}

/* Responsivo: volta para 1 coluna no mobile */
@media (max-width: 640px){
  .lista-imersao{
    columns: 1;
  }
}

/* ==========================================================
   SLIDE CONTÍNUO – SOMENTE ÁLBUM IMERSÃO
   ========================================================== */

/* o track vira “esteira” */
.album.album-imersao .album-track{
  overflow: hidden;              /* não deixa vazar */
  scroll-behavior: auto;         /* evita conflito com scrollTo */
}

.album.album-imersao.is-continuo .album-track{
  display: flex;
  gap: 0;
  animation: imersao-loop 10s linear infinite; /* MAIS RÁPIDO */
  will-change: transform;
}


/* cada imagem ocupa “tamanho natural” no loop */
.album.album-imersao.is-continuo .album-track img{
  flex: 0 0 auto;
  width: 100%;
}

/* pausa no hover (opcional e elegante) */
@media (hover:hover){
  .album.album-imersao.is-continuo:hover .album-track{
    animation-play-state: paused;
  }
}

/* a animação vai “até metade”, porque vamos duplicar as imagens no JS */
@keyframes imersao-loop{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   HEADER – OCULTAR AO DESCER
   ========================================================== */

header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================
   HERO COM VÍDEO DE FUNDO
   ========================================================== */

.hero-video {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 6rem;
}

/* Vídeo */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay para leitura */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(253, 232, 222, 0.75); /* mesma vibe do hero */
  z-index: 1;
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.3rem;
  max-width: 760px;
  margin: 0 auto 2rem;
  color: var(--cor-texto);
}

/* ==========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;

  background: var(--cor-primaria);
  color: #fff;

  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.9rem;
  box-shadow: 0 10px 25px rgba(179,65,62,.35);

  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px rgba(179,65,62,.45);
  opacity: 0.95;
}

/* Mobile ajuste fino */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    right: 18px;
    bottom: 18px;
  }
}

/* ==========================================================
   DESTAQUE – VIVÊNCIA ESPECIAL (VIP)
   ========================================================== */

.vip-destaque{
  background:
    linear-gradient(rgba(246,227,227,.90), rgba(246,227,227,.90)),
    url("fotos/fundofloral.jpg") center/cover no-repeat;
  padding: 3.8rem 10%;
}

.vip-box{
  max-width: 920px;
  margin: 0 auto;
  padding: 2.6rem 2.6rem 2.2rem;

  background: rgba(255,247,240,.86);
  border: 1px solid rgba(179,65,62,.22);
  border-radius: 26px;

  box-shadow: 0 22px 55px rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
}

/* brilho etéreo sutil */
.vip-box::before{
  content:"";
  position:absolute;
  inset:-30%;
  background: radial-gradient(circle at 35% 20%, rgba(255,255,255,.38), rgba(255,255,255,0) 55%);
  pointer-events:none;
}

.vip-box *{
  position: relative;
  z-index: 1;
}

.vip-titulo{
  font-family: 'Cormorant Garamond', serif;
  color: var(--cor-primaria);
  font-size: 2rem;
  letter-spacing: .02em;
  margin: 0 0 1rem;
  text-align: center;
}

.vip-titulo::after{
  content:"";
  display:block;
  width: 70px;
  height: 2px;
  background: var(--cor-primaria);
  margin: .9rem auto 0;
  opacity: .65;
}

.vip-texto{
  max-width: 760px;
  margin: 1.4rem auto 1.8rem;
  text-align: center;
  color: rgba(91,48,47,.92);
  line-height: 1.75;
}

.vip-incluso{
  max-width: 780px;
  margin: 0 auto 1.6rem;
  padding: 1.4rem 1.6rem;

  border-radius: 18px;
  border: 1px dashed rgba(179,65,62,.30);
  background: rgba(255,250,244,.75);
}

.vip-subtitulo{
  margin: 0 0 1rem;
  color: var(--cor-primaria);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  text-align: center;
}

.vip-lista{
  list-style: none;
  padding: 0;
  margin: 0;

  columns: 2;
  column-gap: 2.6rem;
}

.vip-lista li{
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .85rem;
  break-inside: avoid;
  line-height: 1.6;
  color: rgba(91,48,47,.92);
}

.vip-lista li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-primaria);
  opacity: .60;
}

.vip-nota{
  margin: 1.1rem auto 0;
  text-align: center;
  font-size: .98rem;
  color: rgba(91,48,47,.85);
  max-width: 680px;
}

.vip-cta{
  display: flex;          /* deixa de ser inline */
  width: fit-content;     /* fica do tamanho do texto */
  margin: 2rem auto 0;    /* centraliza */
  margin: 2rem auto 0;
  padding: 1rem 1.4rem;

  background: var(--cor-primaria);
  color: #fff;
  border-radius: 999px;

  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;

  box-shadow: 0 12px 28px rgba(179,65,62,.25);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.vip-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(179,65,62,.34);
  opacity: .96;
}

@media (max-width: 720px){
  .vip-box{ padding: 2rem 1.4rem; }
  .vip-lista{ columns: 1; }
  .vip-titulo{ font-size: 1.7rem; }
}

/* ==========================================================
   AJUSTE BOTÃO (MOBILE) – VIVÊNCIA ESPECIAL
   ========================================================== */
@media (max-width: 480px){
  .vip-cta{
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.1rem;
    font-size: .78rem;
    letter-spacing: .10em;

    white-space: nowrap;   /* evita quebrar “VIP” */
    margin: 1.4rem auto 0; /* centraliza */
  }
}

@media (max-width: 480px){
  footer button{
    padding: 1.2rem 2.2rem;
    font-size: 1.2rem;
    letter-spacing: 0.11em;
    border-radius: 999px;

    width: auto;
    max-width: 90%;
  }
}

/* ==========================================================
   NAV MOBILE – AJUSTE SEM MEXER NO DESKTOP
   ========================================================== */

.nav-toggle{
  display: none;
}

@media (max-width: 900px){
  header{
    padding: 0.6rem 1.2rem;
    position: sticky;
    top: 0;
  }

  /* botão aparece */
  .nav-toggle{
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
  }

  .nav-toggle span{
    display: block;
    height: 2px;
    background: var(--cor-primaria);
    margin: 6px 0;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
  }

  /* esconde nav no mobile */
  nav.nav-menu{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;

    background: var(--cor-destaque);
    border-top: 1px solid rgba(179,65,62,.12);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);

    flex-direction: column;
    align-items: flex-start;
    padding: .6rem 1.2rem 1rem;
  }

  nav.nav-menu a{
    width: 100%;
    padding: .95rem 0;
    margin-left: 0;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(179,65,62,.10);
  }

  nav.nav-menu a:last-child{
    border-bottom: 0;
  }

  /* quando abre */
  header.nav-open nav.nav-menu{
    display: flex;
  }

  /* animação do botão */
  header.nav-open .nav-toggle span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  header.nav-open .nav-toggle span:nth-child(2){
    opacity: 0;
  }
  header.nav-open .nav-toggle span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 900px){

  .nav-toggle{
    display: inline-grid;
    place-items: center;

    width: 44px;
    height: 44px;

    background: rgba(179,65,62,.10);
    border-radius: 12px;
    border: 1px solid rgba(179,65,62,.25);

    cursor: pointer;
    position: relative;
  }

  .nav-toggle span{
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--cor-primaria);
    border-radius: 999px;
    transition: transform .3s ease, opacity .3s ease;
  }

  /* ☰ fechado */
  .nav-toggle span:nth-child(1){
    transform: translateY(-6px);
  }
  .nav-toggle span:nth-child(2){
    opacity: 1;
  }
  .nav-toggle span:nth-child(3){
    transform: translateY(6px);
  }

  /* ✕ aberto */
  header.nav-open .nav-toggle span:nth-child(1){
    transform: rotate(45deg);
  }

  header.nav-open .nav-toggle span:nth-child(2){
    opacity: 0;
  }

  header.nav-open .nav-toggle span:nth-child(3){
    transform: rotate(-45deg);
  }
}