/* ================================================
   PULA PULA BRINQUEDOS - Design System 2.1
   ================================================ */

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

:root {
  --laranja: #ff6b00;
  --laranja-claro: #ff8c2a;
  --laranja-fundo: #fff3e0;
  --verde: #2e7d32;
  --verde-claro: #4caf50;
  --verde-wpp: #25d366;
  --verde-wpp-dark: #1da851;
  --roxo: #6a0dad;
  --roxo-claro: #9c27b0;
  --azul: #1565c0;
  --azul-claro: #1976d2;
  --rosa: #ff4081;
  --amarelo: #ffd600;
  --cinza-escuro: #2d2d2d;
  --cinza-medio: #666;
  --cinza-claro: #f8f8f8;
  --branco: #fff;
  --borda: #e8e8e8;
  --fonte-titulo: 'Nunito', sans-serif;
  --fonte-corpo: 'Open Sans', sans-serif;
  --sombra-card: 0 4px 16px rgba(0, 0, 0, 0.1);
  --sombra-hover: 0 12px 32px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-btn: 999px;
  --transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  color: var(--cinza-escuro);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: clip;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fonte-titulo);
  font-weight: 900;
  line-height: 1.2;
  color: var(--cinza-escuro);
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  font-size: 1rem;
  color: var(--cinza-medio);
}

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 40px 0;
  scroll-margin-top: 96px;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

.section-title .label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 16px;
  border-radius: 20px;
  background: var(--amarelo);
  color: #5a3a00;
  font-family: var(--fonte-titulo);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

.section-title .underline {
  display: block;
  width: 60px;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--rosa));
}

.announce-bar {
  padding: 10px 14px;
  background: linear-gradient(90deg, #7b1fa2, #ff6b00, #ff4081, #7b1fa2);
  background-size: 300% 100%;
  color: var(--branco);
  text-align: center;
  font-family: var(--fonte-titulo);
  font-size: 0.8rem;
  font-weight: 700;
  animation: announce-slide 8s linear infinite;
}

.announce-bar a {
  color: var(--amarelo);
  text-decoration: underline;
}

@keyframes announce-slide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--fonte-titulo);
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.btn-cat:focus-visible,
.btn-publico:focus-visible {
  outline: 3px solid rgba(21, 101, 192, 0.24);
  outline-offset: 3px;
}

.btn-wpp {
  background: linear-gradient(135deg, var(--verde-wpp), var(--verde-wpp-dark));
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.42);
}

.btn-wpp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.btn-laranja {
  background: linear-gradient(135deg, var(--laranja), var(--laranja-claro));
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-laranja:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.5);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: transparent;
  color: var(--branco);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-sm {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--branco);
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(90deg, #ff6b00, #ff4081, #9c27b0, #1976d2) 1;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav-menu a {
  padding: 8px 12px;
  border-radius: 10px;
  font-family: var(--fonte-titulo);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  transition: 0.2s ease;
}

.nav-menu a:hover {
  background: var(--laranja-fundo);
  color: var(--laranja);
}

.header-wpp {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--verde-wpp), var(--verde-wpp-dark)) !important;
  color: var(--branco) !important;
  font-family: var(--fonte-titulo);
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 3px 14px rgba(37, 211, 102, 0.38);
}

.header-wpp span {
  display: none;
}

