/* =========================================================
   Scoopie'z – Animated 3D Ice Cream Experience
   Soft 3D depth + continuous motion + delightful interactions
   ========================================================= */

:root {
  --pink: #e11d8d;
  --pink-dark: #be185d;
  --pink-deep: #9d174d;
  --pink-soft: #fdf2f8;
  --pink-glow: rgba(225, 29, 141, 0.38);
  --cream: #fff9f5;
  --cream-2: #fef6f0;
  --ink: #1c1917;
  --muted: #78716c;
  --white: #ffffff;
  --shadow-soft: 0 20px 40px -12px rgba(190, 24, 93, 0.22);
  --shadow-deep: 0 35px 70px -18px rgba(190, 24, 93, 0.32),
                 0 15px 30px -10px rgba(0,0,0,0.12);
  --font: 'Poppins', system-ui, sans-serif;
  --display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.gradient-text {
  background: linear-gradient(135deg, #e11d8d 0%, #be185d 55%, #9d174d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--pink-dark));
  border-radius: 4px;
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 1.1rem 0;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 46px;
  filter: drop-shadow(0 4px 14px rgba(225,29,141,0.28));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-logo:hover img { transform: scale(1.09) rotate(-3deg); }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 50%;
  width: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--pink), #f472b6);
  border-radius: 2px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   padding: 12px 28px;
    min-width: 150px;
    height: 46px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white !important; padding: 0.65rem 1.4rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 8px 24px var(--pink-glow);
}
.nav-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 30px var(--pink-glow);
}
.nav-cta::after { display: none !important; }
.mobile-btn { display: flex; padding: 0.45rem; color: var(--ink); }
.mobile-btn svg { width: 26px; height: 26px; }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(225,29,141,0.1); padding: 1.1rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.9rem 0; font-weight: 500;
  border-bottom: 1px solid #f5f5f4;
}
.mobile-menu a:last-of-type { border: none; }
.mobile-menu .nav-cta { display: flex; justify-content: center; margin-top: 0.8rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; gap: 0.4rem; }
  .mobile-btn { display: none; }
  .nav-logo img { height: 50px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.btn-primary {
  background: linear-gradient(145deg, #f472b6, var(--pink) 45%, var(--pink-dark));
  color: white;
  box-shadow: 0 10px 28px var(--pink-glow), 0 4px 0 var(--pink-deep);
}
.btn-primary:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 38px var(--pink-glow), 0 6px 0 var(--pink-deep);
}
.btn-primary:active { transform: translateY(-1px) scale(0.98); }
.btn-outline {
  background: rgba(255,255,255,0.75); color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: 0 8px 22px rgba(225,29,141,0.12);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--pink); color: white;
  transform: translateY(-5px);
  box-shadow: 0 16px 32px var(--pink-glow);
}
.btn-white {
  background: white; color: var(--pink);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}
.btn-green {
  background: linear-gradient(145deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 10px 26px rgba(22,163,74,0.38), 0 4px 0 #15803d;
}
.btn-green:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(22,163,74,0.45);
}

