/* ===========================
   DMS Consultoria — Landing v2
   Premium corporate redesign
   =========================== */

:root {
  --blue-dms: #0090BE;
  --blue-light: #00A6D0;
  --blue-soft: #CCE8F5;
  --blue-dark: #091C2E;
  --blue-dark-2: #0F2A40;
  --gray-text: #2D3F52;
  --gray-soft: #506070;
  --gray-line: #d4dde6;
  --gray-line-soft: #e4ecf2;
  --bg-light: #EAF2F8;
  --white: #FFFFFF;
  --green: #0F766E;
  --green-soft: #ecfdf5;

  --container: 1200px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-xs: 0 1px 2px rgba(11, 31, 51, 0.04);
  --shadow-sm: 0 2px 6px rgba(11, 31, 51, 0.05), 0 1px 1px rgba(11, 31, 51, 0.03);
  --shadow: 0 8px 24px -8px rgba(11, 31, 51, 0.10), 0 2px 6px -2px rgba(11, 31, 51, 0.05);
  --shadow-lg: 0 24px 50px -20px rgba(11, 31, 51, 0.22), 0 10px 20px -10px rgba(11, 31, 51, 0.1);
  --shadow-blue: 0 12px 30px -10px rgba(0, 166, 208, 0.35);

  --font: 'Manrope', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--gray-text);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

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

section { padding: 104px 0; position: relative; }
@media (max-width: 768px) { section { padding: 72px 0; } }

/* Section variants */
.section--white { background: var(--white); border-top: 1px solid var(--gray-line-soft); border-bottom: 1px solid var(--gray-line-soft); }
.section--soft { background: var(--bg-light); }
.section--tinted {
  background:
    radial-gradient(ellipse 900px 500px at 90% 10%, rgba(0,166,208,0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 90%, rgba(0,166,208,0.05), transparent 60%),
    linear-gradient(180deg, #EEF6F9 0%, #E6F2F7 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,166,208,0.12);
  border-bottom: 1px solid rgba(0,166,208,0.12);
}
.section--dark {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  position: relative;
  overflow: hidden;
}

/* Background patterns */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 31, 51, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 31, 51, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.bg-circles { position: absolute; pointer-events: none; }
.bg-circles svg { display: block; }

section > .container { position: relative; z-index: 1; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  color: var(--blue-dark);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.028em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-dms);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue-dms);
}
.section--dark .eyebrow { color: var(--blue-light); }
.section--dark .eyebrow::before { background: var(--blue-light); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head h2 { margin-top: 18px; }
.section-head p {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--gray-soft);
  text-wrap: pretty;
  line-height: 1.6;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section--dark .section-head p { color: rgba(255,255,255,0.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.18s var(--ease-out), background 0.18s, box-shadow 0.25s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--blue-dms);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: #008fb6;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(0,166,208,0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--blue-dark);
  border: 1px solid var(--gray-line);
}
.btn--ghost:hover { border-color: var(--blue-dark); background: var(--white); }
.btn--white { background: var(--white); color: var(--blue-dark); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn--wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(37,211,102,0.5);
}
.btn--wa:hover { background: #1fbb59; transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(37,211,102,0.55); }
.btn--sm { padding: 10px 16px; font-size: 0.875rem; }

/* ===== Logo ===== */
.logo-img {
  width: 260px;
  height: auto;
  max-height: 72px;
  display: block;
  object-fit: contain;
}
.logo-img--light {
  filter: brightness(0) invert(1);
}

/* legacy (unused, kept for safety) */
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-dms), var(--blue-light));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
  box-shadow: 0 6px 14px -4px rgba(0,166,208,0.55);
  position: relative;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 7px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-weight: 800; font-size: 1.05rem; color: var(--blue-dark); letter-spacing: -0.025em; }
