/* ==========================================================================
   Monimar — Tortas y Cupcakes
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root{
  --pink: #FF65C4;
  --pink-dark: #E83FAE;
  --pink-light: #FFD9F0;
  --purple: #CA79DF;
  --purple-dark: #A94FCB;
  --purple-light: #F0E0FA;
  --cream: #FFF8FC;
  --ink: #4A2545;
  --ink-soft: #7A5678;
  --white: #FFFFFF;

  --gradient-brand: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --gradient-soft: linear-gradient(135deg, var(--pink-light) 0%, var(--purple-light) 100%);

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --shadow-soft: 0 10px 30px rgba(202, 60, 170, 0.12);
  --shadow-strong: 0 20px 50px rgba(202, 60, 170, 0.25);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-med: 400ms;
  --dur-slow: 700ms;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4{ font-family: var(--font-display); margin: 0; color: var(--pink-dark); }
p{ margin: 0; }
section{ position: relative; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-dark);
  background: var(--purple-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-5);
}
.section-head h2{
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-top: var(--space-2);
  line-height: 1.15;
}
.section-head p{
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
#preloader.hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-cake{
  width: 84px;
  height: 84px;
  position: relative;
}
.preloader-cake svg{ width: 100%; height: 100%; }
.preloader-cake .icing{
  transform-origin: center bottom;
  animation: wobble 1.1s ease-in-out infinite;
}
.preloader-cake .cherry{
  animation: bounce-cherry 1.1s ease-in-out infinite;
  transform-origin: center;
}
@keyframes wobble{
  0%, 100%{ transform: scaleY(1); }
  50%{ transform: scaleY(0.92); }
}
@keyframes bounce-cherry{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.preloader-text{
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-align: center;
}
.preloader-bar{
  width: 200px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.35);
  overflow: hidden;
}
.preloader-bar-fill{
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: width 0.25s ease-out;
}
.preloader-sprinkle{
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--white);
  opacity: 0.7;
  animation: sprinkle-fall linear infinite;
}
@keyframes sprinkle-fall{
  0%{ transform: translateY(-20vh) rotate(0deg); opacity: 0; }
  10%{ opacity: 0.8; }
  100%{ transform: translateY(120vh) rotate(360deg); opacity: 0; }
}

/* ==========================================================================
   Particle canvas backgrounds
   ========================================================================== */
.particle-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating decorative shapes across the page */
.floaters{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.floater{
  position: absolute;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(202,60,170,0.18));
  animation: float-drift ease-in-out infinite;
  will-change: transform;
}
@keyframes float-drift{
  0%{ transform: translate(0, 0) rotate(0deg); }
  25%{ transform: translate(14px, -22px) rotate(6deg); }
  50%{ transform: translate(-8px, -10px) rotate(-4deg); }
  75%{ transform: translate(-16px, -28px) rotate(4deg); }
  100%{ transform: translate(0, 0) rotate(0deg); }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: all var(--dur-med) var(--ease-out);
}
.navbar.scrolled{
  padding: 10px 0;
  background: rgba(255, 248, 252, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(202,60,170,0.1);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--pink-dark);
}
.nav-logo img{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform var(--dur-med) var(--ease-out);
}
.navbar:not(.scrolled) .nav-logo{ color: var(--white); }
.navbar:not(.scrolled) .nav-links a{ color: var(--white); }
.navbar:not(.scrolled) .nav-links a::after{ background: var(--white); }

.nav-links{
  display: flex;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 6px 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--pink-dark);
  border-radius: var(--radius-full);
  transition: width var(--dur-med) var(--ease-out);
}
.nav-links a:hover::after{ width: 100%; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-brand);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.nav-cta:hover{ transform: translateY(-2px) scale(1.03); box-shadow: var(--shadow-strong); }
.nav-cta::after{ display: none; }

