/* ==========================================================================
   Ubivis / UBI Genius — landing page styles
   Identidade visual: manual_marca.md
   ========================================================================== */

:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --c-orange: #F97316;
  --c-orange-text: #B83A0A;
  --c-orange-hover: #A8350A;
  --c-amber: #FBBF24;
  --c-blue: #18A0FB;
  --c-title: #00234B;

  --c-white: #FFFFFF;
  --c-light: #F8FAFC;
  --c-border-lgt: #E2E8F0;
  --c-text: #1E293B;
  --c-text-secondary: #475569;
  --c-muted: #64748B;

  --c-dark: #0B1829;
  --c-dark-text: #E8EAF0;
  --c-dark-muted: #AAB4C5;
  --c-dark-border: rgba(255,255,255,0.07);
  --footer-bg: #060E1A;
  --c-footer-muted: #7E8B9E;

  --max-w: 1200px;
  --container-px: 32px;
  --section-py: 96px;
  --radius: 10px;
  --radius-lg: 16px;
}

/* ----- Base / reset ----- */
* { box-sizing: border-box; min-width: 0; }

html { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--c-dark);
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--c-blue); text-decoration: none; }
a:hover { color: #3fb0ff; }

h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }

input, select { font-family: var(--font-body); width: 100%; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ----- Page wrapper ----- */
.page {
  background: var(--c-dark);
  color: var(--c-dark-text);
  min-height: 100vh;
}

/* ----- Header ----- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-px);
  height: 68px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,24,41,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-dark-border);
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img { height: 38px; width: auto; display: block; }
.logo-img--sm { height: 30px; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav-phone { color: var(--c-dark-muted); font-size: 14.5px; font-weight: 600; }
.nav-phone:hover { color: var(--c-dark-text); }

.btn-nav {
  background: var(--c-orange-text);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-display);
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--c-orange-hover); color: #fff; transform: translateY(-1px); }

/* ----- Hero / diagnostico ----- */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px var(--container-px) 90px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 30% 40%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.14) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-dark-text);
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.hero-title-accent { color: var(--c-orange); }
.hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-dark-muted);
  margin-top: 22px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-dark-text);
  margin-top: 14px;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero-cta-group { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; position: relative; z-index: 1; }

.btn-primary-hero {
  background: var(--c-orange-text);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary-hero:hover { background: var(--c-orange-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.45); }

.btn-whatsapp-hero {
  display: flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-dark-muted);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-whatsapp-hero:hover { color: var(--c-dark-text); border-color: rgba(255,255,255,0.3); }

/* ----- Lead capture card / form ----- */
.result-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.result-card h3 { font-size: 20px; color: var(--c-title); margin-bottom: 10px; }
.result-card p { font-family: var(--font-body); font-size: 14.5px; color: var(--c-text-secondary); line-height: 1.6; }

.lead-form {
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.lead-form-header { grid-column: 1 !important; }
.lead-form-header h3 { font-size: 18px; color: var(--c-title); margin-bottom: 4px; }
.lead-form-header p { font-family: var(--font-body); font-size: 13px; color: var(--c-muted); }

.field {
  background: var(--c-light);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--c-title);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.field--full { grid-column: 1 !important; }

.field-label {
  grid-column: 1 !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-title);
  margin: -2px 0 -6px;
}

.field-choice-group {
  grid-column: 1 !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.field-choice {
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius);
  padding: 14px 10px;
  color: var(--c-text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.field-choice:hover { border-color: var(--c-orange); }
.field-choice.is-selected {
  border-color: var(--c-orange);
  background: rgba(249,115,22,0.08);
  color: var(--c-orange-text);
  font-weight: 500;
}
@media (max-width: 480px) {
  .field-choice-group { grid-template-columns: repeat(2, 1fr); }
}

.btn-submit {
  grid-column: 1 !important;
  background: var(--c-orange-text);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--c-orange-hover); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  grid-column: 1 !important;
  font-family: var(--font-body);
  font-size: 13px;
  color: #B91C1C;
  margin: -4px 0 0;
}

.is-hidden { display: none !important; }

/* ----- Lead modal (becomes an overlay on mobile, see breakpoints) ----- */
.lead-modal-backdrop,
.lead-modal-close { display: none; }
body.modal-open { overflow: hidden; }

/* ----- Logos strip ----- */
.section-logos { padding: var(--section-py) var(--container-px); }
.section-logos--light { background: var(--c-light); }
.section-logos--light > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.section-eyebrow-center {
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
}
.logos-carousel {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 56px;
  animation: logosScroll 40s linear infinite;
}
.logos-carousel:hover .logos-track { animation-play-state: paused; }
.logo-item {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.6);
}

@keyframes logosScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; }
}