/* ========== LAYOUT ========== */
.section { padding: 5.5rem 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.label {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-soft), #fce7f3);
  color: var(--pink); font-size: 0.78rem; font-weight: 600;
  padding: 0.4rem 1.1rem; border-radius: 999px; letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 14px rgba(225,29,141,0.12);
  animation: labelPulse 3.5s ease-in-out infinite;
}
@keyframes labelPulse {
  0%,100% { box-shadow: 0 4px 14px rgba(225,29,141,0.12); }
  50% { box-shadow: 0 6px 20px rgba(225,29,141,0.22); }
}
.title {
  font-family: var(--display); font-size: clamp(2.15rem, 4.8vw, 3.25rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 1.1rem; color: var(--ink);
}
.desc {
  color: var(--muted); font-size: 1.08rem; max-width: 36rem; margin: 0 auto 2.4rem;
}

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 7.5rem 0 5rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 75% 35%, rgba(253,242,248,0.95) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 15% 75%, rgba(254,243,199,0.55) 0%, transparent 60%),
    linear-gradient(155deg, #fff9f5 0%, #fdf2f8 48%, #fef3c7 100%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
  animation: orbMove 18s ease-in-out infinite;
}
.orb-1 {
  top: -12%; right: -8%; width: 55%; height: 70%;
  background: radial-gradient(circle, rgba(225,29,141,0.2) 0%, transparent 70%);
}
.orb-2 {
  bottom: -18%; left: -10%; width: 48%; height: 58%;
  background: radial-gradient(circle, rgba(251,191,36,0.16) 0%, transparent 70%);
  animation-delay: -8s;
}
.orb-3 {
  top: 40%; left: 35%; width: 30%; height: 35%;
  background: radial-gradient(circle, rgba(244,114,182,0.12) 0%, transparent 70%);
  animation-delay: -4s;
}
@keyframes orbMove {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-35px) scale(1.06); }
  66% { transform: translate(-20px,25px) scale(0.96); }
}

.hero-grid {
  position: relative; z-index: 5;
  display: grid; gap: 3.5rem; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; }
}

.hero-text { text-align: center; }
@media (min-width: 1024px) { .hero-text { text-align: left; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(14px);
  border: 1px solid rgba(225,29,141,0.15);
  padding: 0.45rem 1.2rem; border-radius: 999px; font-size: 0.82rem;
  font-weight: 600; color: var(--pink); margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(225,29,141,0.12);
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero h1 {
  font-family: var(--display); font-size: clamp(2.9rem, 6.8vw, 4.6rem);
  font-weight: 800; line-height: 1.02; margin-bottom: 1.3rem; color: var(--ink);
}
.hero h1 span { display: block; }
.hero-desc {
  font-size: 1.12rem; color: var(--muted); max-width: 28rem;
  margin: 0 auto 2rem; line-height: 1.75;
}
@media (min-width: 1024px) { .hero-desc { margin-left: 0; } }

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.6rem;
}
@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-stats {
  display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap;
}
@media (min-width: 1024px) { .hero-stats { justify-content: flex-start; } }
.stat {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
  padding: 0.9rem 1.25rem; border-radius: 1.1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05); border: 1px solid rgba(255,255,255,0.65);
  text-align: center; min-width: 92px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  animation: statPop 0.8s cubic-bezier(0.34,1.56,0.64,1) both;
}
.stat:nth-child(2) { animation-delay: 0.12s; }
.stat:nth-child(3) { animation-delay: 0.24s; }
@keyframes statPop {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.stat:hover { transform: translateY(-6px) scale(1.05); }
.stat .num { font-size: 1.75rem; font-weight: 800; color: var(--pink); line-height: 1; }
.stat .lbl { font-size: 0.7rem; color: var(--muted); font-weight: 500; margin-top: 0.25rem; }

/* ========== HERO VISUAL – 3D ANIMATED ========== */
.hero-visual {
  position: relative; display: flex; justify-content: center;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.hero-main {
  width: 100%; max-width: 460px; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; position: relative;
  box-shadow:
    0 50px 100px -28px rgba(225,29,141,0.42),
    0 25px 50px -12px rgba(0,0,0,0.18),
    0 0 0 12px rgba(255,255,255,0.78),
    0 0 0 24px rgba(225,29,141,0.09),
    0 0 0 38px rgba(225,29,141,0.04);
  animation: heroFloat 9s ease-in-out infinite;
  transition: transform 0.15s ease-out;
}
.hero-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1);
}
.hero-main:hover img { transform: scale(1.07); }

