/* ============================================================
   TINY STEPS — Shared Stylesheet
   Palette: Blue Daises #7F95E4 · Teal Beams #1AC1B9
            Golden Gold #FBD160 · Bright Barbie #F9447F
            Basic Pink #FCB8D9 · Clementine Hobby #FF8017
   ============================================================ */

:root {
  --bg:         #FFF9F5;
  --blue:       #7F95E4;
  --teal:       #1AC1B9;
  --gold:       #FBD160;
  --pink:       #F9447F;
  --light-pink: #FCB8D9;
  --orange:     #FF8017;
  --dark:       #2D2A3E;
  --gray:       #6B6B80;
  --white:      #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, .display {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1.15;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; }
.section-pad { padding: 6rem 2rem; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 20px rgba(249,68,127,.35);
}
.btn-pink:hover { box-shadow: 0 8px 28px rgba(249,68,127,.45); color: white; }

.btn-teal {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 20px rgba(26,193,185,.35);
}
.btn-teal:hover { box-shadow: 0 8px 28px rgba(26,193,185,.45); color: white; }

.btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: white; }

.btn-white {
  background: white;
  color: var(--pink);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.btn-white:hover { box-shadow: 0 12px 32px rgba(0,0,0,.2); color: var(--pink); }

.btn-gold {
  background: var(--gold);
  color: #5A3A00;
  box-shadow: 0 4px 20px rgba(251,209,96,.4);
}
.btn-gold:hover { box-shadow: 0 8px 28px rgba(251,209,96,.5); color: #5A3A00; }

/* ── NAV ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255,249,245,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--light-pink);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(45,42,62,.1); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  height: 80px;
  width: auto;
  max-width: 260px;
  border-radius: 10px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--pink);
  color: white !important;
  padding: .55rem 1.4rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 4px 16px rgba(249,68,127,.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,68,127,.45); }

/* ── HAMBURGER ───────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light-pink);
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--pink);
  border-radius: 3px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ──────────────────────────── */
.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,42,62,.48);
  z-index: 299;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mm-overlay.open { display: block; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 84vw);
  background: white;
  z-index: 300;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  box-shadow: -16px 0 48px rgba(45,42,62,.18);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--light-pink);
  flex-shrink: 0;
}
.mm-logo {
  height: 46px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 8px;
}
.mm-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #FFF0F6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--pink);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: background .2s;
}
.mm-close:hover { background: var(--light-pink); }

.mm-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem;
  gap: .2rem;
}
.mm-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  padding: .85rem 1rem;
  border-radius: 14px;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.mm-links a:hover,
.mm-links a.active { background: #FFF0F6; color: var(--pink); }

.mm-bottom {
  padding: 1.25rem;
  border-top: 1px solid rgba(45,42,62,.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.mm-cta {
  width: 100%;
  justify-content: center;
  font-size: .95rem;
}
.mm-social {
  display: flex;
  gap: .75rem;
}
.mm-social a {
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background .2s, color .2s;
}
.mm-social a:hover { background: var(--pink); color: white; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 4.5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer-brand { }
.footer-brand .brand-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}
.footer-brand .brand-name img {
  height: 44px;
  width: auto;
  max-width: 160px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h6 {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: white; }

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--pink); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ── WHATSAPP FLOAT ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #25D366;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.25rem .85rem 1rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  z-index: 150;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s infinite;
  text-decoration: none;
  color: white;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37,211,102,.7);
  color: white;
}
.wa-float svg { flex-shrink: 0; }
.wa-float-text { display: flex; flex-direction: column; line-height: 1.25; }
.wa-float-text .wa-ft-sub  { font-size: .68rem; opacity: .9; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; }
.wa-float-text .wa-ft-main { font-size: .88rem; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; }
@media (max-width: 500px) {
  .wa-float { padding: .85rem; border-radius: 50%; }
  .wa-float-text { display: none; }
}

@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.8); }
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── FLOATING SHAPES ─────────────────────────────── */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes floatR {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
}
@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Navbar */
  .navbar { padding: .6rem 1.1rem; }
  .nav-logo img { height: 52px; max-width: 170px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  .section-pad { padding: 3rem 1.1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-brand .brand-name img { height: 38px; }
  .site-footer { padding: 3rem 1.25rem 1.75rem; }

  /* Buttons */
  .btn { font-size: .9rem; padding: .7rem 1.5rem; }
}
@media (max-width: 480px) {
  .navbar { padding: .5rem 1rem; }
  .nav-logo img { height: 44px; max-width: 140px; }
}
