/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:   #FF3D8F;
  --yellow: #FFD000;
  --cyan:   #00C8E0;
  --purple: #6B2FA0;
  --orange: #FF7A00;
  --green:  #00C8A0;
  --bg:     #FFF9EC;
  --dark:   #1a1035;
  --text:   #3d2c6e;
  --white:  #ffffff;
  --shadow: 0 8px 32px rgba(107,47,160,.13);
  --radius: 20px;
  --section-pad: clamp(60px, 8vw, 100px);
}

html {
  scroll-behavior: smooth;
  /* Prevent iOS text size adjustment when rotating */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  /* iOS momentum scrolling */
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent horizontal overflow — header fica fora para o logo não ser cortado */
section, footer { overflow-x: hidden; }
header { overflow: visible; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

h1, h2, h3 {
  font-family: 'Fredoka One', cursive;
  line-height: 1.15;
  /* Prevent orphaned words on mobile */
  overflow-wrap: break-word;
  word-break: break-word;
}

.hl-pink   { color: var(--pink); }
.hl-yellow { color: var(--yellow); text-shadow: 0 2px 8px #ffd00055; }
.hl-cyan   { color: var(--cyan); }
.hl-purple { color: var(--purple); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  /* Minimum touch target size (Apple HIG: 44pt) */
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px #25d36640;
}
@media (hover: hover) {
  .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 30px #25d36660; }
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 3px solid var(--purple);
}
@media (hover: hover) {
  .btn-outline:hover { background: var(--purple); color: white; transform: translateY(-3px); }
}

.btn-card {
  background: linear-gradient(135deg, var(--pink), #ff7ab5);
  color: white;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 16px #ff3d8f30;
}
@media (hover: hover) {
  .btn-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px #ff3d8f50; }
}

.btn-combo {
  background: white;
  color: var(--purple);
  width: 100%;
  margin-top: auto;
  font-weight: 800;
  box-shadow: 0 4px 16px #0002;
}
@media (hover: hover) {
  .btn-combo:hover { transform: translateY(-3px); box-shadow: 0 8px 24px #0003; }
}

.btn-combo-featured {
  background: linear-gradient(135deg, var(--yellow), #ffb300);
  color: var(--dark);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.section-header p {
  color: #7060a8;
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  max-width: 600px;
  margin-inline: auto;
}
.section-header.light h2 { color: white; }
.section-header.light p  { color: rgba(255,255,255,.8); }

.section-tag {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.tag-yellow { background: var(--yellow); color: var(--dark); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,249,236,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid #ffd00030;
  transition: box-shadow .3s;
  /* iOS safe area (notch) */
  padding-top: env(safe-area-inset-top, 0px);
}
#header.scrolled { box-shadow: 0 4px 24px #6b2fa020; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 6px;
  height: 56px; /* barra mais fina */
}

.logo-img {
  height: clamp(110px, 26vw, 140px);
  width: auto;
  margin-block: -27px;
  position: relative;
  z-index: 1;
}
.logo-link { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

.header-btn {
  font-size: .85rem;
  padding: 10px 18px;
  flex-shrink: 0;
  min-height: 44px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--purple);
  margin-left: auto;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 2px solid #ffd00030;
  /* iOS safe area bottom */
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-menu a {
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 1px solid #f0e8ff;
  transition: background .2s;
  min-height: 52px;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:active { background: #f9f0ff; color: var(--pink); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
#hero {
  /* Use svh for mobile (excludes browser chrome) */
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  padding-top: clamp(86px, 12vw, 100px);
  padding-bottom: 40px;
  background: linear-gradient(135deg, #FFF9EC 0%, #fce4f5 40%, #e8f5ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.b1 { width: 120px; height: 120px; background: #FF3D8F18; top: 10%; left: 5%; animation-delay: 0s; }
.b2 { width: 80px;  height: 80px;  background: #FFD00025; top: 60%; left: 2%; animation-delay: 1s; }
.b3 { width: 200px; height: 200px; background: #00C8E015; top: 20%; right: 3%; animation-delay: 2s; }
.b4 { width: 60px;  height: 60px;  background: #6B2FA020; bottom: 20%; right: 10%; animation-delay: .5s; }
.b5 { width: 150px; height: 150px; background: #FFD00015; bottom: 5%; left: 30%; animation-delay: 1.5s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: clamp(.8rem, 2.5vw, .9rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  color: #7060a8;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-badges span {
  background: white;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: clamp(.75rem, 2vw, .85rem);
  font-weight: 700;
  box-shadow: 0 2px 12px #6b2fa015;
}

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px #6b2fa025;
}

/* ===== BRINQUEDOS ===== */
#brinquedos {
  padding: var(--section-pad) 0;
  background: white;
}

.toys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.toy-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border: 2px solid transparent;
}
@media (hover: hover) {
  .toy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px #6b2fa025;
    border-color: var(--pink);
  }
}

.toy-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
  flex-shrink: 0;
}
.toy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
@media (hover: hover) {
  .toy-card:hover .toy-img-wrap img { transform: scale(1.05); }
}

.toy-info {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.toy-card h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); color: var(--dark); }
.toy-card p  { color: #7060a8; font-size: clamp(.88rem, 2.2vw, .95rem); line-height: 1.6; flex: 1; }

.toy-price { display: flex; align-items: baseline; gap: 4px; }
.price-val { font-family: 'Fredoka One', cursive; font-size: clamp(1.6rem, 4vw, 2rem); color: var(--pink); }
.price-val small { font-size: .9em; }
.price-label { color: #a090c8; font-size: .82rem; font-weight: 600; }

/* ===== COMBOS ===== */
#combos {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, var(--purple) 0%, #9b2fca 50%, #3d1a6e 100%);
  position: relative;
  overflow: hidden;
}

.combos-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(14px, 2.5vw, 24px);
}

.combo-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: clamp(20px, 3.5vw, 28px) clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
@media (hover: hover) {
  .combo-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px #0004; }
}

.combo-card.featured {
  background: rgba(255,208,0,.15);
  border-color: var(--yellow);
  box-shadow: 0 0 40px #ffd00030;
}

.combo-star {
  background: var(--yellow);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: .05em;
}

.combo-badge {
  font-family: 'Fredoka One', cursive;
  font-size: .85rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.combo-card h3 { font-size: clamp(1.2rem, 3.5vw, 1.5rem); color: white; }

.combo-items { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.combo-items li { font-size: clamp(.88rem, 2.2vw, .95rem); color: rgba(255,255,255,.9); font-weight: 600; }

.combo-pricing { display: flex; flex-direction: column; gap: 4px; }
.combo-old { text-decoration: line-through; color: rgba(255,255,255,.5); font-size: .88rem; }
.combo-new {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  color: var(--yellow);
  line-height: 1;
}
.combo-new small { font-size: 1.1rem; }
.combo-save {
  background: rgba(255,208,0,.2);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  width: fit-content;
  border: 1px solid #ffd00040;
}

/* Combo border accents */
.c1 { border-color: #FF3D8F60; }
.c2 { border-color: #FF7A0060; }
.c3 { border-color: #00C8E060; }
.c4 { border-color: #FFD00060; }
.c5 { border-color: #00C8A060; }

/* ===== DIFERENCIAIS ===== */
#diferenciais {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.diff-card {
  background: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px) clamp(18px, 3vw, 28px);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s;
}
@media (hover: hover) {
  .diff-card:hover { transform: translateY(-6px); }
}

.diff-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 14px;
}
.diff-card h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 10px; color: var(--dark); }
.diff-card p  { color: #7060a8; line-height: 1.7; font-size: clamp(.88rem, 2.2vw, .95rem); }

/* ===== ÁREA DE ATENDIMENTO ===== */
#area { padding: 0; }

.area-inner {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  padding: clamp(56px, 8vw, 80px) 0;
}

.area-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.area-text .section-tag { background: rgba(255,255,255,.25); color: white; }
.area-text h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  color: white;
  margin: 12px 0 16px;
}
.area-text p {
  color: rgba(255,255,255,.85);
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 24px;
}

.area-map {
  position: relative;
  width: clamp(150px, 18vw, 200px);
  height: clamp(150px, 18vw, 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}
.map-pin { font-size: 2rem; position: relative; z-index: 2; }
.area-map p { position: relative; z-index: 2; margin-top: 8px; line-height: 1.4; }

/* map-rings: posição absoluta centralizada para os anéis não deslocarem o flex layout */
.map-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  animation: pulse 2s ease-out infinite;
}
.r1 { width: 70%;  height: 70%;  animation-delay: 0s; }
.r2 { width: 85%;  height: 85%;  animation-delay: .5s; }
.r3 { width: 100%; height: 100%; animation-delay: 1s; }

@keyframes pulse {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}


/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0;
  text-align: center;
  /* iOS safe area */
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-logo  { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
footer p { font-size: clamp(.82rem, 2vw, .9rem); }

/* ===== COMO FUNCIONA ===== */
#como-funciona {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, white 100%);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}

.step-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  border: 2px solid transparent;
  transition: transform .3s, border-color .3s;
}
@media (hover: hover) {
  .step-card:hover { transform: translateY(-6px); border-color: var(--pink); }
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #ff3d8f40;
}

.step-icon { font-size: 2.4rem; }
.step-card h3 { font-size: 1.2rem; color: var(--dark); }
.step-card p  { font-size: .9rem; color: #7060a8; line-height: 1.6; }

.step-arrow {
  font-size: 2rem;
  color: var(--pink);
  font-weight: 900;
  margin-top: 48px;
  flex-shrink: 0;
  opacity: .5;
}

.steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== DEPOIMENTOS ===== */
#depoimentos {
  padding: var(--section-pad) 0;
  background: linear-gradient(160deg, #f9f0ff 0%, var(--bg) 100%);
}

.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.dep-card {
  background: white;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--pink);
  transition: transform .3s;
}
@media (hover: hover) {
  .dep-card:hover { transform: translateY(-6px); }
}

.dep-stars { font-size: 1.1rem; letter-spacing: 2px; }

.dep-text {
  font-size: clamp(.9rem, 2.2vw, 1rem);
  color: #5a4a80;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dep-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  flex-shrink: 0;
}

.dep-author strong { display: block; font-size: .95rem; color: var(--dark); }
.dep-author span   { font-size: .82rem; color: #a090c8; }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: 20px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px #25d36660;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa:active { opacity: .9; }


/* ===== SCROLL ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none; transition: none; }
  .bubble, .float-wa, .hero-img-wrap { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE COMO FUNCIONA ===== */
@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }
  .step-card  { max-width: 100%; width: 100%; }
  .step-arrow { margin-top: 0; transform: rotate(90deg); }
}

/* ===== RESPONSIVE — TABLET (≤ 900px) ===== */
@media (max-width: 900px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .88rem; }
}

/* ===== RESPONSIVE — MOBILE (≤ 768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .nav-links, .header-btn { display: none; }
  .menu-toggle { display: flex; }

  /* Hero — single column, image on top */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .hero-image { order: -1; }
  .hero-img-wrap { max-width: 340px; margin: 0 auto; }
  .hero-ctas   { justify-content: center; }
  .hero-ctas .btn { flex: 1; min-width: 140px; }
  .hero-badges { justify-content: center; }

  /* Area */
  .area-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .area-map { margin: 0 auto; }
  .area-text .btn { margin: 0 auto; }

  /* Toys grid — 2 columns on tablet-ish mobile */
  .toys-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Combos — 2 columns */
  .combos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Diferenciais — 2 columns */
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== RESPONSIVE — SMALL MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
  /* Force single column on very small screens */
  .toys-grid, .combos-grid, .diff-grid {
    grid-template-columns: 1fr;
  }

  /* Hero buttons stack */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { flex: none; width: 100%; }

  /* Reduce bubble sizes to avoid overflow */
  .b3 { width: 120px; height: 120px; }
  .b5 { width: 90px;  height: 90px; }

  /* Area map smaller */
  .area-map { width: 130px; height: 130px; }

  /* Float WA position safe from edge */
  .float-wa { right: 16px; }
}

/* ===== RESPONSIVE — EXTRA SMALL (≤ 360px) ===== */
@media (max-width: 360px) {
  .hero-text h1 { font-size: 1.7rem; }
  .hero-badges span { font-size: .72rem; padding: 6px 10px; }
  .combo-new { font-size: 1.7rem; }
  .contact-card span { font-size: .95rem; }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
  #hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 32px;
  }
  .hero-inner { gap: 20px; }
  .b1,.b2,.b4 { display: none; }
}