.hero-ring {
  position: absolute; inset: -18px; border-radius: 50%;
  border: 2px dashed rgba(225,29,141,0.22);
  animation: spinSlow 28s linear infinite;
  pointer-events: none;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-float {
  position: absolute; border-radius: 1.35rem; overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18), 0 8px 18px rgba(225,29,141,0.18);
  animation: cardFloat 7.5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  will-change: transform;
}
.hero-float:hover {
  transform: scale(1.14) translateY(-10px) rotate(0deg) !important;
  z-index: 20;
  box-shadow: 0 30px 55px rgba(0,0,0,0.22);
}
.hero-float img { width: 100%; height: 100%; object-fit: cover; }
.hf1 { width: 118px; height: 118px; top: 1%; left: -9%; animation-delay: -1.2s; }
.hf2 { width: 98px; height: 98px; bottom: 5%; right: -10%; animation-delay: -3.8s; }
.hf3 { width: 78px; height: 78px; top: 38%; right: -14%; animation-delay: -5.8s; }

@keyframes heroFloat {
  0%,100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-20px) rotateX(3deg) rotateY(-2deg); }
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}
@media (max-width: 640px) {
  .hero-float, .hero-ring { display: none; }
}

/* ========== MARQUEE ========== */
.marquee-bar {
  background: linear-gradient(90deg, var(--pink-deep), var(--pink), #f472b6, var(--pink), var(--pink-deep));
  color: white; padding: 0.95rem 0; overflow: hidden; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(225,29,141,0.32);
  position: relative;
}
.marquee-bar::before, .marquee-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2;
}
.marquee-bar::before { left: 0; background: linear-gradient(90deg, var(--pink-deep), transparent); }
.marquee-bar::after { right: 0; background: linear-gradient(-90deg, var(--pink-deep), transparent); }
.marquee { display: inline-flex; animation: scroll 28s linear infinite; }
.marquee span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 1.8rem; font-size: 0.92rem; font-weight: 500;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== FLAVOR CARDS ========== */
.flavor-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.8rem;
}
@media (min-width: 640px) { .flavor-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .flavor-grid { grid-template-columns: repeat(3,1fr); gap: 2rem; } }
@media (min-width: 1280px) {
  .flavors-page-grid { grid-template-columns: repeat(4,1fr) !important; }
}

.card {
  background: white; border-radius: 1.7rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  transform-style: preserve-3d;
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: 1.7rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.45) 0%, transparent 50%);
  pointer-events: none; z-index: 2;
}
.card:hover {
  transform: translateY(-18px) scale(1.03);
  box-shadow: var(--shadow-deep);
}
.card-img {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.card:hover .card-img img { transform: scale(1.12); }
.card-badge {
  position: absolute; top: 0.95rem; left: 0.95rem; z-index: 3;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(10px);
  padding: 0.32rem 0.85rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600; color: var(--pink);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.card-body { padding: 1.35rem 1.45rem 1.55rem; position: relative; z-index: 1; }
.card-body h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }
.card-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.9rem; line-height: 1.5; }
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 0.28rem 0.8rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--pink-soft), #fce7f3);
  color: var(--pink);
}

/* ========== STORY ========== */
.story-grid {
  display: grid; gap: 3.5rem; align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; } }
.story-img {
  position: relative; border-radius: 1.9rem; overflow: hidden;
  box-shadow: var(--shadow-deep);
  transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.story-img:hover { transform: scale(1.03) rotate(-1deg); }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
}
.story-cap {
  position: absolute; bottom: 1.7rem; left: 1.7rem; right: 1.7rem; color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.story-cap h3 { font-family: var(--display); font-size: 1.55rem; font-weight: 700; }
.feature-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.feature-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  padding: 0.7rem 1.2rem; border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  font-size: 0.85rem; font-weight: 600;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-pill:hover { transform: translateY(-5px) scale(1.04); }
.feature-pill .ic {
  width: 2.2rem; height: 2.2rem;
  background: linear-gradient(135deg, var(--pink-soft), #fce7f3);
  border-radius: 0.75rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; box-shadow: 0 4px 12px rgba(225,29,141,0.15);
}

/* ========== WHY ========== */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4,1fr); gap: 1.6rem; } }
.why-card {
  background: white; border-radius: 1.6rem; padding: 2.15rem 1.5rem;
  text-align: center; border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), #f472b6, var(--pink));
  opacity: 0; transition: opacity 0.35s;
}
.why-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-deep);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 3.9rem; height: 3.9rem; margin: 0 auto 1.3rem; border-radius: 1.3rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(-6deg); }
.why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.45rem; }
.why-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }

