/* ═══════════════════════════════════════════════════════════
   SIPRIMAIS — Landing Page
   Design System · Layout · Animations
   Compatible: WordPress/Elementor + Hospedagem comum
═══════════════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --bg:        #F7F8FC;
  --surface:   #FFFFFF;
  --dark:      #0A0F1E;
  --dark2:     #111827;
  --blue:      #009B87;
  --blue-lt:   #4DB6AC;
  --neon:      #00E0A0;
  --wpp:       #25D366;
  --wpp-dk:    #1EBE5D;
  --text:      #1A1F36;
  --muted:     #64748B;
  --border:    #E2E8F0;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ─── CIRCUIT BACKGROUND PATTERN ───────────────────────── */
/* Pattern: grade com nós e traços de placa eletrônica */
.circuit-bg {
  position: relative;
  overflow: hidden;
}
.circuit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0%2C40 H30 M50%2C40 H80 M40%2C0 V30 M40%2C50 V80' stroke='%23009B87' stroke-width='0.8' fill='none' opacity='0.12'/%3E%3Ccircle cx='40' cy='40' r='2.5' fill='%23009B87' opacity='0.1'/%3E%3Crect x='8' y='8' width='16' height='10' rx='2' stroke='%23009B87' stroke-width='0.5' fill='none' opacity='0.07'/%3E%3Cline x1='24' y1='13' x2='30' y2='13' stroke='%23009B87' stroke-width='0.5' opacity='0.07'/%3E%3Crect x='56' y='58' width='16' height='10' rx='2' stroke='%23009B87' stroke-width='0.5' fill='none' opacity='0.07'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.circuit-bg > * { position: relative; z-index: 1; }

.circuit-bg--dark::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M0%2C40 H30 M50%2C40 H80 M40%2C0 V30 M40%2C50 V80' stroke='%2300E0A0' stroke-width='0.8' fill='none' opacity='0.12'/%3E%3Ccircle cx='40' cy='40' r='2.5' fill='%2300E0A0' opacity='0.1'/%3E%3Crect x='8' y='8' width='16' height='10' rx='2' stroke='%2300E0A0' stroke-width='0.5' fill='none' opacity='0.07'/%3E%3Cline x1='24' y1='13' x2='30' y2='13' stroke='%2300E0A0' stroke-width='0.5' opacity='0.07'/%3E%3C/svg%3E");
}

/* ─── TIPOGRAFIA ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 155, 135, 0.08);
  border: 1px solid rgba(0, 155, 135, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-highlight { color: var(--blue); }
.text-neon { color: var(--neon); }
.text-wpp { color: var(--wpp); }

/* ─── BOTÕES ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--wpp {
  background: var(--wpp);
  color: #fff;
  padding: 16px 36px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn--wpp:hover {
  background: var(--wpp-dk);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.btn--wpp-lg {
  font-size: 18px;
  padding: 20px 48px;
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  padding: 14px 32px;
  border: 2px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Pulse animation para botão WhatsApp */
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}
.btn--pulse { animation: wpp-pulse 2.4s ease-in-out infinite; }

/* ─── BADGE HERO ─────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wpp);
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--wpp);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ─── SEÇÃO 1 · HERO ─────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 25% 50%, rgba(0,155,135,0.09) 0%, transparent 55%), var(--surface);
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.hero .grid-2 {
  grid-template-columns: 55fr 45fr;
}
.hero__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__cta-note::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--wpp);
  border-radius: 50%;
}

/* Micro indicadores */
.hero-indicators {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.indicator svg {
  width: 16px; height: 16px;
  stroke: var(--blue);
  flex-shrink: 0;
}
.indicator__dot {
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
}

/* Hero SVG container */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(0,155,135,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,155,135,0.12));
}

/* ─── SEÇÃO 2 · DOR ─────────────────────────────────────── */
.pain {
  background: var(--bg);
}
.pain__bottom-text {
  text-align: center;
  margin-top: 48px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.pain__bottom-text em {
  color: var(--blue);
  font-style: normal;
}

/* Cards da dor */
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 155, 135, 0.25);
}
.pain-card__icon {
  width: 48px; height: 48px;
  background: rgba(0, 155, 135, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue);
}
.pain-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.pain-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SEÇÃO 3 · SOLUÇÃO ─────────────────────────────────── */
.solution {
  background: var(--surface);
}
.solution-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-visual::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(ellipse at center, rgba(0,224,160,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.solution-svg {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 16px 48px rgba(0,155,135,0.1));
}

/* Checklist */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}
.check-icon {
  width: 24px; height: 24px;
  background: rgba(0, 224, 160, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg {
  width: 14px; height: 14px;
  stroke: var(--neon);
}
.solution__footer {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── SEÇÃO 4 · BENEFÍCIOS ───────────────────────────────── */
.benefits {
  background: var(--bg);
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--neon));
  opacity: 0;
  transition: opacity 0.22s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 155, 135, 0.2);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(0,155,135,0.08), rgba(0,224,160,0.08));
  border: 1px solid rgba(0,155,135,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.benefit-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue);
}
.benefit-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.benefit-card__desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── SEÇÃO 5 · CTA INTERMEDIÁRIO ───────────────────────── */
.cta-mid {
  background: var(--dark);
  color: #fff;
  padding: 96px 0;
}
.cta-mid__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-mid__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.cta-mid__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}
/* Linha brilhante decorativa */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.4;
  margin: 48px 0;
}
/* Chat mockup */
.chat-mockup {
  max-width: 320px;
  margin: 0 auto;
}
.chat-phone {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,224,160,0.15));
}