/* ----- Generic section layouts ----- */
.section-split { max-width: var(--max-w); margin: 0 auto; padding: var(--section-py) var(--container-px); display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; isolation: isolate; }
.section-split--white::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--c-white);
  z-index: -1;
}

.section-narrow-center { max-width: 900px; margin: 0 auto; padding: var(--section-py) var(--container-px); text-align: center; }
.section-narrow-center--light { background: var(--c-light); max-width: none; }
.section-narrow-center--light > * { max-width: 900px; margin-left: auto; margin-right: auto; }

.section-medium { max-width: 1000px; margin: 0 auto; padding: var(--section-py) var(--container-px); }
.section-medium--white { background: var(--c-white); max-width: none; }
.section-medium--white > * { max-width: 1000px; margin-left: auto; margin-right: auto; }

.section-wide { max-width: var(--max-w); margin: 0 auto; padding: var(--section-py) var(--container-px); }
.section-wide--white { background: var(--c-white); max-width: none; }
.section-wide--white > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.section-wide--light { background: var(--c-light); max-width: none; }
.section-wide--light > * { max-width: var(--max-w); margin-left: auto; margin-right: auto; }

.section-faq { max-width: 900px; margin: 0 auto; padding: var(--section-py) var(--container-px); }
.section-faq--light { background: var(--c-light); max-width: none; }
.section-faq--light > * { max-width: 900px; margin-left: auto; margin-right: auto; }

.section-final { max-width: 1000px; margin: 0 auto; padding: 0 var(--container-px) 110px; text-align: center; background: var(--c-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange-text);
  border: 1px solid rgba(249,115,22,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); }

.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.02em; color: var(--c-title); line-height: 1.2; margin-bottom: 18px; }
.section-title--mb20 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.02em; color: var(--c-title); line-height: 1.2; margin-bottom: 20px; }
.section-title--plain { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.02em; color: var(--c-title); line-height: 1.2; }
.section-title--sm { font-size: 32px; font-weight: 700; color: var(--c-title); line-height: 1.25; margin-bottom: 20px; }

.section-text { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--c-text-secondary); margin-bottom: 22px; }
.section-text-mt { font-family: var(--font-body); font-weight: 300; font-size: 16px; line-height: 1.65; color: var(--c-text-secondary); margin-top: 16px; }
.section-text-center { font-family: var(--font-body); font-weight: 300; font-size: 16.5px; line-height: 1.7; color: var(--c-text-secondary); }
.section-text-center--mt { margin-top: 18px; }

.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-header-center--mb56 { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header-center--mb48 { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header-center--wide { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.section-header-plain--mb44 { text-align: center; margin-bottom: 44px; }

/* ----- Bulleted lists (challenges / fitFor) ----- */
.bullet-list { }
.bullet-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.bullet-dot-teal { width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange); margin-top: 8px; flex-shrink: 0; }
.bullet-text { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; color: var(--c-text); line-height: 1.5; }

.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-mark { color: var(--c-orange); flex-shrink: 0; display: flex; }
.check-mark svg { width: 18px; height: 18px; }
.check-text--lg { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; color: var(--c-text); line-height: 1.5; }

/* ----- Media card (opportunity photo) ----- */
.media-card {
  background: var(--c-light);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius-lg);
  padding: 8px;
}
.media-img { width: 100%; height: auto; aspect-ratio: 10 / 7; display: block; object-fit: contain; border-radius: var(--radius); }

/* ----- Depoimentos (prova social) ----- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,35,75,0.1); transform: translateY(-2px); }
.testimonial-quote-icon { width: 28px; height: 28px; color: var(--c-orange); flex-shrink: 0; }
.testimonial-quote { font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--c-text-secondary); line-height: 1.6; }
.testimonial-footer { display: flex; align-items: center; gap: 14px; }
.testimonial-logo { height: 28px; width: auto; max-width: 90px; object-fit: contain; flex-shrink: 0; }
.testimonial-person { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--c-title); }
.testimonial-role { font-family: var(--font-body); font-size: 12.5px; color: var(--c-muted); line-height: 1.4; }
.testimonial-linkedin-icon { width: 15px; height: 15px; color: var(--c-blue); flex-shrink: 0; }

/* ----- Data results checklist ----- */
.check-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.check-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.check-card:hover { box-shadow: 0 8px 32px rgba(0,35,75,0.1); transform: translateY(-2px); }
.check-text { font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--c-text); line-height: 1.4; }