/* ========== CTA ========== */
.cta {
  background: linear-gradient(145deg, #e11d8d 0%, #be185d 45%, #9d174d 100%);
  color: white; padding: 5.2rem 0; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -35%; right: -12%;
  width: 52%; height: 170%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.13) 0%, transparent 65%);
  animation: orbMove 14s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 5; text-align: center; max-width: 42rem; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--display); font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 700; margin-bottom: 1rem;
}
.cta-inner p { font-size: 1.1rem; opacity: 0.93; margin-bottom: 2rem; line-height: 1.65; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: #d1d5db; padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 2rem; align-items: center; text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); }
.footer-brand .name { font-weight: 700; font-size: 1.15rem; color: white; }
.footer-brand .tag { font-size: 0.74rem; color: #9ca3af; }
.footer-links { display: flex; gap: 1.7rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.9rem; color: #9ca3af; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 0.8rem; color: #6b7280; }

/* ========== WHATSAPP ========== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 3.9rem; height: 3.9rem;
  background: linear-gradient(145deg, #25d366, #1da851);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.48), 0 4px 0 #15803d;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  animation: waPulse 2.6s infinite;
}
.wa-float:hover {
  transform: scale(1.16) translateY(-5px);
  box-shadow: 0 20px 42px rgba(37,211,102,0.55);
}
.wa-float svg { width: 1.85rem; height: 1.85rem; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 12px 32px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 32px rgba(37,211,102,0.45); }
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0; transform: translateY(42px) scale(0.96);
  transition: all 0.85s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(253,242,248,0.95) 0%, transparent 70%),
    linear-gradient(180deg, var(--pink-soft) 0%, var(--cream) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero h1 {
  font-family: var(--display); font-size: clamp(2.5rem, 5.8vw, 3.7rem);
  font-weight: 800; margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 34rem; margin: 0 auto; }

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.3rem; border-radius: 999px; font-size: 0.88rem; font-weight: 500;
  background: white; color: var(--ink); border: 1px solid #e7e5e4;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.filter-btn:hover {
  border-color: var(--pink); color: var(--pink);
  transform: translateY(-3px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white; border-color: transparent;
  box-shadow: 0 8px 22px var(--pink-glow);
  transform: translateY(-3px);
}

/* Values */
.values { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .values { grid-template-columns: repeat(3,1fr); } }
.value {
  background: white; border-radius: 1.6rem; padding: 2.15rem;
  border: 1px solid rgba(255,255,255,0.85); box-shadow: var(--shadow-soft);
  transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.value:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-deep);
}
.value .n {
  font-size: 2.5rem; font-weight: 800; color: var(--pink); line-height: 1;
  margin-bottom: 0.8rem;
}
.value h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.value p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; gap: 1.6rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3,1fr); } }
.contact-card {
  background: white; border-radius: 1.7rem; padding: 2.35rem 1.7rem;
  text-align: center; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.85);
  transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-deep);
}
.contact-card .icon {
  width: 3.8rem; height: 3.8rem; margin: 0 auto 1.3rem; border-radius: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-card:hover .icon { transform: scale(1.14) rotate(-5deg); }
.contact-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.35rem; }
.contact-card p { font-size: 0.9rem; color: var(--muted); }

/* Utils */
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
main { min-height: 65vh; }
