/* =========================
   INICIO: FONTES
========================= */
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Cormorant+Garamond:ital,wght@0,300;1,300;0,400;0,600&family=Cormorant+SC:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Playfair+Display:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Merriweather:wght@300;400;700&display=swap');
/* =========================
   FIM: FONTES
========================= */


/* =========================
   INICIO: PALETA
========================= */
:root {
  --cor-hero-base: #fde8de;
  --cor-fundo: #fbe9e7;
  --cor-primaria: #b3413e;
  --cor-secundaria: #f6d2b8;
  --cor-texto: #5b302f;
  --cor-destaque: #fff7f0;
  --cor-verde: #a5b65c;
  --vermelho-borda-foto: #b3413e;
  --cor-footer: #f6e3e3;
}
/* =========================
   FIM: PALETA
========================= */


/* =========================
   INICIO: 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%; }
/* =========================
   FIM: BASE
========================= */


/* =========================
   INICIO: 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;
}

header.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.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%; }

.nav-toggle{ display: none; }
/* =========================
   FIM: HEADER
========================= */


/* =========================
   INICIO: HERO COM VÍDEO
========================= */
.hero{
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;   /* sobe o conteúdo */
  justify-content: center;
  padding-top: 32vh;         /* controla a altura aqui */
  text-align: center;
  overflow: hidden;
}

.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255,255,255,.65),
    rgba(255,255,255,.75)
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow{
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #7a4a45;
  margin-bottom: 1.5rem;
}

.hero h1{
  font-family: 'Merriweather', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.3;
  color: #5b2e2a;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

.hero-sub{
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5b2e2a;
  margin-bottom: 2.8rem;
}

.hero-cta{
  display: inline-block;
  background: var(--cor-primaria);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  font-weight: 500;
  transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
  box-shadow: 0 12px 30px rgba(179,65,62,.25);
  margin-top: 11rem;
}

.hero-cta:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(179,65,62,.35);
  opacity: .98;
}

.hero-after-cta{
  margin-top: 6px;
  font-size: 1.8rem;
  color: rgba(30, 20, 20, 0.65);
  letter-spacing: 0.02em;
}

@keyframes fadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}
/* =========================
   FIM: HERO COM VÍDEO
========================= */


/* =========================
   INICIO: HERO #INICIO (AJUSTES)
========================= */
#inicio .hero-eyebrow,
#inicio .hero-sub{
  display: none !important;
}

#inicio .hero-right-meta{
  position: absolute;
  right: 10%;
  top: 14%;
  text-align: right;
  z-index: 3;
  pointer-events: none;
  font-family: 'Alice', serif;
  font-size: 1.5rem;
  line-height: 1.35;
  color: rgba(30, 20, 20, 0.72);
}

#inicio .hero-right-meta span{ display: block; }

/* COLAR A FRASE NO BOTÃO (AJUSTE PRINCIPAL) */
#inicio .hero-after-cta{
  margin: 0 0 6px;
  line-height: 1.2;
}

#inicio .hero-cta{
  margin-top: 0;
}
/* =========================
   FIM: HERO #INICIO (AJUSTES)
========================= */


/* =========================
   INICIO: 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;
}
/* =========================
   FIM: QUEM SOMOS
========================= */


/* =========================
   INICIO: 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;
  display: flex;
  flex-direction: column;
  align-items: 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; }

.card-instagram{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--cor-primaria);
  color: var(--cor-primaria);
  font-size: 1.2rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.card-instagram:hover{
  background: var(--cor-primaria);
  color: #fff;
  transform: translateY(-2px);
}
/* =========================
   FIM: CARD SOBRE MIM
========================= */


/* =========================
   INICIO: 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;
  text-align: center;
  padding: 1.2rem;
}

.flip-front .icon {
  font-size: 2.2rem;
  color: var(--cor-primaria);
  margin-bottom: 0.6rem;
}

.flip-front h3 {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin: 0;
  max-width: 90%;
}

.flip-back {
  transform: rotateY(180deg);
  text-align: center;
  padding: 1.2rem;
}

.flip-back p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.flip-card.ativo .flip-inner { transform: rotateY(180deg); }

.dia-label{
  position: absolute;
  top: 14px;
  left: 16px;
  margin: 0;
  line-height: 1;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cor-primaria);
  opacity: .7;
  pointer-events: none;
  z-index: 4;
}
/* =========================
   FIM: PILARES / FEATURES (BASE)
========================= */


