*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lavanda: #c5b8f0;
  --lavanda-claro: #e8e2ff;
  --rosa: #f0b8d4;
  --rosa-claro: #fce8f3;
  --lilas-bg: #f0ecff;
  --roxo-escuro: #4a3880;
  --rosa-escuro: #8c3a6a;
  --texto: #2e2442;
  --texto-muted: #6b5e8a;
  --branco: #ffffff;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--texto);
  background: var(--lilas-bg);
  overflow-x: hidden;
}

@keyframes lotus-float { 0%,100%{transform:translate(-50%,-50%) scale(1) rotate(0deg)} 50%{transform:translate(-50%,-52%) scale(1.04) rotate(3deg)} }
@keyframes petal-bloom { 0%,100%{opacity:0.7;transform:rotate(var(--r)) scaleY(0.85)} 50%{opacity:1;transform:rotate(var(--r)) scaleY(1.08)} }
@keyframes particle-up { 0%{opacity:0.9;transform:translateY(0) translateX(0)} 100%{opacity:0;transform:translateY(-110px) translateX(var(--dx))} }
@keyframes shimmer-text { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.hero {
  min-height: 100vh;
  background: radial-gradient(ellipse at 40% 30%, #3a2560 0%, #2a1a4e 35%, #1a0e35 70%, #0f0820 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
}

.hero-stars {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 8%,  rgba(197,184,240,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 28%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(240,184,212,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 68%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 72%, rgba(197,184,240,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 52% 52%, rgba(240,184,212,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 8%  82%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
}
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(240,184,212,0.8);
  animation: particle-up 3.5s ease-out infinite;
  bottom: 42%; left: 50%;
}
.hero-particles span:nth-child(1) { --dx:-35px; animation-delay:0s;   left:44%; }
.hero-particles span:nth-child(2) { --dx: 40px; animation-delay:.9s;  left:56%; width:3px; height:3px; }
.hero-particles span:nth-child(3) { --dx:-50px; animation-delay:1.8s; left:47%; background:rgba(197,184,240,0.8); }
.hero-particles span:nth-child(4) { --dx: 30px; animation-delay:2.7s; left:53%; width:2px; height:2px; }

.lotus-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vmax;
  height: 100vmax;
  pointer-events: none;
  z-index: 0;
  animation: lotus-float 7s ease-in-out infinite;
}
.lotus-bg svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 40px rgba(197,184,240,0.2));
}

.petal { transform-origin: 50% 78%; animation: petal-bloom 5s ease-in-out infinite; }
.petal:nth-child(1){--r:0deg;animation-delay:0s}
.petal:nth-child(2){--r:30deg;animation-delay:.25s}
.petal:nth-child(3){--r:60deg;animation-delay:.5s}
.petal:nth-child(4){--r:90deg;animation-delay:.75s}
.petal:nth-child(5){--r:120deg;animation-delay:1s}
.petal:nth-child(6){--r:150deg;animation-delay:1.25s}
.petal:nth-child(7){--r:180deg;animation-delay:1.5s}
.petal:nth-child(8){--r:210deg;animation-delay:1.75s}
.petal:nth-child(9){--r:240deg;animation-delay:2s}
.petal:nth-child(10){--r:270deg;animation-delay:2.25s}
.petal:nth-child(11){--r:300deg;animation-delay:2.5s}
.petal:nth-child(12){--r:330deg;animation-delay:2.75s}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(197,184,240,0.3);
  margin-bottom: 24px;
  font-weight: 600;
  position: relative; z-index: 3;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.1;
  color: white;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero h1 span {
  font-style: italic;
  background: linear-gradient(135deg, #f0b8d4, #c5b8f0, #f0b8d4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s ease infinite;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-top: 16px;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
  background: linear-gradient(135deg, #f0b8d4, #c5b8f0);
  color: #2a1a4e;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(197,184,240,0.35);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(197,184,240,0.5); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(197,184,240,0.4);
  padding: 15px 36px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { background: rgba(197,184,240,0.12); }

.hero-phone {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-phone svg { width: 18px; height: 18px; fill: rgba(240,184,212,0.8); }

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(197,184,240,0.5), transparent);
  margin: 32px auto 0;
  position: relative; z-index: 3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.photos-strip {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 60px 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.photos-strip img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 56, 128, 0.08);
}

.benefits-bg, .price-bg, .gallery-bg {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--roxo-escuro);
}
.section-title h2 span {
  color: var(--rosa-escuro);
  font-style: italic;
}
.section-subtitle {
  text-align: center;
  color: var(--texto-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--branco);
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 56, 128, 0.04);
  transition: transform 0.3s ease;
}
.benefit-card:hover { transform: translateY(-6px); }
.benefit-icon { font-size: 42px; display: block; margin-bottom: 16px; }
.benefit-card h3 { color: var(--roxo-escuro); font-size: 20px; margin-bottom: 12px; }
.benefit-card p { color: var(--texto-muted); font-size: 14px; line-height: 1.6; }

.price-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.price-card {
  background: var(--branco);
  padding: 40px;
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(74, 56, 128, 0.04);
}
.price-card.destaque {
  background: linear-gradient(135deg, #fce8f3 0%, #e8e2ff 100%);
  border: 2px solid var(--lavanda);
}
.price-card h3 {
  color: var(--roxo-escuro);
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--lilas-bg);
  padding-bottom: 12px;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 16px;
}
.item-name { color: var(--texto); font-weight: 600; }
.item-dots { flex: 1; border-bottom: 2px dotted var(--lavanda); margin: 0 12px; opacity: 0.4; }
.item-price { color: var(--rosa-escuro); font-weight: 700; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 8px 24px rgba(74, 56, 128, 0.04);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 78, 0.85), transparent 70%);
  display: flex; align-items: flex-end;
  padding: 24px; color: var(--branco);
  font-size: 18px; font-weight: 600;
}