.logo__sub {
  font-size: 0.68rem;
  color: var(--gray-soft);
  margin-top: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.logo--light .logo__name { color: var(--white); }
.logo--light .logo__sub { color: rgba(255,255,255,0.55); }

/* ===== Navbar ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 250, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.nav--scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--gray-line);
  box-shadow: 0 1px 0 rgba(11,31,51,0.02);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; height: 96px; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: color 0.15s;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--blue-dms);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease-out);
}
.nav__links a:hover { color: var(--blue-dark); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo .logo-img {
  height: 90px;
  width: auto;
  max-width: none;
  margin-top: -1.3rem;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__menu { display: none; padding: 8px; border-radius: 8px; }
.nav__menu:hover { background: var(--bg-light); }

@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav__cta .btn--ghost { display: none; }
}

@media (max-width: 540px) {
  .nav__inner { height: 68px; gap: 16px; }
  .nav__logo .logo-img { height: 42px; margin-top: 0; }
}

@media (max-width: 420px) {
  .nav__cta .btn--primary { display: none; }
}

.nav__mobile {
  display: none;
  border-top: 1px solid var(--gray-line);
  background: var(--white);
  padding: 12px 24px 20px;
}
.nav__mobile.is-open { display: block; }
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-line-soft);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 120px;
  background:
    radial-gradient(ellipse 900px 500px at 90% -5%, rgba(0,166,208,0.18), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 40%, rgba(0,166,208,0.08), transparent 60%),
    linear-gradient(180deg, var(--blue-soft) 0%, var(--bg-light) 70%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-line-soft);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
  pointer-events: none;
  z-index: 0;
}
.hero .bg-grid { opacity: 0.55; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero__sub {
  margin-top: 22px;
  font-size: 1.12rem;
  color: var(--gray-soft);
  max-width: 580px;
  text-wrap: pretty;
  line-height: 1.6;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__micro {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-soft);
  font-size: 0.88rem;
}
.hero__micro svg { color: var(--green); flex-shrink: 0; }
.hero__copy h1 { margin-top: 22px; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 48px 0 88px; }
}

/* Hero visual */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  justify-self: end;
}
@media (max-width: 960px) { .hero__visual { justify-self: center; max-width: 480px; aspect-ratio: 4 / 4.2; } }

.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 64px -24px rgba(11,31,51,0.35), 0 8px 24px -8px rgba(11,31,51,0.15);
  background: var(--blue-dark);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,31,51,0.05) 0%, transparent 35%, rgba(11,31,51,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__photo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__photo-tag .ind {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(0,184,216,0.3);
  animation: pulse-soft 2s ease-out infinite;
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero overlay cards */
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-card--primary {
  left: -28px;
  bottom: 90px;
  width: 64%;
  padding: 18px 20px;
}
.hero-card--highlight {
  right: -16px;
  bottom: -28px;
  width: 60%;
  padding: 22px 24px;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: rgba(255,255,255,0.92);
}
@media (max-width: 540px) {
  .hero-card--primary { left: 0; width: 72%; bottom: 80px; }
  .hero-card--highlight { right: 0; bottom: -20px; width: 66%; }
}
@media (max-width: 380px) {
  .hero-card { display: none; }
}

.hcard__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hcard__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,166,208,0.10);
  color: var(--blue-dms);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card--highlight .hcard__icon { background: rgba(0,166,208,0.18); color: var(--blue-light); }
.hcard__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-soft);
}
.hero-card--highlight .hcard__label { color: rgba(255,255,255,0.6); }
.hcard__list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.hcard__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-dark);
  line-height: 1.3;
}
.hcard__bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-dms); flex-shrink: 0; }
.hcard__quote {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  text-wrap: pretty;
  letter-spacing: -0.005em;
}

/* ===== Problem section (2-column with image) ===== */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .problem__grid { grid-template-columns: 1fr; gap: 56px; } }

.problem__copy h2 { margin-top: 16px; }
.problem__copy > p {
  margin-top: 18px;
  font-size: 1.06rem;
  color: var(--gray-soft);
  line-height: 1.6;
}
.problem__pains {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-line-soft);
}
.pain-item:first-child { border-top: none; padding-top: 0; }
.pain-item__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pain-item__text {
  font-size: 0.98rem;
  color: var(--blue-dark);
  font-weight: 500;
  line-height: 1.45;
  padding-top: 7px;
}

.problem__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 32px 64px -24px rgba(11,31,51,0.30), 0 8px 24px -8px rgba(11,31,51,0.12);
}
.problem__visual img { width: 100%; height: 100%; object-fit: cover; }
.problem__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,51,0.45) 0%, rgba(11,31,51,0.05) 40%, transparent 70%);
  z-index: 1;
}

.problem__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.problem__visual-badge .badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.problem__visual-badge .icon-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,144,190,0.14);
  color: var(--blue-dms);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.problem__visual-badge .badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
}
.problem__visual-badge .badge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.problem__visual-badge .badge-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  background: var(--bg-light);
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  color: var(--gray-text);
  letter-spacing: -0.005em;
}