/* =========================
   INICIO: 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);
}
/* =========================
   FIM: EXPERIÊNCIA (SEGUNDA FAIXA)
========================= */


/* =========================
   INICIO: 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;
}
/* =========================
   FIM: VÍDEO
========================= */


/* =========================
   INICIO: CONTEÚDO INCLUSO
========================= */
.conteudo-incluso {
  max-width: 760px;
  margin: 3.5rem auto;
  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;
  padding-left: 5.5rem;
}

.conteudo-incluso li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.conteudo-incluso li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-primaria);
  opacity: 0.6;
}
/* =========================
   FIM: CONTEÚDO INCLUSO
========================= */


/* =========================
   INICIO: 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;
}
/* =========================
   FIM: LOCAL
========================= */


/* =========================
   INICIO: 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: 760px;
  text-align: left;
  columns: 2;
  column-gap: 3rem;
}

.lista-imersao li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.9rem;
  line-height: 1.6;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.lista-imersao li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cor-primaria);
  opacity: 0.6;
}
/* =========================
   FIM: BLOCO – COMO É VIVER ESSA IMERSÃO
========================= */


/* =========================
   INICIO: 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;
}
/* =========================
   FIM: TÍTULO – ACOMODAÇÕES
========================= */


/* =========================
   INICIO: CARDS – ACOMODAÇÕES
========================= */
.cards-local{
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 1020px;
  margin: 2.5rem auto 0;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-local{
  background: rgba(255,247,240, .92);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(179,65,62,.18);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.card-local-body{
  padding: 1.2rem 1.2rem 1.4rem;
  text-align: center;
}

.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);
}

.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);
  opacity: .98;
}

.cards-local .card-local.card-extra{
  border: 1px solid rgba(179,65,62,.18);
}

#acomodacoes{
  scroll-margin-top: 120px;
}

@media (max-width: 640px){
  .cards-local{ gap: 1.4rem; }
}
/* =========================
   FIM: CARDS – ACOMODAÇÕES
========================= */


/* =========================
   INICIO: ÁLBUM (CARROSSEL)
========================= */
.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);
}

.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; }

.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;
}

.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;
}

.album.album-imersao .album-track{
  overflow: hidden;
  scroll-behavior: auto;
}

.album.album-imersao.is-continuo .album-track{
  display: flex;
  gap: 0;
  animation: imersao-loop 10s linear infinite;
  will-change: transform;
}

.album.album-imersao.is-continuo .album-track img{
  flex: 0 0 auto;
  width: 100%;
}

@media (hover:hover){
  .album.album-imersao.is-continuo:hover .album-track{
    animation-play-state: paused;
  }
}

@keyframes imersao-loop{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* =========================
   FIM: ÁLBUM (CARROSSEL)
========================= */


/* =========================
   INICIO: DESTAQUE 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;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.vip-box.ativo{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.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-headline {
  text-align: center;
  margin-bottom: 0.1rem;
  animation: vipPulse 1.8s ease-in-out infinite;
}

@keyframes vipPulse {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: .55; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(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 auto;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 1rem 3rem;
}

.vip-lista li{
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
  color: rgba(91,48,47,.92);
  margin: 0;
}

.vip-lista li::before{
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: .8rem;
  color: #c86b5a;
  animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes sparkle{
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.15); }
}

.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;
  width: fit-content;
  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;
}

.vip-timer{
  margin-top: 3rem;
  text-align: center;
}

.timer-copy{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--cor-primaria);
  margin-bottom: 1.8rem;
}

.contador{
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.contador div{
  background: rgba(255,247,240,.9);
  border: 1px solid rgba(179,65,62,.3);
  padding: 1rem 1.4rem;
  border-radius: 18px;
  min-width: 85px;
}

.contador span{
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cor-primaria);
}

.contador small{
  font-size: .75rem;
  opacity: .7;
  text-transform: uppercase;
}
/* =========================
   FIM: DESTAQUE VIP
========================= */


/* =========================
   INICIO: 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;
  z-index: 4;
}

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);
}

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(.4);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
  z-index: 0;
}

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;
}

.footer-credit a:hover { text-decoration: underline; }
/* =========================
   FIM: FOOTER
========================= */


/* =========================
   INICIO: 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;
}
/* =========================
   FIM: BOTÃO FLUTUANTE WHATSAPP
========================= */


/* =========================
   INICIO: SCROLLBAR MINIMALISTA
========================= */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 65, 62, 0.35) rgba(255, 247, 240, 0.85);
}

