:root {
  --bg0: #fffaf2;
  --bg1: #f6efe2;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-2: rgba(255, 255, 255, 0.86);
  --stroke: rgba(18, 42, 33, 0.10);
  --stroke-2: rgba(18, 42, 33, 0.16);
  --text: #0f241c;
  --muted: rgba(15, 36, 28, 0.70);
  --muted-2: rgba(15, 36, 28, 0.56);
  --brand: #ff7a00;
  --brand-2: #ffb15c;
  --accent: #0a7a44;
  --accent-2: #10c57a;
  --seg-a: rgba(16, 197, 122, 0.20);
  --seg-b: rgba(255, 122, 0, 0.18);
  --seg-ink: rgba(15, 36, 28, 0.92);
  --shadow: 0 28px 80px rgba(15, 36, 28, 0.14);
  --shadow-soft: 0 18px 44px rgba(15, 36, 28, 0.10);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 48px));
  --header-h: 78px;
  --float-clear: 96px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 6% 0%, rgba(255, 122, 0, 0.15), transparent 60%),
    radial-gradient(900px 520px at 96% 6%, rgba(16, 197, 122, 0.16), transparent 62%),
    radial-gradient(900px 520px at 48% 110%, rgba(255, 177, 92, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

body[data-segment="residencial"] {
  --seg-a: rgba(16, 197, 122, 0.22);
  --seg-b: rgba(255, 177, 92, 0.18);
}

body[data-segment="comercial"] {
  --seg-a: rgba(255, 122, 0, 0.22);
  --seg-b: rgba(255, 177, 92, 0.18);
}

body[data-segment="industrial"] {
  --seg-a: rgba(10, 122, 68, 0.22);
  --seg-b: rgba(16, 197, 122, 0.20);
}

body[data-segment="rural"] {
  --seg-a: rgba(255, 177, 92, 0.22);
  --seg-b: rgba(10, 122, 68, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.32);
  outline-offset: 3px;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(255, 122, 0, 0.16);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 36, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 36, 28, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 50% 12%, black 30%, transparent 70%);
}

.bg__glow {
  position: absolute;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.28;
  transform: translate3d(0, 0, 0);
  animation: drift 14s ease-in-out infinite;
}

.bg__glow--a {
  left: -16rem;
  top: -18rem;
  background: rgba(255, 122, 0, 0.38);
}

.bg__glow--b {
  right: -18rem;
  top: -11rem;
  background: rgba(16, 197, 122, 0.32);
  animation-delay: -4s;
}

.bg__glow--c {
  left: 22%;
  bottom: -22rem;
  background: rgba(255, 177, 92, 0.34);
  animation-delay: -8s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -10px, 0) scale(1.05);
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 242, 0.62);
  border-bottom: 1px solid rgba(15, 36, 28, 0.08);
}

.header.is-scrolled {
  background: rgba(255, 250, 242, 0.78);
  border-bottom-color: rgba(15, 36, 28, 0.12);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.0), rgba(255, 122, 0, 0.75), rgba(16, 197, 122, 0.75), rgba(16, 197, 122, 0.0));
  transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
  opacity: 0.85;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  display: block;
  height: 46px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(15, 36, 28, 0.10));
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
}

.brand__mark img {
  width: 100%;
  height: 100%;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.06;
  min-width: 0;
}

.brand__text strong {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: rgba(15, 36, 28, 0.92);
}

.brand__text small {
  font-weight: 900;
  font-size: 0.76rem;
  color: rgba(10, 122, 68, 0.86);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40ch;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-weight: 900;
  color: rgba(15, 36, 28, 0.82);
  padding: 10px 6px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(15, 36, 28, 0.04);
  color: rgba(15, 36, 28, 0.95);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  touch-action: manipulation;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: rgba(15, 36, 28, 0.84);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.98), rgba(255, 177, 92, 0.95));
  color: rgba(26, 14, 6, 0.96);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.22);
}

