/* ============ TOKENS ============ */
:root {
  --blue-main: #2F6BFF;
  --blue-accent: #59B7FF;
  --blue-deep: #123C8C;
  --bg-dark: #0B0F1A;
  --black-premium: #111111;
  --gold: #C8A34D;
  --white: #FFFFFF;

  --text-body: #B8C2D9;
  --text-muted: #7C879E;
  --border-soft: rgba(255,255,255,0.08);
  --surface-1: #10182B;
  --surface-2: #141D33;
  --surface-light: #EEF1F6;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-lift: 0 20px 50px -20px rgba(0,0,0,0.6);

  --container-w: 1240px;
  --font-main: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.highlight { color: var(--gold); }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E0BE72);
  color: #1a1200;
  box-shadow: 0 10px 30px -10px rgba(200,163,77,0.6);
}
.btn-outline {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-blue {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
  background: transparent;
}
.btn-outline-blue:hover { background: rgba(89,183,255,0.1); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(47,107,255,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--white); }
.btn-full { width: 100%; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo { display: flex; align-items: center; }
.site-logo { height: 62px; width: auto; display: block; }
.site-logo-footer { height: 52px; }

.main-nav { display: flex; align-items: center; gap: 34px; flex: 1; justify-content: center; }
.main-nav > a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color .2s ease;
}
.main-nav > a:hover { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  background: none; border: none; color: var(--text-body);
  font-family: inherit; font-size: 0.92rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px; padding: 0;
}
.nav-dropdown-btn:hover { color: var(--white); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  background: var(--surface-2); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 8px; min-width: 170px;
  opacity: 0; visibility: hidden; transform-origin: top center;
  transition: opacity .18s ease, visibility .18s ease, top .18s ease;
  box-shadow: var(--shadow-lift);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; top: calc(100% + 10px);
}
.nav-dropdown-menu a {
  display: block; padding: 8px 10px; border-radius: 8px;
  font-size: 0.88rem; color: var(--text-body);
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* ============ HERO ============ */
.hero { padding: 70px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 700px;
  background: radial-gradient(ellipse at 30% 0%, rgba(47,107,255,0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  margin-top: 22px; color: var(--text-body); font-size: 1.08rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 460px; }
.shield-glow { position: relative; filter: drop-shadow(0 0 60px rgba(47,107,255,0.35)); animation: pulseGlow 4s ease-in-out infinite; }
.shield-svg { width: 240px; height: auto; }
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(47,107,255,0.3)); }
  50% { filter: drop-shadow(0 0 70px rgba(89,183,255,0.5)); }
}
.orbit-icon {
  position: absolute;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  box-shadow: var(--shadow-lift);
  animation: floatY 5s ease-in-out infinite;
}
.oi-1 { top: 6%; left: 8%; animation-delay: 0s; }
.oi-2 { top: 2%; right: 10%; animation-delay: .6s; }
.oi-3 { top: 42%; left: -2%; animation-delay: 1.2s; }
.oi-4 { top: 42%; right: -2%; animation-delay: 1.8s; }
.oi-5 { bottom: 4%; left: 14%; animation-delay: 2.4s; }
.oi-6 { bottom: 4%; right: 14%; animation-delay: 3s; color: var(--gold); }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ PRODUCTS ============ */
.products { padding: 20px 0 70px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  display: block;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(89,183,255,0.4);
  background: var(--surface-2);
}
.product-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(47,107,255,0.14);
  color: var(--blue-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.product-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.product-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.4; }

/* ============ WHY SECTION ============ */
.why { padding: 60px 0 90px; }
.why-inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: start; }
.why-content h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  margin-bottom: 30px;
  max-width: 480px;
}
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  position: relative; padding-left: 30px; color: var(--text-body); font-size: 0.98rem;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(47,107,255,0.18); color: var(--blue-accent);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700;
}