.header-wpp:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--cinza-escuro);
  transition: 0.2s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  flex-direction: column;
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.mobile-menu-close {
  border: none;
  background: none;
  color: var(--cinza-escuro);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu nav a {
  padding: 14px 16px;
  border-bottom: 1px solid var(--borda);
  border-radius: 12px;
  font-family: var(--fonte-titulo);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  transition: 0.2s ease;
}

.mobile-menu nav a:hover {
  background: var(--laranja-fundo);
  color: var(--laranja);
}

.mobile-menu .btn-wpp {
  margin-top: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 50px;
  background: linear-gradient(135deg, #ff6b00 0%, #c0208a 40%, #7b1fa2 70%, #1565c0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.hero-text .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.18);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-text h1 {
  margin-bottom: 12px;
  color: var(--branco);
  font-size: clamp(1.8rem, 7vw, 3.4rem);
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.hero-text h1 span {
  color: var(--amarelo);
}

.hero-text p {
  max-width: 560px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.14);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-btns .btn {
  width: 100%;
}

.hero-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.6;
}

.hero-img {
  position: relative;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-mosaic img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease;
}

.hero-mosaic img:hover {
  transform: scale(1.03);
}

.hero-mosaic img:nth-child(4) {
  display: none;
}

.hero-deco {
  display: none;
}

.hero-wave,
.trust-wave,
.wave-top,
.wave-bottom {
  overflow: hidden;
  line-height: 0;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 65px;
}

.trust-bar {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  background: linear-gradient(135deg, #ff6b00, #ff8c2a);
  color: var(--branco);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-family: var(--fonte-titulo);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.trust-item span:first-child {
  font-size: 1.2rem;
}

.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-wave svg,
.wave-top svg,
.wave-bottom svg {
  display: block;
  width: 100%;
}

.trust-wave svg {
  height: 45px;
}

.wave-top svg,
.wave-bottom svg {
  height: 50px;
}

.age-filter {
  padding: 46px 0;
  background: #f5f0ff;
}

.age-filter h2 {
  margin-bottom: 24px;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.age-helper {
  max-width: 620px;
  margin: -8px auto 24px;
  text-align: center;
  font-size: 0.95rem;
}

.age-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.age-btn {
  min-height: 46px;
  padding: 11px 20px;
  border: none;
  border-radius: var(--radius-btn);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transition: var(--transition);
}

.age-btn[data-age='0-2'] {
  background: linear-gradient(135deg, #ff80ab, #ff4081);
}

.age-btn[data-age='3-5'] {
  background: linear-gradient(135deg, #ffb300, #e65100);
}

.age-btn[data-age='5-8'] {
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
}

.age-btn[data-age='8-12'] {
  background: linear-gradient(135deg, #29b6f6, #0277bd);
}

.age-btn[data-age='12+'] {
  background: linear-gradient(135deg, #ce93d8, #7b1fa2);
}

.age-btn-clear {
  background: linear-gradient(135deg, #4b5563, #334155);
}

.age-btn:hover,
.age-btn.active {
  transform: translateY(-4px);
  outline: 3px solid var(--branco);
  outline-offset: 2px;
}

.categorias {
  background: var(--branco);
}

.categorias-grid,
.produtos-grid,
.diferenciais-grid,
.depoimentos-grid,
.publicos-grid,
.passos-grid,
.info-box-grid,
.footer-grid,
.mapa-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.categorias-grid {
  gap: 12px;
}

.categoria-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  padding: 0 0 12px;
  border-radius: 14px;
  background: var(--branco);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
}

.categoria-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.cat-icon {
  display: flex;
  width: 100%;
  height: 76px;
  align-items: center;
  justify-content: center;
  border-radius: 14px 14px 0 0;
  font-size: 1.6rem;
}

.cat-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.categoria-card h3 {
  margin: 0 10px;
  font-size: 0.88rem;
  line-height: 1.3;
}

.categoria-card p {
  display: none;
  margin: 0 10px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.categoria-card .btn-cat {
  width: calc(100% - 16px);
  min-height: 34px;
  margin: 4px 8px 0;
  padding: 7px 12px;
  border-radius: var(--radius-btn);
  font-family: var(--fonte-titulo);
  font-size: 0.76rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.categoria-card:hover .btn-cat {
  filter: brightness(1.06);
}

.cat-musical {
  background: linear-gradient(135deg, #fff9c4, #fff176);
}

.cat-musical.btn-cat,
.cat-musical .btn-cat {
  background: #f9a825;
  color: #fff;
}

.cat-faz-conta {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.cat-faz-conta.btn-cat,
.cat-faz-conta .btn-cat {
  background: #9c27b0;
  color: #fff;
}

.cat-montar {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.cat-montar.btn-cat,
.cat-montar .btn-cat {
  background: #1976d2;
  color: #fff;
}

.cat-bonecas {
  background: linear-gradient(135deg, #fce4ec, #f8bbd9);
}

.cat-bonecas.btn-cat,
.cat-bonecas .btn-cat {
  background: #e91e8c;
  color: #fff;
}

.cat-artistico {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.cat-artistico.btn-cat,
.cat-artistico .btn-cat {
  background: #ff6b00;
  color: #fff;
}

.cat-ar-livre {
  background: linear-gradient(135deg, #f1f8e9, #dcedc8);
}

.cat-ar-livre.btn-cat,
.cat-ar-livre .btn-cat {
  background: #558b2f;
  color: #fff;
}

.cat-educativo {
  background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.cat-educativo.btn-cat,
.cat-educativo .btn-cat {
  background: #c62828;
  color: #fff;
}

.produtos-destaque {
  position: relative;
  background: linear-gradient(160deg, #1a0533 0%, #2d1b69 50%, #0d1f5e 100%);
}

.produtos-destaque::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-position: 0 0, 27px 27px;
  background-size: 55px 55px, 28px 28px;
  pointer-events: none;
}

.produtos-destaque .section-title h2 {
  color: var(--branco);
}

.produtos-destaque .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

.produtos-destaque .section-title .underline {
  background: linear-gradient(90deg, var(--amarelo), var(--rosa));
}

.produtos-destaque .section-title .label {
  color: #5a3a00;
}

.produtos-grid {
  position: relative;
  z-index: 1;
  gap: 12px;
}

.produto-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: var(--branco);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.produto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.produto-img {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f8f8;
}

.produto-img img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.produto-card:hover .produto-img img {
  transform: scale(1.06);
}

.produto-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: var(--fonte-titulo);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-idade {
  background: var(--laranja);
  color: var(--branco);
}

.badge-cat {
  background: var(--roxo-claro);
  color: var(--branco);
}

.produto-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.produto-info h3 {
  font-size: 0.9rem;
  line-height: 1.25;
}

.produto-info p {
  display: none;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.produto-info .btn-wpp {
  width: 100%;
  min-height: 38px;
  margin-top: 6px;
  padding: 9px 12px;
  font-size: 0.78rem;
}

.por-que {
  background: var(--cinza-claro);
}

.diferencial-card,
.depoimento-card,
.publico-card,
.passo-card,
.info-box {
  overflow: hidden;
  border-radius: 20px;
}

.diferencial-card {
  position: relative;
  padding: 32px 22px;
  border-top: 5px solid transparent;
  background: var(--branco);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: var(--transition);
}

.diferencial-card:nth-child(1) {
  border-top-color: var(--laranja);
}

.diferencial-card:nth-child(2) {
  border-top-color: var(--roxo-claro);
}

.diferencial-card:nth-child(3) {
  border-top-color: #00bcd4;
}

.diferencial-card::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.025);
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.diferencial-icon {
  display: block;
  margin-bottom: 16px;
  font-size: 3rem;
}

.diferencial-card h3 {
  margin-bottom: 12px;
}

.diferencial-card p {
  font-size: 0.94rem;
  line-height: 1.7;
}

.depoimentos {
  background: linear-gradient(135deg, #fff8f0, #fff0f8, #f0f4ff);
}

.depoimento-card {
  position: relative;
  padding: 28px 22px;
  background: var(--branco);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 18px;
  color: rgba(255, 107, 0, 0.07);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.estrelas {
  margin-bottom: 14px;
  color: #ffb300;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.depoimento-card p {
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--borda);
}

.avatar {
  display: flex;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--rosa));
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 1.1rem;
  font-weight: 900;
}

.depoimento-autor strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 0.95rem;
  font-weight: 800;
}

.depoimento-autor span {
  display: block;
  font-size: 0.8rem;
}

.publicos {
  background: var(--branco);
}

.publico-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 28px 22px;
  background: linear-gradient(135deg, var(--bg-start, #ff6b00), var(--bg-end, #ff8c2a));
  color: var(--branco);
  transition: var(--transition);
}

.publico-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.publico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.publico-card .icon {
  font-size: 2.6rem;
}

.publico-card h3,
.publico-card p {
  color: var(--branco);
}

.publico-card p {
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.65;
}

.publico-card .btn-publico {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.22);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 0.88rem;
  font-weight: 800;
}

.publico-card .btn-publico:hover {
  background: rgba(255, 255, 255, 0.34);
}

.mapa-section {
  background: var(--cinza-claro);
}

.mapa-container {
  align-items: center;
  gap: 24px;
}

.mapa-info h2 {
  margin-bottom: 20px;
}

.mapa-intro {
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.mapa-detalhe {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--branco);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.mapa-detalhe .icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.6rem;
}

.mapa-detalhe strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 800;
}

.mapa-detalhe span,
.mapa-detalhe p {
  font-size: 0.95rem;
}

.mapa-iframe {
  overflow: hidden;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.mapa-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.badges-confianca {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge-conf {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: var(--verde);
  font-family: var(--fonte-titulo);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.mapa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 50px 20px;
  background: linear-gradient(135deg, #ff6b00 0%, #c0208a 50%, #7b1fa2 100%);
  color: var(--branco);
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-position: 0 0, 30px 30px;
  background-size: 60px 60px, 30px 30px;
  pointer-events: none;
}

.cta-final h2,
.cta-final p,
.cta-final .btn-wpp {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  margin-bottom: 16px;
  color: var(--branco);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.cta-final p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-final .btn-wpp {
  font-size: 1.05rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.footer {
  padding: 56px 0 30px;
  background: linear-gradient(180deg, #1a1a2e, #16213e);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  margin-bottom: 28px;
}

.footer-logo img {
  height: 54px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-logo .footer-contato {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-logo .footer-contato a:hover {
  color: var(--laranja);
}

.footer h4 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 10px;
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 1rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--laranja), var(--rosa));
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.footer ul li a:hover {
  padding-left: 4px;
  color: var(--laranja);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  transition: 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--laranja);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-wpp), var(--verde-wpp-dark));
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  animation: pulse-wpp 2.5s infinite;
  transition: 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.whatsapp-float .wpp-tooltip {
  position: absolute;
  right: 72px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--cinza-escuro);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float .wpp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--cinza-escuro);
  border-right: 0;
}

.whatsapp-float:hover .wpp-tooltip {
  opacity: 1;
}

@keyframes pulse-wpp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--hero-start, #fff8f0), var(--hero-end, #fff3e0));
  text-align: center;
}

.page-hero .badge-page {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 18px;
  border: 1.5px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-btn);
  background: var(--laranja-fundo);
  color: var(--laranja);
  font-family: var(--fonte-titulo);
  font-size: 0.84rem;
  font-weight: 800;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 auto 18px;
}

.page-hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1rem;
}

.page-hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.como-funciona {
  background: var(--cinza-claro);
}

.passo-card {
  padding: 32px 22px;
  background: var(--branco);
  box-shadow: var(--sombra-card);
  text-align: center;
}

.passo-num {
  display: flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--rosa));
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
  color: var(--branco);
  font-family: var(--fonte-titulo);
  font-size: 1.3rem;
  font-weight: 900;
}

.passo-card h3 {
  margin-bottom: 8px;
}

.info-boxes {
  background: var(--branco);
}

.info-box {
  padding: 24px 20px;
  border-left: 5px solid var(--laranja);
  border-radius: 0 16px 16px 0;
  background: var(--laranja-fundo);
}

.info-box h3 {
  margin-bottom: 12px;
  color: var(--laranja);
}

.info-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--cinza-escuro);
}

.info-box ul li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--verde-claro);
  font-weight: bold;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

@media (max-width: 480px) {
  .announce-bar {
    font-size: 0.74rem;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
    padding-inline: 10px;
  }

  .trust-item:not(:last-child) {
    border-right: 0;
  }

  .hero-btns .btn,
  .page-hero-btns .btn {
    width: 100%;
  }

  .cat-criativa {
    flex-direction: column;
  }

  .mapa-actions .btn {
    width: 100%;
  }
}

@media (min-width: 480px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 48px 0;
  }

  .categorias-grid,
  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diferenciais-grid,
  .depoimentos-grid,
  .publicos-grid,
  .passos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-btns .btn {
    width: auto;
  }

  .hero-note {
    max-width: 520px;
  }

  .mapa-iframe {
    height: 320px;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 22px;
  }

  .categorias-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .produtos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .categoria-card {
    padding-bottom: 14px;
  }

  .cat-icon {
    height: 84px;
  }

  .cat-icon img {
    width: 48px;
    height: 48px;
  }

  .produto-info h3 {
    font-size: 0.92rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding: 60px 0;
  }

  .header-inner {
    padding: 10px 20px;
  }

  .logo img {
    height: 58px;
  }

  .nav-menu {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .header-wpp {
    display: inline-flex;
  }

  .header-wpp span {
    display: inline;
  }

  .hero {
    padding: 70px 0 92px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 42px;
  }

  .hero-btns .btn {
    width: auto;
  }

  .hero-highlight {
    font-size: 0.84rem;
  }

  .hero-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .categoria-card p,
  .produto-info p {
    display: block;
  }

  .categorias-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .produtos-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .diferenciais-grid,
  .depoimentos-grid,
  .publicos-grid,
  .passos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mapa-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .page-hero {
    padding: 76px 0;
  }

  .page-hero p {
    font-size: 1.08rem;
  }

  .whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    padding: 80px 0 108px;
  }

  .hero::after {
    width: 500px;
    height: 500px;
  }

  .hero-content {
    gap: 60px;
  }

  .hero-mosaic img:nth-child(4) {
    display: block;
  }

  .cat-icon {
    height: 92px;
  }

  .produto-card:hover {
    transform: translateY(-6px);
  }

  .mapa-container {
    gap: 48px;
  }

  .mapa-iframe {
    height: 350px;
  }

  .cta-final {
    padding: 90px 20px;
  }

  .cta-final p {
    font-size: 1.1rem;
  }
}