.btn--whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.98), rgba(18, 140, 126, 0.98));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(18, 140, 126, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(15, 36, 28, 0.10);
  color: rgba(15, 36, 28, 0.90);
}

.btn--full {
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 197, 122, 0.12);
  border: 1px solid rgba(16, 197, 122, 0.18);
  color: rgba(10, 122, 68, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill--soft {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(15, 36, 28, 0.10);
  color: rgba(15, 36, 28, 0.88);
}

.pill__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Main */
main {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0;
}

.section--solid {
  background: #0b241a;
  color: rgba(255, 255, 255, 0.92);
}

.section--solid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section--tint,
.section--tint-2 {
  isolation: isolate;
}

.section--tint::before,
.section--tint-2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-top: 1px solid rgba(15, 36, 28, 0.08);
  border-bottom: 1px solid rgba(15, 36, 28, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(255, 255, 255, 0.35);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}

.section--tint::before {
  background:
    radial-gradient(900px 260px at 18% 0%, rgba(255, 122, 0, 0.14), transparent 60%),
    radial-gradient(860px 260px at 100% 28%, rgba(16, 197, 122, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26));
}

.section--tint-2::before {
  background:
    radial-gradient(900px 260px at 14% 18%, rgba(16, 197, 122, 0.14), transparent 60%),
    radial-gradient(860px 260px at 98% 0%, rgba(255, 177, 92, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
}

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

.section__header {
  display: grid;
  gap: 12px;
  max-width: 70ch;
}

.section__header h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.35rem);
  line-height: 1.05;
}

.section__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pill--dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.90);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-pill.link-pill--dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.link-pill.link-pill--dark:hover,
.link-pill.link-pill--dark:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

/* Atendimento regional */
.regional {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.regional__title {
  margin: 14px 0 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 1.35rem + 1.8vw, 2.55rem);
  line-height: 1.04;
}

.regional__lead {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
  max-width: 62ch;
}

.regional__chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checklist.checklist--invert li {
  color: rgba(255, 255, 255, 0.86);
}

.checklist.checklist--invert li::before {
  background: rgba(16, 197, 122, 0.22);
  border-color: rgba(16, 197, 122, 0.26);
}

.checklist.checklist--invert li::after {
  border-left-color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.92);
}