.booking-bg {
  background: linear-gradient(135deg, #2a1a4e 0%, #0f0820 100%);
  color: var(--branco);
  padding: 90px 20px;
  text-align: center;
}
.booking-inner h2 { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 16px; line-height: 1.2; }
.booking-inner h2 span { color: var(--rosa); font-style: italic; }
.booking-inner p { color: rgba(255, 255, 255, 0.7); margin-bottom: 40px; font-size: 16px; }

.booking-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 45px; }
.booking-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 184, 240, 0.15);
  padding: 24px 30px;
  border-radius: 20px;
  min-width: 220px;
}
.bc-icon { font-size: 26px; margin-bottom: 10px; }
.bc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255, 255, 255, 0.4); margin-bottom: 6px; }
.bc-value { font-size: 16px; font-weight: 600; color: var(--lavanda-claro); }

.btn-rosa {
  background: linear-gradient(135deg, #f0b8d4, #e8a0c4);
  color: #2a1a4e;
  padding: 18px 44px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(240, 184, 212, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 16px;
}
.btn-rosa:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(240, 184, 212, 0.5); }

footer {
  background: #090414;
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(197, 184, 240, 0.05);
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 30px; color: var(--branco); margin-bottom: 12px; }
.footer-logo span { color: var(--rosa); font-style: italic; }

/* ── Footer novo ── */
footer {
  background: var(--texto);
  padding: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 200px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-align: left;
}
.footer-brand .footer-logo span { color: var(--rosa); font-style: italic; }
.footer-desc { color: rgba(255,255,255,.45); font-size: 14px; font-weight: 300; line-height: 1.7; max-width: 240px; margin-left: -30px; }
.footer-col h4 {
  color: var(--rosa);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col p { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 300; line-height: 1.9; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; align-items: flex-start; margin-left: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--rosa); color: var(--rosa); background: rgba(240,184,212,.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 40px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 12px; }
