* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --pink: #ff5d8f;
  --pink-dark: #e63e72;
  --yellow: #ffd166;
  --teal: #06d6a0;
  --purple: #7c5cff;
  --orange: #ff9248;
  --ink: #2b2140;
  --paper: #fffaf3;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, .site-logo, .site-footer-logo {
  font-family: 'Baloo 2', sans-serif;
}

/* ==========================================================
   SCROLLBAR
========================================================== */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--pink) #fdeee0;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #fdeee0; }
::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 999px;
  border: 2px solid #fdeee0;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background-color: var(--pink-dark); }

/* ==========================================================
   PLACEHOLDERS DE FOTO (ph-tile)
   Blocos coloridos com ícone no lugar das fotos reais do
   cliente. Trocar por <img> quando as fotos chegarem.
========================================================== */
.ph-tile, .ticker-item, .contact-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
}
.ph-1 { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); }
.ph-2 { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.ph-3 { background: linear-gradient(135deg, var(--teal), #04a97f); }
.ph-4 { background: linear-gradient(135deg, var(--purple), #5b3fd6); }
.ph-5 { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.ph-6 { background: linear-gradient(135deg, #4ecdc4, var(--purple)); }

/* ==========================================================
   HERO / PARALLAX DE FESTA
   Mesma estratégia do voando-alto: wrapper alto (220vh) +
   .hero-sticky fixo por dentro; JS escreve --p (0 a 1) com o
   progresso do scroll e cada camada usa --p num calc() pra se
   mover em velocidade/direção diferente.
========================================================== */
.hero-wrapper {
  position: relative;
  height: 220vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff2e2;
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}

/* Camada 0 — céu em degradê pastel */
.hero-sky {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9) 0%, transparent 40%),
    linear-gradient(180deg, #fff2e2 0%, #ffe0ef 45%, #ffd3e6 100%);
}

/* confetes soltos flutuando o tempo todo */
.hero-confetti span {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.8;
  animation: confetti-fall 7s linear infinite;
}
.hero-confetti span:nth-child(1) { left: 6%;  top: -10%; background: var(--pink); animation-delay: 0s; }
.hero-confetti span:nth-child(2) { left: 14%; top: -20%; background: var(--yellow); animation-delay: 1.1s; }
.hero-confetti span:nth-child(3) { left: 24%; top: -5%;  background: var(--teal); animation-delay: 2.3s; }
.hero-confetti span:nth-child(4) { left: 33%; top: -25%; background: var(--purple); animation-delay: 0.6s; }
.hero-confetti span:nth-child(5) { left: 44%; top: -15%; background: var(--orange); animation-delay: 3.1s; }
.hero-confetti span:nth-child(6) { left: 55%; top: -30%; background: var(--pink); animation-delay: 1.8s; }
.hero-confetti span:nth-child(7) { left: 64%; top: -8%;  background: var(--teal); animation-delay: 2.9s; }
.hero-confetti span:nth-child(8) { left: 73%; top: -22%; background: var(--yellow); animation-delay: 0.3s; }
.hero-confetti span:nth-child(9) { left: 83%; top: -12%; background: var(--purple); animation-delay: 3.6s; }
.hero-confetti span:nth-child(10){ left: 90%; top: -28%; background: var(--orange); animation-delay: 1.4s; }
.hero-confetti span:nth-child(11){ left: 48%; top: -35%; background: var(--pink); animation-delay: 4.1s; }
.hero-confetti span:nth-child(12){ left: 10%; top: -32%; background: var(--teal); animation-delay: 2.1s; }
@keyframes confetti-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0.3; }
}

/* Camada 1 — balões: flutuam sozinhos (animação) e sobem/somem
   conforme --p avança, igual o drone do voando-alto */
.hero-balloons { z-index: 3; pointer-events: none; }
.balloon {
  position: absolute;
  width: clamp(52px, 6vw, 84px);
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 50% 50% / 46% 46% 54% 54%;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.15));
  translate: 0 calc(var(--p, 0) * -14vh);
  opacity: calc(1 - var(--p, 0) * 1.3);
}
.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 2px;
  height: 60px;
  background: rgba(43,33,64,0.25);
  transform: translateX(-50%);
}
.balloon--pink   { top: 18%; left: 12%; background: radial-gradient(circle at 35% 30%, #ffb0c9, var(--pink)); animation: balloon-float 5.5s ease-in-out infinite; }
.balloon--yellow { top: 12%; left: 78%; background: radial-gradient(circle at 35% 30%, #ffe9b0, var(--yellow)); animation: balloon-float 4.8s ease-in-out infinite 0.4s; }
.balloon--teal   { top: 30%; left: 85%; background: radial-gradient(circle at 35% 30%, #9df3da, var(--teal)); animation: balloon-float 6.2s ease-in-out infinite 0.9s; }
.balloon--purple { top: 26%; left: 4%;  background: radial-gradient(circle at 35% 30%, #c9baff, var(--purple)); animation: balloon-float 5s ease-in-out infinite 1.3s; }
@keyframes balloon-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

/* Camada 2 — título: fica parado, quem sobe é o castelinho (camada 3) */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 6vh;
  z-index: 10;
}
.hero-kicker {
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pink-dark);
}
.hero-text h1 {
  font-size: clamp(2.5rem, 8.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  background: linear-gradient(90deg, var(--pink-dark), var(--purple) 45%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(255,93,143,0.25));
}
.hero-text p {
  margin-top: 0.75rem;
  color: var(--ink);
  opacity: 0.75;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
}

/* Camada 3 — castelinho inflável em primeiro plano, feito só em
   CSS (grama + torres listradas), sem depender de foto. Mesma
   técnica da montanha do voando-alto: começa abaixo da tela e
   desliza pra cima conforme --p avança, cobrindo o título. */
.hero-fg-castle {
  z-index: 30;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 46vh;
  transform: translateY(calc(80% - var(--p, 0) * 80%));
}
.castle-grass {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, #35c97a 0%, #1f9d5b 100%);
  border-radius: 50% 50% 0 0 / 18% 18% 0 0;
}
.castle-tower {
  position: absolute;
  bottom: 30%;
  width: 15%;
  aspect-ratio: 1 / 1.5;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.18));
}
.castle-tower svg {
  display: block;
  width: 100%;
  height: 100%;
}
.castle-tower--1 { left: 4%;  height: 46%; --c1: var(--pink); --c2: #fff; }
.castle-tower--2 { left: 21%; height: 62%; --c1: var(--yellow); --c2: #fff; }
.castle-tower--3 { left: 40%; height: 78%; --c1: var(--purple); --c2: #fff; width: 20%; }
.castle-tower--4 { left: 63%; height: 62%; --c1: var(--teal); --c2: #fff; }
.castle-tower--5 { left: 82%; height: 46%; --c1: var(--orange); --c2: #fff; }
.castle-flag {
  position: absolute;
  bottom: calc(30% + 78% - 6%);
  left: 47%;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  animation: flag-wave 2.2s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flag-wave {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}

/* indicador de scroll */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 3.5vh;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: calc(1 - var(--p, 0) * 3);
  pointer-events: none;
}
.scroll-cue span {
  width: 22px;
  height: 36px;
  border: 2px solid var(--ink);
  opacity: 0.5;
  border-radius: 12px;
  position: relative;
}
.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--pink-dark);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollCueDot 1.6s ease-in-out infinite;
}
.scroll-cue p {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  font-weight: 600;
}
@keyframes scrollCueDot {
  0%   { transform: translate(-50%, 0);   opacity: 1; }
  60%  { transform: translate(-50%, 14px); opacity: 0; }
  61%  { transform: translate(-50%, 0);    opacity: 0; }
  100% { transform: translate(-50%, 0);    opacity: 1; }
}

/* ==========================================================
   SECTION 2 — SERVIÇOS
========================================================== */
.services-section {
  padding: 6rem clamp(1.25rem, 5vw, 4rem);
  background: linear-gradient(180deg, #1f9d5b 0%, #35c97a 100%);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.supheading {
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pink-dark);
}
.supheading--light { color: var(--yellow); }
.section-heading {
  margin: 0 0 3rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.service-card {
  display: block;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(43,33,64,0.08);
  border: 1px solid rgba(43,33,64,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(255,93,143,0.22);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #ffe1ec, #ffd166);
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
}
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(43,33,64,0.7);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   SECTION 3 — SOBRE
========================================================== */
.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
}
.about-video-wrap {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 30%;
  right: 0;
  transform: translateY(-50%);
  aspect-ratio: 16 / 9;
  max-height: 90%;
  overflow: hidden;
  border-top-left-radius: 6rem;
  border-bottom-left-radius: 6rem;
}
.about-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-smoke {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(124,92,255,0.6), rgba(230,62,114,0.5) 55%, rgba(255,146,72,0.4));
  mix-blend-mode: multiply;
}
.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(20,14,34,0.94) 0%, rgba(20,14,34,0.82) 42%, rgba(20,14,34,0.5) 68%, rgba(20,14,34,0.28) 100%),
    linear-gradient(0deg, rgba(20,14,34,0.4) 0%, rgba(20,14,34,0) 30%);
}
.about-balloon {
  position: absolute;
  z-index: 3;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  font-size: clamp(6rem, 15vw, 11rem);
  line-height: 1;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}
.about-content {
  position: relative;
  z-index: 4;
  max-width: 640px;
  padding: 4rem 2rem;
  margin-left: min(6vw, 4rem);
  color: #fff;
}
.about-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.about-content p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  margin: 0 0 1.1rem;
  max-width: 50ch;
}
@media (max-width: 640px) {
  .about-content { margin-left: 0; padding: 3rem 1.5rem; text-align: left; }
  .about-balloon { display: none; }
  .about-video-wrap { left: 0; }
}

/* ==========================================================
   SECTION 4 — SCROLL HORIZONTAL (galeria de momentos)
========================================================== */
.hscroll-wrapper {
  position: relative;
  height: 400vh;
}
.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff2e2;
}
.hscroll-track {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: 0 8vw;
  will-change: transform;
}
.hscroll-text-block {
  flex: 0 0 auto;
  width: min(90vw, 480px);
  padding-right: 2rem;
}
.hscroll-text-block h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.4rem 0 0;
}
.hscroll-sub {
  margin-top: 1rem;
  color: rgba(43,33,64,0.65);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}

.hscroll-item {
  flex: 0 0 auto;
  height: min(60vh, 520px);
  aspect-ratio: 3 / 4;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f3e6d8;
  box-shadow: 0 20px 40px rgba(43,33,64,0.12);
  transition: transform 0.05s linear;
}
.ph-tile { width: 100%; height: 100%; }

.hscroll-item--up   { transform: translateY(calc(-50px + var(--hp, 0) * 100px)); }
.hscroll-item--down { transform: translateY(calc(50px - var(--hp, 0) * 100px)); }

/* ==========================================================
   SECTION 5 — GALERIA / TICKER SCROLL
========================================================== */
.ticker-wrapper {
  position: relative;
  height: 340vh;
}
.ticker-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.ticker-bg-text {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ticker-bg-text span {
  font-size: clamp(3rem, 11vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.08);
}
.ticker-grid {
  position: relative;
  z-index: 10;
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  height: 78vh;
  width: 100%;
  padding: 0 4vw;
}
.ticker-col {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  overflow: hidden;
}
.ticker-col-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ticker-col:nth-child(1) .ticker-col-track { transform: translateY(calc(-50% - 90px + var(--gp, 0) * -950px)); }
.ticker-col:nth-child(2) .ticker-col-track { transform: translateY(calc(-50% + 130px + var(--gp, 0) * 800px)); }
.ticker-col:nth-child(3) .ticker-col-track { transform: translateY(calc(-50% - 180px + var(--gp, 0) * -750px)); }
.ticker-col:nth-child(4) .ticker-col-track { transform: translateY(calc(-50% + 60px + var(--gp, 0) * 900px)); }

.ticker-item {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .ticker-grid { gap: 0.75rem; padding: 0 3vw; }
}
@media (max-width: 560px) {
  .ticker-bg-text span { font-size: clamp(2.25rem, 13vw, 4rem); }
  .ticker-col:nth-child(2), .ticker-col:nth-child(3) { display: none; }
  .ticker-grid { gap: 4vw; }
}

/* ==========================================================
   SECTION 6 — CONTATO (baralho que se espalha)
========================================================== */
.contact-wrapper {
  position: relative;
  height: 260vh;
}
.contact-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff2e2;
}
.contact-photo-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(100px, 12.5vw, 190px);
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(43,33,64,0.22);
  will-change: transform;
  color: rgba(255,255,255,0.85);
}
.contact-photo:nth-child(1) {
  width: clamp(115px, 13.5vw, 205px);
  transform: translate(-50%, -50%)
    translate(calc(-6px + 0vw * var(--cp, 0)), calc(-4px + (-32vh) * var(--cp, 0)))
    rotate(calc(-8deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(2) {
  width: clamp(90px, 10.5vw, 160px);
  transform: translate(-50%, -50%)
    translate(calc(5px + (26vw) * var(--cp, 0)), calc(-6px + (-23vh) * var(--cp, 0)))
    rotate(calc(6deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(3) {
  width: clamp(125px, 14.5vw, 215px);
  transform: translate(-50%, -50%)
    translate(calc(-4px + (36vw) * var(--cp, 0)), calc(6px + 0vh * var(--cp, 0)))
    rotate(calc(-5deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(4) {
  width: clamp(95px, 11vw, 170px);
  transform: translate(-50%, -50%)
    translate(calc(7px + (26vw) * var(--cp, 0)), calc(4px + (23vh) * var(--cp, 0)))
    rotate(calc(7deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(5) {
  width: clamp(110px, 13vw, 195px);
  transform: translate(-50%, -50%)
    translate(calc(-7px + 0vw * var(--cp, 0)), calc(5px + (32vh) * var(--cp, 0)))
    rotate(calc(5deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(6) {
  width: clamp(100px, 11.5vw, 175px);
  transform: translate(-50%, -50%)
    translate(calc(4px + (-26vw) * var(--cp, 0)), calc(-5px + (23vh) * var(--cp, 0)))
    rotate(calc(-7deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(7) {
  width: clamp(120px, 14vw, 210px);
  transform: translate(-50%, -50%)
    translate(calc(-5px + (-36vw) * var(--cp, 0)), calc(-4px + 0vh * var(--cp, 0)))
    rotate(calc(8deg * (1 - var(--cp, 0))));
}
.contact-photo:nth-child(8) {
  width: clamp(92px, 10.5vw, 165px);
  transform: translate(-50%, -50%)
    translate(calc(6px + (-26vw) * var(--cp, 0)), calc(-6px + (-23vh) * var(--cp, 0)))
    rotate(calc(-6deg * (1 - var(--cp, 0))));
}

.contact-content {
  position: relative;
  z-index: 10;
  max-width: 560px;
  padding: 2rem;
  text-align: center;
  opacity: calc((var(--cp, 0) - 0.35) / 0.45);
  transform: scale(calc(0.88 + var(--cp, 0) * 0.12));
  transition: opacity 0.05s linear;
}
.contact-wrapper:not(.is-open) .contact-content { pointer-events: none; }

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.contact-content p {
  color: rgba(43,33,64,0.7);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  margin: 0 0 2rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-contact svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; }
.btn-contact:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-contact--whatsapp { background: #25d366; color: #0a1f14; }
.btn-contact--instagram { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.btn-contact--phone { background: var(--ink); }

@media (max-width: 640px) {
  .contact-actions { flex-direction: column; align-items: stretch; }
  .btn-contact { justify-content: center; }
}

/* ==========================================================
   HEADER / NAV FIXO (glass flutuante)
========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 0;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.site-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(43,33,64,0.08);
  box-shadow: 0 10px 34px rgba(43,33,64,0.14);
}
.site-logo {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.site-logo span { color: var(--pink-dark); }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a {
  color: rgba(43,33,64,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--pink-dark); }
.site-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.site-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  background: var(--pink-dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-header-cta:hover { background: #d02e5f; transform: translateY(-1px); }

.site-menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(43,33,64,0.15);
  background: rgba(43,33,64,0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.site-menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 1400px;
  margin: 0.6rem auto 0;
  padding: 0.75rem 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(43,33,64,0.08);
  box-shadow: 0 10px 34px rgba(43,33,64,0.16);
}
.site-mobile-nav.is-open { display: flex; }
.site-mobile-nav a {
  color: rgba(43,33,64,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(43,33,64,0.08);
}
.site-mobile-nav a:last-child { border-bottom: none; }
.site-mobile-nav-cta {
  margin-top: 0.5rem;
  text-align: center;
  border-radius: 999px !important;
  background: var(--pink-dark);
  color: #fff !important;
  border-bottom: none !important;
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header-cta { display: none; }
  .site-menu-toggle { display: flex; }
}

/* ==========================================================
   FOOTER
========================================================== */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 4.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
}
.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.site-footer-brand { max-width: 320px; }
.site-footer-logo { font-weight: 800; font-size: 1.1rem; }
.site-footer-brand p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}
.site-footer-links, .site-footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer-links a, .site-footer-social a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.site-footer-links a:hover, .site-footer-social a:hover { color: var(--yellow); }
.site-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.site-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .site-footer-inner { flex-direction: column; align-items: center; gap: 2rem; text-align: center; }
  .site-footer-brand { max-width: none; }
  .site-footer-links, .site-footer-social { align-items: center; }
}