.regional__panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  transform: perspective(1100px) translate3d(0, var(--lift, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.regional__panel:hover,
.regional__panel:focus-within {
  --lift: -3px;
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.regional__panel-head h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.94);
}

.regional__panel-head p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.regional__panel-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coverage-card {
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.coverage-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  padding: clamp(26px, 6vh, 52px) 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.hero__copy h1 {
  margin: 16px 0 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(2.15rem, 1.3rem + 2.9vw, 3.35rem);
  line-height: 1.04;
}

.hero__copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.segment-tabs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seg-btn {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.10);
  background: rgba(255, 255, 255, 0.70);
  cursor: pointer;
  font-weight: 950;
  letter-spacing: 0.02em;
  touch-action: manipulation;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.seg-btn:hover,
.seg-btn:focus-visible {
  transform: translateY(-2px);
}

.seg-btn.is-active {
  background: rgba(255, 122, 0, 0.14);
  border-color: rgba(255, 122, 0, 0.26);
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  background:
    radial-gradient(520px 140px at 20% 0%, rgba(255, 122, 0, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  transform: perspective(900px) translate3d(0, var(--lift, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.mini-card:hover,
.mini-card:focus-within {
  --lift: -3px;
  border-color: rgba(15, 36, 28, 0.16);
  box-shadow: var(--shadow);
}

.mini-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(16, 197, 122, 0.12);
  border: 1px solid rgba(16, 197, 122, 0.18);
  color: rgba(10, 122, 68, 0.92);
}

.mini-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card strong {
  display: block;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.mini-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  isolation: isolate;
}

.visual-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 18px;
  background:
    radial-gradient(900px 360px at 0% 0%, var(--seg-a), transparent 60%),
    radial-gradient(700px 340px at 100% 0%, var(--seg-b), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 320ms var(--ease-out);
}

.visual-shell::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(520px 220px at 18% 12%, rgba(255, 255, 255, 0.55), transparent 60%),
    radial-gradient(540px 260px at 82% 18%, rgba(255, 255, 255, 0.38), transparent 62%);
  opacity: 0.55;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 0%, black 15%, transparent 70%);
}

.visual-shell__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  color: rgba(15, 36, 28, 0.86);
}

.chip--brand {
  background: rgba(255, 122, 0, 0.14);
  border-color: rgba(255, 122, 0, 0.22);
  color: rgba(15, 36, 28, 0.9);
}

.steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

@media (min-width: 740px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.segment-card {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 260px at 10% 0%, var(--seg-a), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.60));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.segment-card.is-swap {
  animation: segSwap 340ms var(--ease-out);
}

@keyframes segSwap {
  0% {
    transform: translate3d(0, 4px, 0);
    opacity: 0.78;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.segment-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(520px 220px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.60), transparent 60%),
    radial-gradient(640px 260px at var(--mx, 50%) var(--my, 50%), var(--seg-a), transparent 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.segment-card:hover,
.segment-card:focus-within {
  border-color: rgba(15, 36, 28, 0.16);
  box-shadow: var(--shadow);
}

.segment-card:hover::before,
.segment-card:focus-within::before {
  opacity: 1;
}

.segment-card > * {
  position: relative;
  z-index: 1;
}

.segment-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.segment-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.chips {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(15, 36, 28, 0.10);
}

.step-card__n {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: rgba(16, 197, 122, 0.14);
  border: 1px solid rgba(16, 197, 122, 0.20);
  color: rgba(10, 122, 68, 0.92);
}

.step-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  line-height: 1.45;
}

/* Hero bubbles */
.bubbles {
  position: absolute;
  inset: -46px -46px -46px -46px;
  z-index: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: var(--size, 90px);
  height: var(--size, 90px);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.0) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  opacity: 0.95;
  transform: translate3d(0, 0, 0);
  animation: float 8.5s ease-in-out infinite;
}

.bubble--a {
  --size: 96px;
  left: -26px;
  top: 18px;
  animation-delay: -2s;
}

.bubble--b {
  --size: 72px;
  right: -18px;
  top: -10px;
  animation-delay: -4.4s;
}

.bubble--c {
  --size: 88px;
  right: -14px;
  bottom: -18px;
  animation-delay: -1.2s;
}

.bubble--d {
  --size: 62px;
  left: -18px;
  bottom: -22px;
  animation-delay: -6.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(15, 36, 28, 0.10);
  color: rgba(15, 36, 28, 0.88);
  font-weight: 950;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease;
}

.scroll-hint:hover,
.scroll-hint:focus-visible {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
}

/* Carousel */
.carousel {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 36, 28, 0.10);
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 36, 28, 0.10);
  background: rgba(255, 255, 255, 0.70);
}

.carousel__track {
  display: flex;
  width: 100%;
  transform: translate3d(calc(var(--carousel-x, 0px)), 0, 0);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.slide {
  min-width: 100%;
  padding: 16px 16px;
}

.slide strong {
  display: block;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.slide p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.carousel__controls {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.10);
  background: rgba(255, 255, 255, 0.70);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.84);
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.22);
  background: rgba(15, 36, 28, 0.06);
  cursor: pointer;
  padding: 0;
}

.dot.is-active {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(255, 177, 92, 0.95));
  border-color: transparent;
  width: 22px;
}