::-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);
}
/* =========================
   FIM: SCROLLBAR MINIMALISTA
========================= */


/* =========================
   INICIO: RESPONSIVO (GERAL)
========================= */
@media (max-width: 900px){
  #inicio .hero-left-copy{
    left: 6%;
    top: 28%;
    max-width: 320px;
    font-size: 0.92rem;
  }

  #inicio .hero-right-meta{
    right: 6%;
    top: 11%;
    font-size: 0.86rem;
  }

  .membros { row-gap: 6rem; }
}

@media (max-width: 640px){
  section { padding: 3rem 6%; }

  #inicio .hero-left-copy{ display: none; }

  #inicio .hero-right-meta{
    right: 6%;
    top: 12%;
    font-size: 0.85rem;
  }

  .lista-imersao{ columns: 1; }

  .album-btn { opacity: 1; }
}

@media (max-width: 700px){
  .conteudo-incluso ul { columns: 1; padding-left: 0; }
}

@media (max-width: 640px){
  .cards-local{ gap: 1.4rem; }
}

@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%;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.7rem;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 720px){
  .vip-box{ padding: 2rem 1.4rem; }
  .vip-titulo{ font-size: 1.7rem; }

  .vip-lista{
    grid-template-columns: 1fr;
    row-gap: .4rem;
    column-gap: 0;
    width: 100%;
  }

  .contador{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }
}

@media (max-width: 480px){
  .vip-cta{
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.1rem;
    font-size: .78rem;
    letter-spacing: .10em;
    white-space: nowrap;
    margin: 1.4rem auto 0;
  }
}
/* =========================
   FIM: RESPONSIVO (GERAL)
========================= */


/* =========================
   INICIO: NAV MOBILE
========================= */
@media (max-width: 900px) {
  header{
    padding: 0.6rem 1.2rem;
    position: sticky;
    top: 0;
  }

  .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;
  }

  .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); }

  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; }

  header.nav-open nav.nav-menu{ display: flex; }

  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); }
}
/* =========================
   FIM: NAV MOBILE
========================= */


/* =========================
   INICIO: QUEM SOMOS (HOVER DESKTOP / MOBILE SEMPRE ABERTO)
========================= */
@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;
  }

  .card.sobre-mim-card:hover .card-instagram{
    opacity: 1;
    max-height: 60px;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .card.sobre-mim-card p {
    opacity: 1;
    max-height: none;
    margin-top: 12px;
  }

  .card-instagram{
    opacity: 1;
    max-height: none;
    pointer-events: auto;
  }
}
/* =========================
   FIM: QUEM SOMOS (HOVER DESKTOP / MOBILE SEMPRE ABERTO)
========================= */


/* =========================
   INICIO: FEATURES (RESPONSIVO)
========================= */
@media (max-width: 900px) {
  .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; }

  .flip-inner::after{
    content: "›";
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 18px;
    font-weight: 400;
    color: rgba(179,65,62,.35);
    pointer-events: none;
    z-index: 5;
  }
}

@media (max-width: 480px) {
  .feature {
    flex: 1 1 100%;
    max-width: 360px;
  }
}
/* =========================
   FIM: FEATURES (RESPONSIVO)
========================= */