/* ----- Como funciona / steps ----- */
.steps-grid { display: flex; align-items: flex-start; gap: 0; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-amber), var(--c-orange), rgba(249,115,22,0.2));
}
.step-item { display: flex; align-items: flex-start; flex: 1; }
.step-card {
  background: transparent;
  border: none;
  padding: 0;
  flex: 1;
  text-align: center;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.step-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--c-title); margin-bottom: 8px; }
.step-desc { font-family: var(--font-body); font-weight: 300; font-size: 13.5px; line-height: 1.5; color: var(--c-muted); max-width: 170px; margin: 0 auto; }
.step-arrow { display: none; }

/* ----- Fit-for checklist ----- */
.check-grid-2--tight { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

/* ----- Benefícios ----- */
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.benefit-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lgt);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: 0 8px 32px rgba(0,35,75,0.1); transform: translateY(-2px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249,115,22,0.1);
  color: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 26px; height: 26px; }
.step-num svg { width: 16px; height: 16px; }
.benefit-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--c-title); margin-bottom: 10px; line-height: 1.3; }
.benefit-desc { font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.5; color: var(--c-muted); }

/* ----- Otimização automática por IA (ciclo animado 01–04) -----
   Os cards reusam .benefit-card / .benefit-title / .benefit-desc e o badge
   reusa .step-num. Regras declaradas depois desses blocos de propósito:
   .ai-card.is-active precisa vencer .benefit-card:hover no empate de
   especificidade. */
.ai-loop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ai-loop-rail {
  height: 2px;
  border-radius: 2px;
  background: var(--c-border-lgt);
  overflow: hidden;
  margin-bottom: 28px;
}
.ai-loop-progress {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--c-orange), var(--c-amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.ai-card { transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s; }
.ai-card .step-num { margin: 0 0 18px; transition: background 0.3s, border-color 0.3s, color 0.3s; }

/* Entrada em cascata — armada pelo JS (.is-armed), então sem JS os cards
   permanecem visíveis. A animação usa opacity/translate de propósito: deixa
   transform livre para o hover e para o passo aceso. */
.ai-loop.is-armed .ai-card { opacity: 0; }
.ai-loop.is-armed.is-visible .ai-card { animation: aiCardIn 0.5s ease forwards; }
.ai-loop.is-armed.is-visible .ai-card:nth-child(2) { animation-delay: 0.1s; }
.ai-loop.is-armed.is-visible .ai-card:nth-child(3) { animation-delay: 0.2s; }
.ai-loop.is-armed.is-visible .ai-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes aiCardIn {
  from { opacity: 0; translate: 0 14px; }
  to { opacity: 1; translate: 0 0; }
}

/* Passo aceso no ciclo */
.ai-card.is-active { border-color: rgba(249,115,22,0.45); box-shadow: 0 8px 32px rgba(0,35,75,0.1); transform: translateY(-4px); }
.ai-card.is-active .step-num { background: var(--c-orange-text); border-color: var(--c-orange-text); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .ai-loop .ai-card { opacity: 1 !important; transform: none !important; animation: none; transition: none; }
  .ai-loop-progress { transform: scaleX(1); transition: none; }
}

/* ----- Outcomes (accent section, dark) ----- */
.section-accent { background: var(--c-dark); padding: 80px var(--container-px); }
.section-accent-inner { max-width: 900px; margin: 0 auto; }
.eyebrow-center {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 32px;
}
.eyebrow-center::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-orange); }
.section-title-center { text-align: center; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--c-dark-text); line-height: 1.25; margin-bottom: 36px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.outcome-item { display: flex; gap: 12px; align-items: flex-start; }
.bullet-dot-light { width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange); margin-top: 8px; flex-shrink: 0; }
.outcome-text { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; color: var(--c-dark-text); line-height: 1.5; }