/* Services */
.service-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(800px 220px at 30% -10%, rgba(255, 122, 0, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  transform: perspective(1100px) translate3d(0, var(--lift, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.service-card:hover,
.service-card:focus-within {
  --lift: -4px;
  border-color: rgba(15, 36, 28, 0.16);
  box-shadow: var(--shadow);
}

.service-card.is-recommended {
  border-color: rgba(255, 122, 0, 0.28);
}

.service-card.is-recommended::after {
  content: "Recomendado";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.22);
  color: rgba(15, 36, 28, 0.86);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 240px at var(--mx, 50%) var(--my, 50%), rgba(16, 197, 122, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
}

.service-card__top {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.18);
  color: rgba(15, 36, 28, 0.92);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card strong {
  position: relative;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.service-card p {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card__link {
  position: relative;
  display: inline-flex;
  margin-top: 14px;
  font-weight: 950;
  color: rgba(15, 36, 28, 0.90);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  transition: transform 160ms ease, background 160ms ease;
}

.service-card__link:hover,
.service-card__link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
  margin-top: 18px;
}

.split h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  line-height: 1.05;
}

.split p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: rgba(15, 36, 28, 0.86);
  font-weight: 900;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(16, 197, 122, 0.16);
  border: 1px solid rgba(16, 197, 122, 0.22);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(10, 122, 68, 0.92);
  border-bottom: 2px solid rgba(10, 122, 68, 0.92);
  transform: rotate(-45deg);
}

.process-cards {
  display: grid;
  gap: 12px;
}

.process-card {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  transform: perspective(1100px) translate3d(0, var(--lift, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.process-card:hover,
.process-card:focus-within {
  --lift: -3px;
  border-color: rgba(15, 36, 28, 0.16);
  box-shadow: var(--shadow);
}

.process-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Region cards */
.region-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.region-card {
  padding: 16px 14px;
  border-radius: 22px;
  background:
    radial-gradient(700px 220px at 30% -10%, rgba(16, 197, 122, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  transform: perspective(1100px) translate3d(0, var(--lift, 0px), 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.region-card:hover,
.region-card:focus-within {
  --lift: -3px;
  border-color: rgba(15, 36, 28, 0.16);
  box-shadow: var(--shadow);
}

.region-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* FAQ */
.faq {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  max-width: 82ch;
}

.faq__item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 950;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: rgba(15, 36, 28, 0.60);
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* Modal */
.modal {
  width: min(720px, calc(100% - 28px));
  border: 0;
  border-radius: 24px;
  padding: 0;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.92);
}

.modal::backdrop {
  background: rgba(15, 36, 28, 0.28);
  backdrop-filter: blur(3px);
}

.modal__inner {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.modal__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.modal__top h3 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.modal__top p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.xbtn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.10);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* WhatsApp composer */
.wa-modal {
  width: min(460px, calc(100% - 28px));
  position: fixed;
  inset: auto 18px var(--float-clear) auto;
  inset: auto calc(18px + env(safe-area-inset-right, 0px)) calc(var(--float-clear) + env(safe-area-inset-bottom, 0px)) auto;
  margin: 0;
  z-index: 85;
  transform-origin: bottom right;
  overflow: hidden;
  max-height: min(72vh, 620px);
  border-radius: 22px;
  border: 1px solid rgba(17, 27, 33, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  --wa-green: #25d366;
  --wa-green-dark: #128c7e;
  --wa-ink: #111b21;
  --wa-muted: rgba(17, 27, 33, 0.62);
  --wa-chat-bg: #efeae2;
}

.wa-modal[open] {
  animation: waIn 240ms var(--ease-out);
}

.wa-modal.is-leaving {
  animation: waOut 180ms var(--ease-out) forwards;
}

.wa-modal::backdrop {
  background: transparent;
  backdrop-filter: none;
}

.wa-modal .modal__inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wa__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--wa-green-dark), var(--wa-green));
  color: rgba(255, 255, 255, 0.96);
}

.wa__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.wa__meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wa__avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.92);
}

.wa__name {
  font-weight: 950;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa__status {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa__close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.95);
}

.wa__close:hover,
.wa__close:focus-visible {
  background: rgba(0, 0, 0, 0.18);
}

.wa__body {
  padding: 12px 14px 14px;
  display: grid;
  gap: 10px;
  overflow: auto;
}

.wa__intro {
  display: grid;
  gap: 4px;
}

.wa__heading {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--wa-ink);
}

.wa__sub {
  margin: 0;
  color: var(--wa-muted);
  line-height: 1.35;
}

.wa__presets {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.preset {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 27, 33, 0.12);
  background: rgba(240, 242, 245, 0.96);
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.preset:hover,
.preset:focus-visible {
  transform: translateY(-1px);
  background: rgba(232, 246, 238, 0.98);
  border-color: rgba(18, 140, 126, 0.30);
}

.wa__chat {
  border-radius: 18px;
  padding: 12px 12px;
  border: 1px solid rgba(17, 27, 33, 0.10);
  background:
    radial-gradient(620px 260px at 0% 0%, rgba(37, 211, 102, 0.12), transparent 58%),
    radial-gradient(520px 260px at 100% 0%, rgba(18, 140, 126, 0.10), transparent 62%),
    radial-gradient(560px 280px at 40% 120%, rgba(17, 27, 33, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(239, 234, 226, 0.98), rgba(239, 234, 226, 0.92));
  display: grid;
  gap: 8px;
}

.wa__bubble {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  color: var(--wa-ink);
  line-height: 1.42;
  white-space: pre-wrap;
}

.wa__bubble--them {
  justify-self: start;
}

.wa__bubble--me {
  justify-self: end;
  background: rgba(220, 248, 198, 0.98);
}

.wa__bubble.is-ping {
  animation: waPop 260ms var(--ease-out);
}

.wa__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.wa__composer textarea {
  resize: none;
  min-height: 46px;
  max-height: 140px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(240, 242, 245, 0.96);
  border: 1px solid rgba(17, 27, 33, 0.12);
  outline: none;
  color: var(--wa-ink);
  line-height: 1.35;
}

.wa__composer textarea:focus-visible {
  border-color: rgba(18, 140, 126, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.16);
}

.wa__send {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.22);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.wa__send:hover,
.wa__send:focus-visible {
  transform: translate3d(0, -1px, 0);
  filter: brightness(1.02);
  box-shadow: 0 18px 44px rgba(18, 140, 126, 0.26);
}

.wa__hint {
  margin: 0;
  color: var(--wa-muted);
  font-weight: 800;
  line-height: 1.45;
}

@keyframes waIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 14px, 0) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes waOut {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.94);
  }
}

.fab.is-open::before {
  animation: none;
  opacity: 0;
}

.fab.is-open {
  filter: saturate(1.05) brightness(0.98);
}

@keyframes waPop {
  0% {
    transform: translate3d(0, 6px, 0) scale(0.98);
    opacity: 0.75;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

/* CTA */
.cta {
  padding: clamp(64px, 7vw, 90px) 0;
}

.cta__box {
  border-radius: calc(var(--radius-xl) + 6px);
  padding: clamp(18px, 2.8vw, 26px);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(255, 122, 0, 0.20), transparent 58%),
    radial-gradient(700px 360px at 100% 0%, rgba(16, 197, 122, 0.20), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.70));
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 18px;
  align-items: start;
}

.cta__copy h2 {
  margin: 12px 0 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 1.2rem + 1.7vw, 2.3rem);
  line-height: 1.05;
}

.cta__copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta__form {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 950;
  color: rgba(15, 36, 28, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field select,
.field input {
  height: 46px;
  border-radius: 14px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  outline: none;
}

.cta__form textarea {
  resize: vertical;
  min-height: 112px;
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  outline: none;
}

.field select:focus-visible,
.field input:focus-visible,
.cta__form textarea:focus-visible {
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-pill {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  font-weight: 950;
  transition: transform 160ms ease, background 160ms ease;
}

.link-pill:hover,
.link-pill:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
}

/* Footer + FAB */
.footer {
  position: relative;
  padding: 56px 0 28px;
  padding-bottom: calc(28px + var(--float-clear) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(15, 36, 28, 0.08);
  background:
    radial-gradient(1100px 380px at 12% 0%, rgba(16, 197, 122, 0.18), transparent 60%),
    radial-gradient(900px 340px at 100% 0%, rgba(255, 122, 0, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(11, 36, 26, 0.98), rgba(8, 26, 19, 0.98));
  color: rgba(255, 255, 255, 0.90);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at 50% 10%, black 22%, transparent 70%);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.9fr));
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer__brand img {
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.28));
}

.footer__badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__col h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.94);
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
  max-width: 62ch;
}