.why-visual { display: flex; flex-direction: column; gap: 20px; }
.phone-card, .dog-card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.phone-mockup {
  width: 168px; min-width: 168px; height: auto; min-height: 300px;
  background: #0A1120;
  border: 6px solid #1c2740;
  border-radius: 30px;
  position: relative;
  padding: 24px 16px 20px;
  box-shadow: var(--shadow-lift);
  flex-shrink: 0;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 5px; border-radius: 4px; background: #1c2740;
}
.phone-screen { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.phone-app-header {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--white);
  display: flex; align-items: center; gap: 5px; align-self: flex-start;
}
.phone-app-header small { color: var(--gold); font-size: 0.64rem; }
.app-logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-accent); }
.progress-ring { position: relative; display: flex; align-items: center; justify-content: center; }
.progress-value { position: absolute; font-size: 1.1rem; font-weight: 700; }
.progress-label { font-size: 0.78rem; color: var(--text-body); line-height: 1.4; text-align: center; }
.app-status-list {
  width: 100%; display: flex; flex-direction: column; gap: 9px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.08);
}
.app-status-list li { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--text-body); }
.status-dot { width: 8px; height: 8px; min-width: 8px; border-radius: 50%; }
.dot-ok { background: #3ED598; }
.dot-warn { background: var(--gold); }
.dot-off { background: #4A5372; }

.phone-card-copy, .dog-card-copy { flex: 1 1 220px; min-width: 220px; }
.phone-card-copy h4, .dog-card-copy h4 { font-size: 1.02rem; margin-bottom: 8px; display: flex; align-items: center; }
.phone-card-copy p, .dog-card-copy p { color: var(--text-body); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.dog-card { flex-direction: row-reverse; }
.dog-illustration { min-width: 120px; display: flex; justify-content: center; flex-shrink: 0; }

/* ============ PARTNERS ============ */
.partners { padding: 48px 0 56px; text-align: center; }
.partners-title { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 34px; }

.partners-marquee {
  width: 100%; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partners-track {
  display: flex; align-items: center; width: max-content;
  animation: partners-scroll 32s linear infinite; will-change: transform;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partner-logo {
  flex: 0 0 auto; height: 40px; margin-right: 44px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85; transition: opacity .2s ease;
}
.partner-logo:hover { opacity: 1; }
/* Os arquivos de logo já estão recortados na área real da marca, então a
   mesma altura garante o mesmo tamanho visual; a largura segue a proporção. */
.partner-logo img {
  height: 100%; width: auto; max-width: 160px; object-fit: contain; display: block;
  filter: brightness(0) invert(1);
}

/* ============ FOOTER ============ */
.site-footer { background: var(--black-premium); border-top: 1px solid var(--border-soft); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; line-height: 1.5; max-width: 240px; }
.footer-ecosystem { color: var(--gold) !important; }
.footer-col h5 { font-size: 0.88rem; color: var(--white); margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col a { display: flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 0.86rem; margin-bottom: 12px; transition: color .2s ease; }
.footer-col a svg { flex-shrink: 0; }
.footer-col a:hover { color: var(--blue-accent); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-body);
}
.social-icon:hover { border-color: var(--blue-accent); color: var(--blue-accent); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; color: var(--text-muted); font-size: 0.8rem; flex-wrap: wrap; gap: 10px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--white); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
body.wizard-open .whatsapp-float { opacity: 0; visibility: hidden; pointer-events: none; }

/* ============ WIZARD MODAL ============ */
.wizard-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4,6,12,0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.wizard-overlay.is-open { opacity: 1; visibility: visible; }
.wizard-modal {
  position: relative;
  width: 100%; max-width: 620px; max-height: 90vh;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column;
  transform: translateY(16px) scale(0.98);
  transition: transform .25s ease;
}
.wizard-overlay.is-open .wizard-modal { transform: translateY(0) scale(1); }
.wizard-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.6rem; line-height: 1; z-index: 2;
}
.wizard-close:hover { color: var(--white); }

.wizard-header { padding: 30px 32px 18px; border-bottom: 1px solid var(--border-soft); }
.wizard-header h2 { font-size: 1.3rem; margin-bottom: 8px; }
.wizard-header p { color: var(--text-muted); font-size: 0.86rem; max-width: 460px; line-height: 1.5; }

.wizard-progress { margin-top: 20px; }
.wizard-progress-bar { height: 5px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.wizard-progress-fill {
  height: 100%; width: 11.11%; background: linear-gradient(90deg, var(--blue-main), var(--blue-accent));
  transition: width .3s ease; border-radius: 4px;
}
.wizard-steps-dots { display: flex; justify-content: space-between; margin-top: 8px; }
.wizard-steps-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.14); transition: background .2s ease;
}
.wizard-steps-dots span.is-active, .wizard-steps-dots span.is-done { background: var(--blue-accent); }

.wizard-body { padding: 28px 32px 32px; overflow-y: auto; }
.wizard-step { display: none; border: none; margin: 0; padding: 0; animation: fadeIn .3s ease; }
.wizard-step.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(8px);} to { opacity: 1; transform: translateX(0);} }
.wizard-step legend { font-size: 0.82rem; font-weight: 600; color: var(--blue-accent); letter-spacing: 0.02em; margin-bottom: 14px; padding: 0; }
.step-question { font-size: 0.98rem; font-weight: 500; margin-bottom: 14px; color: var(--white); }
.step-question small { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; }

.radio-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.radio-list-inline { flex-direction: row; flex-wrap: wrap; }
.radio-option, .checkbox-option, .toggle-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft); background: var(--surface-2);
  cursor: pointer; font-size: 0.9rem; color: var(--text-body);
  transition: border-color .15s ease, background .15s ease;
}
.radio-list-inline .radio-option { flex: 1; justify-content: center; }
.radio-option:hover, .checkbox-option:hover { border-color: rgba(89,183,255,0.4); }
.radio-option input, .checkbox-option input { accent-color: var(--blue-accent); width: 16px; height: 16px; }
.radio-option:has(input:checked), .checkbox-option:has(input:checked) {
  border-color: var(--blue-accent); background: rgba(47,107,255,0.1); color: var(--white);
}