/* ===== Authority / Numbers ===== */
.authority { position: relative; overflow: hidden; }
.authority h2 { max-width: 760px; margin-bottom: 56px; }
.authority .section-head { margin-bottom: 56px; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .numbers-grid { grid-template-columns: 1fr 1fr; } }

.num-cell {
  background: var(--blue-dark-2);
  padding: 36px 30px;
  position: relative;
  transition: background 0.25s;
}
.num-cell:hover { background: #182f4a; }
.num-cell__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,166,208,0.15);
  color: var(--blue-light);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.num-cell__value {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.num-cell__value .unit { color: var(--blue-dms); margin-left: 2px; }
.num-cell__value .small { font-size: 0.55em; font-weight: 700; }
.num-cell__label {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  max-width: 220px;
}

.authority__foot {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}
.authority__foot strong { color: var(--white); font-weight: 600; }

/* ===== Clients grid section ===== */
.clients-section { position: relative; }

.clients__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 960px) { .clients__grid { grid-template-columns: 1fr; gap: 40px; align-items: start; } }

.clients__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.clients__left h2 { margin-top: 16px; }
.clients__left > p {
  margin-top: 16px;
  font-size: 0.97rem;
  color: var(--gray-soft);
  line-height: 1.65;
  text-wrap: pretty;
}

.clients__badges {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 10px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 100px;
}
.client-badge__icon {
  color: var(--blue-dms);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.client-badge__text {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: -0.005em;
}

.clients__panel {
  background: #EEF5F9;
  border: 1px solid #C8DCE8;
  border-radius: 22px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.clients__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex: 1;
  align-content: space-between;
}
@media (max-width: 720px) { .clients__cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .clients__cards { grid-template-columns: 1fr; } }

.client-card {
  background: #FFFFFF;
  border: 1px solid #D2E5EE;
  border-radius: 13px;
  padding: 17px 18px;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,40,80,0.06);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, border-color 0.2s;
}
.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,144,190,0.12);
  border-color: #00A6D0;
}
.client-card__name {
  font-size: 0.83rem;
  font-weight: 700;
  color: #0B1F33;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.client-card__sub {
  font-size: 0.66rem;
  color: #64748B;
  margin-top: 3px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===== Partners strip ===== */
.partners-strip {
  padding: 72px 0;
  background:
    linear-gradient(180deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
  border-top: 1px solid var(--gray-line-soft);
  border-bottom: 1px solid var(--gray-line-soft);
  position: relative;
  overflow: hidden;
}
.partners-strip__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.partners-strip__head .eyebrow { justify-content: center; }
.partners-strip__head h3 {
  margin-top: 16px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.018em;
  line-height: 1.3;
  text-wrap: balance;
}
.partners-strip__head p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--gray-soft);
  line-height: 1.6;
}

.partners-strip__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .partners-strip__logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .partners-strip__logos { grid-template-columns: repeat(2, 1fr); } }

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--gray-line-soft);
  border-radius: 16px;
  height: 108px;
  filter: grayscale(0.1);
  opacity: 1;
  transition: filter 0.2s, opacity 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.partner-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  border-color: rgba(0,166,208,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.partner-logo-item img {
  max-width: 120px;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

/* ===== Solutions (4 large blocks) ===== */
#solucoes { position: relative; overflow: hidden; }
#solucoes::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,166,208,0.12), transparent 65%);
  pointer-events: none;
}
#solucoes::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,31,51,0.06), transparent 65%);
  pointer-events: none;
}
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .sol-grid { grid-template-columns: 1fr; } }

.sol-block {
  background: var(--white);
  border: 1px solid var(--gray-line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sol-block::after {
  content: "";
  position: absolute;
  left: 0; top: 36px; bottom: 36px;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-dms), transparent);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.25s;
}
.sol-block:hover::after { opacity: 1; }
.sol-block::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,166,208,0.06), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.sol-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,166,208,0.3);
}
.sol-block:hover::before { opacity: 1; }

.sol-block__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(0,166,208,0.04));
  color: var(--blue-dms);
  display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out);
}
.sol-block:hover .sol-block__icon { transform: rotate(-4deg) scale(1.05); }

.sol-block__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.018em;
  line-height: 1.25;
}
.sol-block__desc {
  font-size: 0.96rem;
  color: var(--gray-soft);
  line-height: 1.6;
}
.sol-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.sol-block__tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 6px 10px;
  background: var(--bg-light);
  border: 1px solid var(--gray-line);
  border-radius: 100px;
  color: var(--blue-dark);
  letter-spacing: -0.005em;
}

