/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 247, 240, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 107, 138, 0.16);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 12px -4px rgba(143,14,26,.4); }
.brand-name {
  font-family: var(--f-script);
  font-size: 1.7rem;
  color: var(--cereja);
  line-height: 1;
  padding-top: 6px;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  font-weight: 700;
  font-size: .98rem;
  color: var(--chocolate);
  position: relative;
  transition: color .15s;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--rosa-cereja);
  border-radius: 2px; transition: width .22s ease;
}
.nav a:hover { color: var(--cereja); }
.nav a:hover::after { width: 100%; }

.header .btn { padding: 12px 20px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--cereja); }
.menu-toggle svg { width: 30px; height: 30px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  background: var(--creme);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px -20px rgba(91,52,39,.4);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.aberto { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--f-titulo);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cereja);
  padding: 14px 0;
  border-bottom: 1px solid rgba(217,107,138,.18);
}
.mobile-nav .fechar { align-self: flex-end; background: none; border: none; cursor: pointer; color: var(--cereja); margin-bottom: 10px; }
.mobile-nav .fechar svg { width: 28px; height: 28px; }
.overlay-nav {
  position: fixed; inset: 0; background: rgba(74,42,32,.45);
  z-index: 150; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.overlay-nav.aberto { opacity: 1; pointer-events: auto; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 85% 0%, var(--rosa-claro-2) 0%, transparent 55%),
    linear-gradient(160deg, var(--creme) 0%, var(--creme-2) 100%);
  overflow: hidden;
  padding: 70px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(217,107,138,.3);
  color: var(--cereja);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  box-shadow: var(--sombra-suave);
}
.hero-tag .cereja-icon { font-size: 1rem; }
.hero h1 {
  font-family: var(--f-titulo);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.04;
  color: var(--cereja);
  margin-top: 22px;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero h1 .script {
  display: block;
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--rosa-cereja);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.05;
  margin-top: 10px;
}
.hero p.lead {
  font-size: 1.18rem;
  color: var(--texto-suave);
  max-width: 46ch;
  margin-top: 24px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-mini {
  display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap;
}
.hero-mini .mini-item { display: flex; flex-direction: column; }
.hero-mini .num { font-family: var(--f-titulo); font-weight: 700; font-size: 1.9rem; color: var(--rosa-cereja); line-height: 1; }
.hero-mini .lbl { font-size: .82rem; font-weight: 700; color: var(--texto-suave); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* Hero visual — colagem de fotos */
.hero-visual { position: relative; aspect-ratio: 1 / 1; }
.hero-foto-main {
  position: absolute;
  inset: 6% 4% 6% 6%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--sombra-forte);
  border: 8px solid #fff;
  transform: rotate(-2.5deg);
}
.hero-foto-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-foto-2 {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  right: -2%;
  bottom: 4%;
  border-radius: 24px;
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: var(--sombra-card);
  transform: rotate(4deg);
}
.hero-foto-2 img { width: 100%; height: 100%; object-fit: cover; }
.hero-selo {
  position: absolute;
  top: -3%;
  right: 2%;
  width: 34%;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 12px 22px rgba(143,14,26,.35));
  animation: flutua 5s ease-in-out infinite;
}
@keyframes flutua { 0%,100%{ transform: translateY(0) rotate(-4deg);} 50%{ transform: translateY(-12px) rotate(-4deg);} }

.hero-badge-amor {
  position: absolute;
  left: -4%;
  bottom: 16%;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--sombra-card);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  transform: rotate(-3deg);
}
.hero-badge-amor .coracao { width: 38px; height: 38px; border-radius: 50%; background: var(--rosa-claro); display: grid; place-items: center; color: var(--cereja); }
.hero-badge-amor .t1 { font-weight: 800; font-size: .95rem; color: var(--cereja); line-height: 1.1; }
.hero-badge-amor .t2 { font-size: .76rem; color: var(--texto-suave); font-weight: 700; }