.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  position: relative;
  transition: all var(--dur-fast) var(--ease-out);
}
.nav-toggle span::before{ position: absolute; top: -7px; }
.nav-toggle span::after{ position: absolute; top: 7px; }
.nav-toggle.open span{ background: transparent; }
.nav-toggle.open span::before{ transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after{ transform: rotate(-45deg); top: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 var(--space-6);
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}
.hero-inner{
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
}
.hero-copy .eyebrow{
  background: rgba(255,255,255,0.22);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero-copy h1{
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  margin-top: var(--space-2);
}
.hero-copy h1 .accent{
  color: #FFF3B0;
  position: relative;
  display: inline-block;
}
.hero-copy p{
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-top: var(--space-3);
  max-width: 480px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  touch-action: manipulation;
}
.btn svg{ width: 20px; height: 20px; }
.btn-primary{
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.btn-primary:hover{ transform: translateY(-3px) scale(1.03); }
.btn-outline{
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover{ background: rgba(255,255,255,0.24); transform: translateY(-3px); }

.hero-stats{
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.hero-stat strong{
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.hero-stat span{
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.hero-visual{
  position: relative;
  height: 460px;
}
.hero-card{
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 6px solid var(--white);
}
.hero-card img{ width: 100%; height: 100%; object-fit: cover; }
.hero-card-1{
  width: 68%;
  height: 78%;
  top: 0;
  right: 0;
  animation: hero-float-1 6s ease-in-out infinite;
}
.hero-card-2{
  width: 46%;
  height: 46%;
  bottom: 0;
  left: 0;
  animation: hero-float-2 7s ease-in-out infinite;
  z-index: 2;
}
@keyframes hero-float-1{
  0%, 100%{ transform: translateY(0) rotate(2deg); }
  50%{ transform: translateY(-16px) rotate(0deg); }
}
@keyframes hero-float-2{
  0%, 100%{ transform: translateY(0) rotate(-3deg); }
  50%{ transform: translateY(14px) rotate(-1deg); }
}
.hero-badge{
  position: absolute;
  top: 8%;
  left: -6%;
  background: var(--white);
  color: var(--pink-dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  animation: badge-pop 5s ease-in-out infinite;
}
@keyframes badge-pop{
  0%, 100%{ transform: translateY(0) rotate(-4deg); }
  50%{ transform: translateY(-8px) rotate(-1deg); }
}
.hero-badge .dot{
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge .dot svg{ width: 16px; height: 16px; color: var(--white); }

.scroll-cue{
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  z-index: 3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-cue .mouse{
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  position: relative;
}
.scroll-cue .mouse::before{
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot{
  0%{ opacity: 1; transform: translate(-50%, 0); }
  70%{ opacity: 0; transform: translate(-50%, 14px); }
  100%{ opacity: 0; transform: translate(-50%, 14px); }
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.marquee{
  background: var(--ink);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.marquee-track{
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  gap: 0;
}
.marquee-track span{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 0 var(--space-4);
  white-space: nowrap;
  color: var(--pink);
}
.marquee-track span svg{ width: 18px; height: 18px; color: var(--purple); }
@keyframes marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale{
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.in-view{ opacity: 1; transform: scale(1); }
.stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   About section
   ========================================================================== */
.about{
  padding: var(--space-7) 0;
  background: var(--white);
}
.about-inner{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
  align-items: center;
}
.about-visual{
  position: relative;
}
.about-visual img{
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-blob{
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  background: var(--gradient-soft);
  border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
  z-index: -1;
  animation: blob-morph 10s ease-in-out infinite;
}
@keyframes blob-morph{
  0%, 100%{ border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; }
  50%{ border-radius: 60% 40% 42% 58% / 55% 60% 40% 45%; }
}
.about-badge{
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badge-pop 5s ease-in-out infinite;
}
.about-badge strong{
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink-dark);
  display: block;
  line-height: 1;
}
.about-badge span{ font-size: 0.8rem; color: var(--ink-soft); }
.about-content .eyebrow{ background: var(--pink-light); color: var(--pink-dark); }
.about-content h2{
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-top: var(--space-2);
  line-height: 1.2;
}
.about-content p{
  margin-top: var(--space-3);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-features{
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.about-features li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}
.about-features .icon-wrap{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-features svg{ width: 17px; height: 17px; color: var(--white); }

/* ==========================================================================
   Catalog
   ========================================================================== */
.catalog{
  padding: var(--space-7) 0;
  background: var(--gradient-soft);
  position: relative;
}
.filter-bar{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-5);
}
.filter-btn{
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover{ transform: translateY(-2px); }
.filter-btn.active{
  background: var(--gradient-brand);
  color: var(--white);
}

.catalog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-4);
}
.product-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.product-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}
.product-media{
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-media img{ transform: scale(1.08); }
.product-tag{
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.product-body{
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-body h3{
  font-size: 1.15rem;
  color: var(--ink);
}
.product-body p{
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.product-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.product-price{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pink-dark);
}
.product-price span{
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.order-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-display);
  box-shadow: 0 8px 18px rgba(37,211,102,0.35);
  transition: transform var(--dur-fast) var(--ease-out);
}
.order-btn:hover{ transform: translateY(-2px) scale(1.04); }
.order-btn svg{ width: 16px; height: 16px; }

/* ==========================================================================
   Why us / features
   ========================================================================== */
.why{
  padding: var(--space-7) 0;
  background: var(--white);
}
.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}
.why-card{
  text-align: center;
  padding: var(--space-4) var(--space-3);
  border-radius: var(--radius-lg);
  background: var(--cream);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-med) var(--ease-out);
}
.why-card:hover{
  transform: translateY(-8px);
  background: var(--gradient-soft);
}
.why-icon{
  width: 64px; height: 64px;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.why-icon svg{ width: 30px; height: 30px; color: var(--white); }
.why-card h3{ font-size: 1.1rem; margin-bottom: 8px; }
.why-card p{ color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials{
  padding: var(--space-7) 0;
  background: var(--gradient-soft);
}
.testi-track{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}
.testi-card{
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.testi-stars{
  display: flex;
  gap: 4px;
  color: #FFC94A;
  margin-bottom: 10px;
}
.testi-stars svg{ width: 18px; height: 18px; }
.testi-card p{
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: italic;
}
.testi-user{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-3);
}
.testi-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
}
.testi-user strong{ font-family: var(--font-display); font-size: 0.95rem; display:block; }
.testi-user span{ font-size: 0.8rem; color: var(--ink-soft); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner{
  margin: var(--space-6) auto;
  max-width: 1100px;
  padding: var(--space-6) var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2{
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.cta-banner p{
  color: rgba(255,255,255,0.92);
  margin-top: var(--space-2);
  font-size: 1.05rem;
}
.cta-banner .btn-primary{ margin-top: var(--space-4); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: var(--space-6) 0 var(--space-3);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-4);
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.footer-brand img{ width: 44px; height: 44px; border-radius: 50%; }
.footer-col h4{
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-2);
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 0.9rem; transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover{ color: var(--pink); }
.footer-social{
  display: flex;
  gap: 10px;
  margin-top: var(--space-2);
}
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.footer-social a:hover{ background: var(--gradient-brand); transform: translateY(-3px); }
.footer-social svg{ width: 18px; height: 18px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 0.85rem;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 600;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: wa-bounce 2.6s ease-in-out infinite;
}
.whatsapp-float svg{ width: 30px; height: 30px; color: var(--white); }
.whatsapp-float::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: wa-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse{
  0%{ transform: scale(1); opacity: 0.55; }
  100%{ transform: scale(1.9); opacity: 0; }
}
@keyframes wa-bounce{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-tooltip{
  position: fixed;
  bottom: 40px;
  right: 96px;
  z-index: 600;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--dur-fast) var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}
.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-tooltip.show{
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-top{
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 600;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-med) var(--ease-out);
}
.back-top.show{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-top svg{ width: 20px; height: 20px; color: var(--pink-dark); }

/* ==========================================================================
   Mobile menu
   ========================================================================== */
.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 550;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.mobile-menu .nav-cta{ margin-top: var(--space-3); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px){
  .about-inner{ grid-template-columns: 1fr; }
  .about-visual{ max-width: 420px; margin: 0 auto; }
  .footer-inner{ grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-inner .footer-col:last-child{ grid-column: span 3; }
}
@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-copy p{ margin-inline: auto; }
  .hero-actions{ justify-content: center; }
  .hero-stats{ justify-content: center; }
  .hero-visual{ height: 340px; margin-top: var(--space-4); }
  .nav-links{ display: none; }
  .nav-toggle{ display: flex; }
  .footer-inner{ grid-template-columns: 1fr 1fr; text-align: left; }
  .footer-inner .footer-col:last-child{ grid-column: span 2; }
}
@media (max-width: 560px){
  .container{ padding: 0 var(--space-2); }
  .hero{ padding: 120px 0 var(--space-5); }
  .hero-visual{ height: 280px; }
  .hero-badge{ left: 0; font-size: 0.8rem; padding: 10px 14px; }
  .about-features{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align: center; }
  .footer-inner .footer-col:last-child{ grid-column: span 1; }
  .footer-social{ justify-content: center; }
  .whatsapp-float{ width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .back-top{ width: 40px; height: 40px; bottom: 16px; left: 16px; }
  .cta-banner{ margin: var(--space-5) var(--space-2); padding: var(--space-5) var(--space-3); }
}