/* ===== Differentials (image + text) ===== */
.diff-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(0,166,208,0.08), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(11,31,51,0.04), transparent 60%),
    var(--white);
}
.diff-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,166,208,0.2), transparent);
}
.diff__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .diff__grid { grid-template-columns: 1fr; gap: 56px; } }

.diff__visual {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 32px 64px -24px rgba(11,31,51,0.35), 0 8px 24px -8px rgba(11,31,51,0.15);
}
.diff__visual img { width: 100%; height: 100%; object-fit: cover; }
.diff__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,51,0.75) 0%, rgba(11,31,51,0.20) 40%, transparent 70%);
  z-index: 1;
}

.diff__visual-stat {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
  z-index: 2;
}
.diff__visual-stat .big {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.diff__visual-stat .lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.005em;
  max-width: 180px;
  text-align: right;
  line-height: 1.4;
}

.diff__copy h2 { margin-top: 16px; }
.diff__copy > p {
  margin-top: 20px;
  font-size: 1.06rem;
  color: var(--gray-soft);
  line-height: 1.6;
  text-wrap: pretty;
}
.diff__checks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-check-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.diff-check-row__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(15,118,110,0.10);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-check-row__text {
  font-size: 0.98rem;
  color: var(--blue-dark);
  font-weight: 500;
  line-height: 1.45;
}


/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--gray-line) 0, var(--gray-line) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; z-index: 1; }
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-line);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dms);
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  position: relative;
}
.step__num::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,166,208,0.18);
}
.step__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: 0.93rem;
  color: var(--gray-soft);
  line-height: 1.55;
}

/* ===== Final CTA ===== */
.final-cta {
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(0,166,208,0.22), transparent 60%),
    radial-gradient(ellipse 500px 400px at 20% 80%, rgba(0,166,208,0.12), transparent 60%),
    var(--blue-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--white); max-width: 780px; margin: 18px auto 0; }
.final-cta > .container > p { margin: 22px auto 40px; max-width: 620px; font-size: 1.08rem; }

.final-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final-cta__contact {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 800px) { .final-cta__contact { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .final-cta__contact { grid-template-columns: 1fr; } }

.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-pill:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.contact-pill__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,166,208,0.18);
  color: var(--blue-light);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-pill__lbl { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact-pill__val { font-size: 0.88rem; color: var(--white); font-weight: 600; margin-top: 2px; word-break: break-word; }

/* ===== FAQ ===== */
#faq {
  background:
    radial-gradient(ellipse 800px 600px at 50% 0%, rgba(0,166,208,0.06), transparent 60%),
    var(--bg-light);
  position: relative;
  overflow: hidden;
}
#faq::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -160px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,166,208,0.08), transparent 65%);
  pointer-events: none;
}
#faq::after {
  content: "";
  position: absolute;
  bottom: 80px;
  right: -180px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,31,51,0.05), transparent 65%);
  pointer-events: none;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow-xs);
}
.faq-item[data-open="true"] {
  background: var(--white);
  border-color: rgba(0,166,208,0.3);
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
}
.faq-q__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dms);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.25s, color 0.25s;
  border: 1px solid var(--gray-line-soft);
}
.faq-item[data-open="true"] .faq-q__icon {
  transform: rotate(135deg);
  background: var(--blue-dms);
  color: var(--white);
  border-color: var(--blue-dms);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-item[data-open="true"] .faq-a { max-height: 400px; }
.faq-a__inner {
  padding: 0 24px 24px;
  color: var(--gray-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  text-wrap: pretty;
}

/* ===== Footer ===== */
.footer {
  background: #081827;
  color: rgba(255,255,255,0.6);
  padding: 72px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__about { font-size: 0.92rem; margin-top: 18px; line-height: 1.6; max-width: 280px; }
.footer__title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__list a, .footer__list span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__list a:hover { color: var(--blue-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== WhatsApp float ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px -4px rgba(37,211,102,0.55);
  z-index: 60;
  transition: transform 0.2s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ===== Reveal animations =====
   Initial state is gated behind body.js-reveal so non-JS / frame-throttled
   contexts always show content. JS adds the body class before the observer
   queues `is-visible` toggles, and a safety timeout marks everything visible. */
.reveal { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal--scale { transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }

body.js-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}
body.js-reveal .reveal--scale:not(.is-visible) {
  opacity: 0;
  transform: scale(0.96);
}
.reveal.is-visible, .reveal--scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* utilities */
.text-green { color: var(--green); }
.text-dms { color: var(--blue-dms); }