/* =========================
   INICIO: ACOMODAÇÕES (MOBILE/TABLET)
========================= */
@media (max-width: 640px){
  .cards-local{
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
}

@media (min-width: 641px) and (max-width: 980px){
  .cards-local{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* =========================
   FIM: ACOMODAÇÕES (MOBILE/TABLET)
========================= */

/* =========================
   INICIO: HERO CTA FIXO NO FUNDO DO HERO
========================= */

#inicio{
  position: relative;
}

/* CTA preso no fundo do HERO (não no hero-content) */
#inicio .hero-bottom-cta{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 120px;              /* mesma “altura” do WhatsApp: ajuste aqui */
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  width: min(92vw, 900px);
}

/* frase colada no botão */
#inicio .hero-after-cta{
  margin: 0;
  line-height: 1.2;
}

/* mata o margin-top antigo de 11rem */
#inicio .hero-cta{
  margin-top: 0 !important;
}

/* =========================
   FIM: HERO CTA FIXO NO FUNDO DO HERO
========================= */

/* =========================
   INICIO: HERO MOBILE + TABLET (FECHADO)
========================= */

/* ---------- CELULAR (até 640px) ---------- */
@media (max-width: 640px){

  #inicio.hero{
    display: flex;
    justify-content: center;

    height: 100svh;
    min-height: 100svh;

    align-items: flex-start;
    padding-top: 10svh; /* SOBE o título sem quebrar */
  }

  #inicio .hero-content{
    padding: 0 18px;
    width: 100%;
  }

  #inicio .hero-content h1{
    font-size: clamp(1.9rem, 7vw, 2.35rem); /* evita ficar gigante */
    line-height: 1.2;
    max-width: 28ch; /* EVITA “1 palavra por linha” */
    margin: 0;
  }

  #inicio .hero-right-meta{
    top: 8% !important;
    right: 6% !important;
    font-size: .95rem !important;
  }

  /* CTA sempre acima do Whats + respeita safe-area do iOS */
  #inicio .hero-bottom-cta{
    bottom: calc(110px + env(safe-area-inset-bottom)) !important;
    gap: 8px !important;
    z-index: 5 !important;
    width: min(92vw, 420px);
  }

  #inicio .hero-after-cta{
    font-size: 1.15rem !important;
    margin: 0 !important;
  }

  #inicio .hero-cta{
    margin-top: 0 !important;
    padding: 1.05rem 2.2rem !important;
    font-size: .78rem !important;
    letter-spacing: .12em !important;
    width: 100%;
    text-align: center;
    white-space: nowrap; /* evita quebrar o texto do botão */
  }
}


/* ---------- TABLET / IPAD (641px a 1024px) ---------- */
@media (min-width: 641px) and (max-width: 1024px){

  #inicio.hero{
    display: flex;
    justify-content: center;

    height: 100svh;
    min-height: 100svh;

    align-items: flex-start;
    padding-top: 14svh; /* equilíbrio bom pro iPad */
  }

  #inicio .hero-content{
    padding: 0 24px;
    max-width: 900px;
    width: 100%;
  }

  #inicio .hero-content h1{
    font-size: clamp(2.3rem, 3.6vw, 3.1rem);
    line-height: 1.22;
    max-width: 34ch; /* mantém leitura parecida com desktop */
    margin: 0;
  }

  #inicio .hero-right-meta{
    top: 10% !important;
    right: 8% !important;
    font-size: 1.05rem !important;
  }

  /* CTA sempre visível + safe-area */
  #inicio .hero-bottom-cta{
    bottom: calc(90px + env(safe-area-inset-bottom)) !important;
    gap: 8px !important;
    z-index: 5 !important;
    width: min(92vw, 520px);
  }

  #inicio .hero-after-cta{
    font-size: 1.35rem !important;
    margin: 0 !important;
  }

  #inicio .hero-cta{
    margin-top: 0 !important;
    padding: 1rem 2.6rem !important;
    font-size: .82rem !important;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
}

/* =========================
   FIM: HERO MOBILE + TABLET (FECHADO)
========================= */