/* ----- FAQ ----- */
.faq-item { border-bottom: 1px solid var(--c-border-lgt); padding: 22px 0; cursor: pointer; }
.faq-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-question { font-family: var(--font-display); font-size: 15.5px; color: var(--c-title); font-weight: 600; }
.faq-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-border-lgt);
  color: var(--c-muted);
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.faq-head:hover .faq-symbol {
  background: var(--c-blue);
  border-color: var(--c-title);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer { font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.7; color: var(--c-text-secondary); margin-top: 14px; max-width: 760px; }

/* ----- Final CTA ----- */
.final-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; color: var(--c-dark-text); line-height: 1.2; margin-bottom: 20px; padding-top: 96px; }
.final-text { font-family: var(--font-body); font-weight: 300; font-size: 17px; color: var(--c-dark-muted); margin-bottom: 36px; }
.final-cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary-final {
  display: inline-block;
  background: var(--c-orange-text);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-final:hover { background: var(--c-orange-hover); color: #fff; transform: translateY(-1px); }
.btn-whatsapp-final {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-dark-muted);
  padding: 15px 30px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-whatsapp-final:hover { color: var(--c-dark-text); border-color: rgba(255,255,255,0.3); }

/* ----- Sticky bottom bar ----- */
.sticky-bar {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11,24,41,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-dark-border);
  padding: 14px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-text { font-family: var(--font-body); font-size: 14.5px; color: var(--c-dark-text); }
.btn-primary-sticky {
  background: var(--c-orange-text);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-sticky:hover { background: var(--c-orange-hover); color: #fff; transform: translateY(-1px); }
.btn-whatsapp-sticky {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--c-dark-muted);
  padding: 9px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.btn-whatsapp-sticky:hover { color: var(--c-dark-text); border-color: rgba(255,255,255,0.3); }

/* ----- Footer ----- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--c-dark-border);
  padding: 48px var(--container-px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright { font-family: var(--font-body); font-size: 13.5px; color: var(--c-footer-muted); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-links { display: flex; align-items: center; gap: 8px; }
.footer-link { font-family: var(--font-body); font-size: 12.5px; color: var(--c-footer-muted); transition: color 0.2s; }
.footer-link:hover { color: var(--c-dark-text); }
.footer-link--btn { background: none; border: none; padding: 0; font: inherit; cursor: pointer; }
.footer-link-sep { color: var(--c-footer-muted); font-size: 12.5px; }

/* ----- Cookie consent card ----- */
.cookie-card {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 250;
  width: min(380px, calc(100vw - 40px));
  background: var(--c-dark);
  border: 1px solid var(--c-dark-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-card[hidden] { display: none; }
.cookie-card.is-visible { opacity: 1; transform: translateY(0); }
.cookie-card-view[hidden] { display: none; }
.cookie-card-title { font-family: var(--font-display); color: var(--c-white); font-size: 17px; margin-bottom: 8px; }
.cookie-card-text { font-family: var(--font-body); font-size: 13.5px; color: var(--c-dark-text); line-height: 1.5; }
.cookie-card-text a { color: var(--c-amber); }
.cookie-card-text a:hover { color: var(--c-orange); }
.cookie-card-actions { margin-top: 18px; }
.cookie-card-actions--row { display: flex; gap: 10px; }
.cookie-card-actions--row > * { flex: 1; }
.cookie-card-actions--stack { display: flex; flex-direction: column; gap: 10px; }
.btn-cookie-primary,
.btn-cookie-outline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13.5px;
  padding: 11px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-cookie-primary { background: var(--c-orange-text); color: #fff; border: none; }
.btn-cookie-primary:hover { background: var(--c-orange-hover); transform: translateY(-1px); }
.btn-cookie-outline { background: transparent; border: 1px solid var(--c-dark-border); color: var(--c-dark-text); }
.btn-cookie-outline:hover { border-color: rgba(255,255,255,0.3); }
.cookie-card-reject-link {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  text-decoration: underline;
  color: var(--c-dark-muted);
  font-family: var(--font-body);
  font-size: 12.5px;
  cursor: pointer;
}
.cookie-card-reject-link:hover { color: var(--c-dark-text); }
.cookie-category { padding: 12px 0; border-top: 1px solid var(--c-dark-border); }
.cookie-category:first-child { border-top: none; padding-top: 0; }
.cookie-category-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-category-name { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--c-white); }
.cookie-category-desc { font-family: var(--font-body); font-size: 12px; color: var(--c-dark-muted); margin-top: 4px; }
.cookie-toggle { position: relative; display: inline-block; width: 38px; height: 22px; flex: none; }
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--c-dark-border);
  border-radius: 11px;
  transition: background 0.2s;
}
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.cookie-toggle input:checked ~ .cookie-toggle-track { background: var(--c-orange); }
.cookie-toggle input:checked ~ .cookie-toggle-track::after { transform: translateX(16px); }
.cookie-toggle--locked {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
  flex: none;
  border-radius: 11px;
  background: #8A5232;
  opacity: 0.8;
  cursor: default;
}
.cookie-toggle--locked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

@media (max-width: 480px) {
  .cookie-card { left: 12px; right: 12px; bottom: 12px; width: auto; }
}

/* ----- Breakpoints ----- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .section-split { grid-template-columns: 1fr; }
  .check-grid-2,
  .check-grid-2--tight,
  .outcomes-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .steps-grid::before { display: none; }
  .step-item { flex-direction: column; align-items: center; }
  .benefits-grid,
  .ai-loop { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .site-header,
  .hero,
  .section-split,
  .section-narrow-center,
  .section-medium,
  .section-wide,
  .section-faq,
  .section-final,
  .section-accent,
  .sticky-bar,
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .check-grid-2 { grid-template-columns: 1fr; }
  .benefits-grid,
  .ai-loop { grid-template-columns: 1fr; }
  .nav { gap: 10px; }
  .nav-phone { display: none; }
  .logo-img { height: 32px; }
  .logo-img--sm { height: 28px; }
  .btn-nav { padding: 9px 16px; font-size: 13px; }
  .hero { padding-top: 40px; padding-bottom: 56px; gap: 40px; }
  .hero-title { max-width: none; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group a { justify-content: center; text-align: center; }
  .lead-form { padding: 22px; }
  .result-card { padding: 24px; }
  .testimonial-card { padding: 22px 20px; }
  .steps-grid { gap: 28px; }
  .step-item { align-items: center; text-align: center; }
  .step-card { text-align: center; margin: 0 auto; }
  .step-title { text-align: center; }
  .step-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .benefit-card { text-align: center; }
  .benefit-icon { margin-left: auto; margin-right: auto; }
  .ai-card .step-num { margin-left: auto; margin-right: auto; }
  .sticky-bar { flex-direction: column; padding: 14px 20px; gap: 10px; }
  .sticky-text { text-align: center; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-meta { align-items: center; }

  /* Lead form becomes a centered modal overlay on mobile */
  .lead-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
  }
  .lead-modal.is-open { opacity: 1; visibility: visible; }
  .lead-modal-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(6,14,26,0.72);
    backdrop-filter: blur(4px);
  }
  .lead-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: 88vh;
    overflow-y: auto;
  }
  .lead-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--c-white);
    color: var(--c-muted);
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .lead-modal-close svg { width: 16px; height: 16px; }
  .lead-modal-close:hover { color: var(--c-title); }
}

@media (max-width: 420px) {
  .btn-nav { padding: 8px 12px; font-size: 12px; }
  .logo-img { height: 28px; }
  .hero-title { font-size: clamp(26px, 7vw, 34px); }
  .lead-form { padding: 18px; }
  .result-card { padding: 20px; }
  .field { padding: 11px 12px; font-size: 13.5px; }
  .btn-primary-hero,
  .btn-whatsapp-hero { padding: 13px 18px; font-size: 14px; }
}