.check-list-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }

.field-group { margin-bottom: 16px; }
.field-group label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 7px; }
.field-group input, .field-group select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft); background: var(--surface-2);
  color: var(--white); font-family: inherit; font-size: 0.92rem;
}
.field-group input:focus, .field-group select:focus { outline: none; border-color: var(--blue-accent); }
.field-row { display: flex; gap: 14px; }
.field-row .field-group { flex: 1; }
.field-group-small { max-width: 110px; }

.beneficiary-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.beneficiary-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft); background: var(--surface-2);
}
.beneficiary-icon {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(47,107,255,0.14);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.beneficiary-item strong { display: block; font-size: 0.9rem; }
.beneficiary-item small { color: var(--text-muted); font-size: 0.78rem; }

.toggle-group { display: flex; gap: 10px; margin-bottom: 20px; }
.toggle-group-3 { margin-bottom: 4px; }
.toggle-option { flex: 1; justify-content: center; }

.wizard-actions {
  display: flex; align-items: center; justify-content: space-between; margin-top: 8px;
}

.wizard-success { text-align: center; padding: 10px 0 4px; }
.success-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(62,213,152,0.15); color: #3ED598;
  display: flex; align-items: center; justify-content: center;
}
.wizard-success h3 { font-size: 0.82rem; font-weight: 600; color: var(--blue-accent); margin-bottom: 10px; }
.wizard-success h4 { font-size: 1.2rem; margin-bottom: 12px; }
.wizard-success p { color: var(--text-body); font-size: 0.92rem; max-width: 420px; margin: 0 auto 26px; line-height: 1.6; }
.wizard-success .btn { margin-bottom: 12px; }

/* ============ SOLUTION PAGES ============ */
.breadcrumb {
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 26px;
}
.breadcrumb a { color: var(--text-muted); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--blue-accent); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--white); }

.solution-hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.solution-hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 640px;
  background: radial-gradient(ellipse at 30% 0%, rgba(47,107,255,0.16), transparent 60%);
  pointer-events: none;
}
.solution-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.solution-hero-content h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.2; letter-spacing: -0.01em; }
.solution-hero-content .hero-subtitle { margin-top: 20px; max-width: 480px; }
.solution-hero-visual { display: flex; align-items: center; justify-content: center; }
.solution-hero-visual .icon-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(47,107,255,0.28), rgba(11,15,26,0) 70%);
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  animation: pulseGlow 4s ease-in-out infinite;
}
.solution-hero-visual .icon-circle svg { width: 132px; height: 132px; color: var(--blue-accent); }

.benefits-section { padding: 70px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.benefit-card {
  background: var(--surface-1); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 28px 24px; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(89,183,255,0.4); background: var(--surface-2); }
.benefit-icon {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(47,107,255,0.14); color: var(--blue-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.benefit-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

.steps-section { padding: 70px 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 36px; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-deep)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; margin-bottom: 16px;
}
.step-item h3 { font-size: 1rem; margin-bottom: 6px; }
.step-item p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.55; }

.trust-strip { padding: 46px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; }
.trust-strip-item { display: flex; align-items: center; gap: 10px; color: var(--text-body); font-size: 0.92rem; }
.trust-strip-item svg { color: var(--blue-accent); flex-shrink: 0; }

.faq-section { padding: 70px 0; }
.faq-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--surface-1); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 0.96rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--blue-accent);
  transition: transform .2s ease; flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); font-size: 0.9rem; margin-top: 14px; line-height: 1.6; }

.cta-banner { padding: 56px 0; background: linear-gradient(135deg, var(--blue-deep), var(--blue-main)); }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.cta-banner h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--white); max-width: 560px; }
.cta-banner .hero-actions { margin-top: 0; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.4); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-1); border-bottom: 1px solid var(--border-soft);
    padding: 10px 24px 20px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    display: none; box-shadow: none; border: none; background: transparent; padding: 4px 0 0;
    width: 100%;
  }
  .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-menu.is-open { display: block; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; height: 340px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .solution-hero-inner { grid-template-columns: 1fr; }
  .solution-hero-visual { order: -1; }
  .solution-hero-visual .icon-circle { width: 220px; height: 220px; }
  .solution-hero-visual .icon-circle svg { width: 104px; height: 104px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner { height: 66px; }
  .site-logo { height: 46px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .phone-card, .dog-card { flex-direction: column; text-align: center; }
  .dog-card { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { flex-direction: column; }
  .field-group-small { max-width: none; }
  .check-list-inputs { grid-template-columns: 1fr; }
  .wizard-body { padding: 22px 20px 26px; }
  .wizard-header { padding: 24px 20px 16px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}