.footer__cta {
  margin-top: 12px;
}

.footer__list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.footer__link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
}

.footer__toplink {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 950;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer__toplink:hover,
.footer__toplink:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
}

.float-actions {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(15, 36, 28, 0.10);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 180ms ease, filter 180ms ease;
}

html.nav-open .float-actions {
  opacity: 0;
  pointer-events: none;
  filter: blur(2px);
}

.fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 15px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.98), rgba(18, 140, 126, 0.98));
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(18, 140, 126, 0.24);
  cursor: pointer;
  touch-action: manipulation;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), filter 220ms var(--ease-out);
}

.fab::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  filter: blur(1px);
  animation: fabPulse 2.8s var(--ease-out) infinite;
}

.fab > * {
  position: relative;
  z-index: 1;
}

.fab:hover,
.fab:focus-visible {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 22px 70px rgba(18, 140, 126, 0.30);
}

.to-top {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(15, 36, 28, 0.12);
  background:
    conic-gradient(
      from -90deg,
      rgba(16, 197, 122, 0.92) 0deg,
      rgba(16, 197, 122, 0.92) var(--p-angle, 0deg),
      rgba(15, 36, 28, 0.12) var(--p-angle, 0deg),
      rgba(15, 36, 28, 0.12) 360deg
    );
  cursor: pointer;
  touch-action: manipulation;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.to-top::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(15, 36, 28, 0.10);
}