/* ─── SEÇÃO 6 · POSICIONAMENTO ───────────────────────────── */
.positioning {
  background: var(--surface);
  overflow: hidden;
}
/* ─── CAROUSEL ───────────────────────────────────────────── */
.product-carousel {
  position: relative;
  /* quebra para fora do container (28px = padding do .container) */
  margin: 0 -28px;
  padding: 0;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* padding-left alinha o primeiro card com o conteúdo */
  padding: 12px 28px 20px;
  align-items: start;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .product-card {
  scroll-snap-align: start;
  flex: 0 0 250px;
  min-width: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-btn:hover {
  background: rgba(0,155,135,0.08);
  border-color: rgba(0,155,135,0.35);
  color: var(--blue);
}
.carousel-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-btn--prev { left: 4px; }
.carousel-btn--next { right: 4px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s;
}
.carousel-dot.active {
  background: var(--blue);
  width: 20px;
  border-radius: 3px;
}
@media (max-width: 640px) {
  .product-carousel { margin: 0 -18px; }
  .carousel-track { padding: 12px 18px 20px; }
  .carousel-track .product-card { flex: 0 0 150px; }
  .carousel-track .product-card__img-wrap { width: 180px; height: 180px; }
}
.positioning__reforce {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-top: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: none;
  border: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,155,135,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.product-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--blue);
}
.product-card__name {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,155,135,0.08);
  border: 1px solid rgba(0,155,135,0.2);
  border-radius: 100px;
  padding: 4px 14px;
}
.product-card--more {
  background: none;
  border: none;
}
.product-card--more .product-card__icon {
  background: linear-gradient(135deg, rgba(0,155,135,0.10), rgba(0,224,160,0.10));
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.product-card--more .product-card__icon svg {
  width: 32px;
  height: 32px;
}

/* ─── SEÇÃO 7 · CTA FINAL ────────────────────────────────── */
.cta-final {
  background: var(--bg);
  text-align: center;
  padding: 96px 0;
}
.cta-final__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-final__sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.cta-final__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* Divider decorativo */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}
.section-divider--neon {
  background: linear-gradient(90deg, transparent 0%, rgba(0,224,160,0.3) 30%, rgba(0,155,135,0.3) 70%, transparent 100%);
  height: 1px;
}

/* ─── ANIMAÇÕES DE SCROLL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal--right {
  transform: translateX(36px);
}
.reveal--left {
  transform: translateX(-36px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay classes para stagger */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ─── ANIMAÇÕES GLOBAIS ───────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

@keyframes scan {
  0%   { opacity: 0; transform: translateY(-100%); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(100%); }
}

/* Glow nos ícones de cartão no hover */
@keyframes icon-glow {
  from { box-shadow: 0 0 0 0 rgba(0,155,135,0); }
  to   { box-shadow: 0 0 20px 4px rgba(0,155,135,0.18); }
}
.benefit-card:hover .benefit-card__icon {
  animation: icon-glow 0.3s forwards;
}


/* ─── HERO PHOTO COMPOSITION ─────────────────────────────── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,155,135,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-photo-main {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  border-radius: 16px;
  display: block;
  object-fit: contain;
}
.hero-photo-secondary {
  position: absolute;
  z-index: 3;
  width: 60%;
  max-width: 700px;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  right: 4%;
  bottom: 6%;
  transform: rotate(4deg);
}
.hero-photo-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─── SOLUTION PHOTO ─────────────────────────────────────── */
.solution-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -12%;
  background: radial-gradient(ellipse at center, rgba(0,155,135,0.12) 0%, rgba(0,224,160,0.06) 45%, transparent 70%);
  pointer-events: none;
}
.solution-circuit {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.solution-photo {
  width: 100%;
  max-width: 440px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ─── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-2.reverse-mobile > *:first-child { order: 2; }
  .grid-2.reverse-mobile > *:last-child  { order: 1; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }

  .cta-mid__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero { min-height: auto; padding: 10px 0 40px; }
  .hero .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .hero-indicators { gap: 16px; }

  /* Logo menor no mobile (fica abaixo das fotos) */
  .hero__content > img:first-child { height: 80px !important; margin-bottom: 20px; }

  /* Composição de fotos no topo — layout mobile side-by-side */
  .hero-visual { width: 100%; }
  .hero-photo-wrap {
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px;
    max-height: 380px;
  }
  .hero-photo-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
  }
  .hero-photo-main {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 210px;
    top: 10px; left: 40px;
  }
  .hero-photo-secondary {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 179px;
    top: 20px; left: -60px;
  }

  .hero__headline { font-size: clamp(28px, 8vw, 42px); }

  .chat-mockup { max-width: 260px; }

}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr 1fr; }
  .hero-indicators { flex-direction: column; gap: 12px; }
  .btn--wpp-lg { font-size: 16px; padding: 18px 32px; }
}

/* ─── PRODUCT CARD COM IMAGEM ────────────────────────────── */
.product-card__img-wrap {
  width: 250px;
  height: 250px;
  background: none;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__img-wrap img {
  transform: scale(1.08);
}

/* ─── BOTÃO FLUTUANTE WHATSAPP ───────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wpp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wpp-pulse 2.8s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.wpp-float svg {
  width: 32px;
  height: 32px;
}
