/* ==============================
   ELLER KIDS - ESTILOS GLOBAIS
   ============================== */

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

:root {
  --primary: #FF6B1A;
  --primary-dark: #E05500;
  --secondary: #FFD600;
  --accent: #00C2CB;
  --accent2: #FF3D7F;
  --green: #3CC13B;
  --dark: #1A1A2E;
  --text: #333;
  --text-light: #666;
  --bg-light: #FFF8F0;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(255,107,26,.18);
  --shadow-lg: 0 16px 48px rgba(255,107,26,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BOTÕES ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: var(--secondary); color: var(--dark); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-outline { background: transparent; border: 2.5px solid var(--primary); color: var(--primary); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}


.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo img { height: 52px;}
.navbar-logo span {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  
}
.navbar-logo em {
  color: var(--accent);
  font-style: normal;


  
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--bg-light);
  color: var(--primary);
}
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--primary-dark) !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background: var(--dark);
  transition: .3s;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar span { display: flex; align-items: center; gap: 6px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF0FB 50%, #E8F9FA 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,.22) 0%, transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-item span { font-size: .85rem; color: var(--text-light); font-weight: 600; }

.hero-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  width: 100%;
  max-width: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-frame img { width: 100%; height: 380px; object-fit: cover; }
.hero-float-badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .9rem;
}
.hero-float-badge .icon { font-size: 1.6rem; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- CATEGORIAS ---- */
.cats-section { padding: 72px 0; background: var(--white); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.cat-icon { font-size: 3rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.cat-card p { font-size: .85rem; color: var(--text-light); }

/* ---- PRODUTOS ---- */
.products-section { padding: 72px 0; background: #f9f5ff; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img { position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 200px; object-fit: contain; transition: transform .4s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
}
.product-tag.novo { background: var(--accent2); }
.product-tag.destaque { background: var(--accent); }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.product-info p { font-size: .88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.product-meta { display: flex; gap: 10px; font-size: .8rem; color: var(--text-light); margin-bottom: 14px; }
.product-meta span { display: flex; align-items: center; gap: 4px; }
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price { font-family: 'Baloo 2', cursive; font-size: 1rem; color: var(--primary); font-weight: 800; }
.product-price small { font-size: .75rem; color: var(--text-light); font-family: 'Nunito', sans-serif; font-weight: 600; display: block; }
.btn-orcamento {
  background: var(--primary);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .2s;
}
.btn-orcamento:hover { background: var(--primary-dark); transform: scale(1.04); }

/* ---- COMO FUNCIONA ---- */
.how-section { padding: 72px 0; background: var(--white); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.how-step {
  text-align: center;
  position: relative;
  counter-increment: steps;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(255,107,26,.35);
}
.how-step:nth-child(2) .step-num { background: var(--accent); box-shadow: 0 6px 20px rgba(0,194,203,.35); }
.how-step:nth-child(3) .step-num { background: var(--accent2); box-shadow: 0 6px 20px rgba(255,61,127,.35); }
.how-step:nth-child(4) .step-num { background: var(--green); box-shadow: 0 6px 20px rgba(60,193,59,.35); }
.how-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.how-step p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ---- DIFERENCIAIS ---- */
.diff-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2b55 100%);
  color: #fff;
}
.diff-section .section-header h2 { color: #fff; }
.diff-section .section-header p { color: rgba(255,255,255,.7); }
.diff-section .section-label { background: rgba(255,255,255,.15); color: var(--secondary); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.diff-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background .25s, border-color .25s;
}
.diff-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--primary);
}
.diff-icon { font-size: 2.4rem; margin-bottom: 14px; }
.diff-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.diff-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ---- DEPOIMENTOS ---- */
.reviews-section { padding: 72px 0; background: var(--bg-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.review-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: .95rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
}
.reviewer-name { font-weight: 800; font-size: .92rem; }
.reviewer-loc { font-size: .8rem; color: var(--text-light); }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent2) 100%);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { font-size: 1.05rem; opacity: .9; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 12px 0 20px; }
.footer-brand .logo-text { font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.footer-brand .logo-text em { color: var(--secondary); font-style: normal; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .2s;
}

.footer-col h4 { font-family: 'Baloo 2', cursive; font-size: 1rem; font-weight: 800; margin-bottom: 16px; color: var(--secondary); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-contact li span:first-child { margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- FLOAT WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  background: #25D366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform .2s;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.8); }
}

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  padding: 56px 0 48px;
  color: #fff;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: .9; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: .88rem; opacity: .7; margin-top: 12px; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  background: var(--bg-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-item strong { display: block; font-weight: 800; margin-bottom: 4px; }
.contact-item span { font-size: .9rem; color: var(--text-light); }
.contact-form { background: var(--bg-light); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e0f0;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  background: #fff;
  transition: border .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---- SOBRE PAGE ---- */
.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Baloo 2', cursive;
}
.about-badge-float strong { font-size: 1.8rem; display: block; line-height: 1; }
.about-badge-float span { font-size: .8rem; opacity: .9; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-content p { font-size: .98rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item strong { display: block; font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.value-item p { font-size: .85rem; color: var(--text-light); margin: 0; }

/* ---- PRODUTOS PAGE ---- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #e8e0f0;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.products-page-section { padding: 56px 0 80px; }

/* ---- IMAGE PLACEHOLDER ---- */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #ffe0cc 0%, #ffd6f0 50%, #d6f0ff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(0,0,0,.35);
}
.img-placeholder .ph-icon { font-size: 3rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar { gap: 12px; font-size: .78rem; }
  .about-values { grid-template-columns: 1fr; }
}

/* Mobile nav open */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: #fff;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  gap: 4px;
}
.nav-links.open a { display: block; padding: 10px 16px; border-radius: 12px; }