.to-top span {
  position: relative;
  z-index: 1;
}

.to-top.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  transform: translate3d(0, -2px, 0);
  filter: brightness(1.02);
}

@keyframes fabPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  55% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(0.92);
    opacity: 0.65;
  }
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Responsivo */
@media (max-width: 980px) {
  :root {
    --header-h: 74px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .cta__box {
    grid-template-columns: 1fr;
  }

  .regional {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    left: calc(16px + env(safe-area-inset-left, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 250, 242, 0.90);
    border: 1px solid rgba(15, 36, 28, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(15, 36, 28, 0.10);
  }

  .nav .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 30px);
  }

  .scroll-hint {
    display: none;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .segment-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }

  .seg-btn {
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .wa__composer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wa-modal {
    inset: auto 14px var(--float-clear) 14px;
    inset: auto calc(14px + env(safe-area-inset-right, 0px)) calc(var(--float-clear) + env(safe-area-inset-bottom, 0px)) calc(14px + env(safe-area-inset-left, 0px));
    width: auto;
    transform-origin: bottom center;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .regional__panel {
    padding: 18px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-actions {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100% - 28px);
  }

  .fab span {
    max-width: 20ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .to-top {
    width: 46px;
    height: 46px;
  }

  html.field-focus .float-actions {
    opacity: 0;
    pointer-events: none;
    filter: blur(2px);
  }
}

@media (max-width: 420px) {
  .nav {
    left: 12px;
    right: 12px;
    left: calc(12px + env(safe-area-inset-left, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
  }

  .float-actions {
    left: calc(12px + env(safe-area-inset-left, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
    transform: none;
    width: auto;
    max-width: none;
    justify-content: space-between;
  }

  .fab {
    width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
  }

  .fab span {
    display: none;
  }
}

@media (max-height: 720px) {
  .scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bg__glow {
    animation: none;
  }

  .bubble {
    animation: none;
  }

  .fab::before {
    animation: none;
  }

  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .btn,
  .icon-btn,
  .link-pill,
  .scroll-hint,
  .to-top,
  .seg-btn {
    transition: none;
    transform: none;
  }

  .carousel__track {
    transition: none;
  }
}
