/* ==========================================================================
   Cybersoft — Informática do Seu Jeito
   Design tokens, layout and components.
   Breakpoints: 820px separates the compact layout from the wide one;
   940px is where the header nav collapses into the Menu panel.
   ========================================================================== */

:root {
  --navy: #0B2246;
  --navy-deep: #07162B;
  --navy-image: #0E2A54;
  --red: #C8102E;
  --red-bright: #E01B33;
  --red-accent: #FF3B54;
  --pink: #FF8898;
  --ink: #0E1726;
  --muted: #5A6577;
  --muted-strong: #4A5568;
  --muted-light: #8A93A3;
  --bg: #F4F5F7;
  --surface: #FFFFFF;
  --surface-alt: #F8F9FB;
  --surface-shade: #E9EBEF;
  --whatsapp: #128C4B;
  --whatsapp-dark: #0E7540;
  --whatsapp-dot: #7DF5B0;

  --line-dark: rgba(255, 255, 255, .14);
  --line-light: rgba(11, 34, 70, .14);

  --font-display: 'Archivo', Helvetica, Arial, sans-serif;
  --font-body: 'Barlow', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: clamp(16px, 5vw, 48px);
  --section-y: clamp(44px, 8vw, 112px);
  --shell: 1200px;
  --action-bar-h: 62px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a {
  color: var(--red);
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

a:hover { color: var(--red-bright); }

:focus-visible {
  outline: 3px solid var(--red-accent);
  outline-offset: 3px;
}

::selection {
  background: var(--red);
  color: #fff;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }

address { font-style: normal; }

.wrap {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 0 0 3px 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Shared type
   -------------------------------------------------------------------------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow--on-dark { color: var(--pink); }

.eyebrow--rule {
  display: inline-block;
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: -.025em;
  color: var(--navy);
  text-wrap: balance;
}

.section-title--on-dark { color: #fff; }

.section-title--sm { font-size: clamp(26px, 3.6vw, 42px); }

.section-title em {
  font-style: italic;
  color: var(--red-accent);
}

.section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 16px;
  text-wrap: pretty;
}

.section-head { max-width: 640px; }

.quote {
  border-left: 4px solid var(--red);
  padding: 6px 0 6px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.35;
  color: var(--navy);
}

.tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
}

.diamond {
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
  display: inline-block;
  flex: 0 0 auto;
}

.arrow { font-size: 1.15em; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 5px;
}

.link-underline:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  padding: 13px 22px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn--lg {
  font-size: 16px;
  padding: 17px 30px;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--red {
  background: var(--red);
  color: #fff;
}

.btn--red:hover {
  background: var(--red-bright);
  color: #fff;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-deep);
  color: #fff;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  font-weight: 600;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn--white {
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  background: var(--red);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Topbar + header
   -------------------------------------------------------------------------- */

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  text-transform: uppercase;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__item--end {
  flex-wrap: wrap;
  gap: 10px 24px;
}

.topbar__mail { color: #fff; }

.topbar__mail:hover { color: var(--red-accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 8px 24px rgba(7, 22, 43, .07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: clamp(34px, 5vw, 52px);
  width: auto;
  display: block;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid transparent;
}

.nav__link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-toggle {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  min-height: 44px;
  padding: 0 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle:hover { background: var(--navy-deep); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(27, 75, 138, .55), rgba(11, 34, 70, 0) 68%);
  pointer-events: none;
}

.hero__stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skewX(-14deg);
  pointer-events: none;
}

.hero__stripe--red {
  left: 56%;
  width: 22px;
  background: var(--red);
  opacity: .85;
}

.hero__stripe--light {
  left: 61%;
  width: 8px;
  background: rgba(255, 255, 255, .14);
}

.hero__inner {
  position: relative;
  padding-top: clamp(30px, 7vw, 96px);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 80px);
  line-height: .94;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  color: var(--red-accent);
}

.hero__lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .78);
  max-width: 52ch;
  margin-bottom: 34px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media img {
  display: block;
  width: 100%;
  height: clamp(210px, 32vw, 400px);
  object-fit: cover;
  background: var(--navy-image);
}

.badge {
  position: absolute;
  bottom: 0;
  background: #fff;
  color: var(--navy);
  border-left: 4px solid var(--red);
  padding: 16px 22px;
  pointer-events: none;
}

.badge__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1;
}

.badge__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0 clamp(20px, 3vw, 40px);
  margin-top: clamp(44px, 6vw, 72px);
}

.stats__item {
  padding: 26px 0 30px;
  border-top: 1px solid var(--line-dark);
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 26px);
  color: #fff;
}

.stats__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   Serviços
   -------------------------------------------------------------------------- */

.services {
  background: var(--surface);
  padding-block: var(--section-y);
}

.services__inner { display: grid; }

.section-head { grid-area: head; }
.services__cta { grid-area: cta; }
.services__grid { grid-area: grid; }

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: end;
  justify-self: start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  border-bottom: 2px solid var(--red);
  padding-bottom: 6px;
}

.services__cta:hover { color: var(--red); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.service {
  background: var(--surface);
  padding: 36px 32px 34px;
  transition: background-color .18s ease;
}

.service:hover { background: var(--surface-alt); }

.service__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--red);
  margin-bottom: 20px;
}

.service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}

.service__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

.service .tag { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Sobre
   -------------------------------------------------------------------------- */

.about {
  background: var(--bg);
  padding-block: var(--section-y);
}

.about__inner { display: grid; }

.about__copy { grid-area: copy; }
.about__media { grid-area: media; }
.values { grid-area: values; }

.about__text {
  font-size: 17px;
  line-height: 1.68;
  color: var(--muted-strong);
  margin-top: 18px;
  text-wrap: pretty;
}

.about__copy .quote { margin-top: 30px; }

.about__media {
  margin: 0;
  background: var(--surface-shade);
}

.about__media img {
  display: block;
  width: 100%;
  height: clamp(230px, 32vw, 400px);
  object-fit: cover;
  object-position: center 28%;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.value {
  background: var(--surface);
  border-top: 3px solid var(--navy);
  padding: 22px 20px;
  box-shadow: 0 2px 14px rgba(7, 22, 43, .05);
}

.value--red { border-top-color: var(--red); }

.value__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.value__text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Programação
   -------------------------------------------------------------------------- */

.dev {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding-block: var(--section-y);
  overflow: hidden;
}

.dev__stripe {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skewX(-14deg);
  pointer-events: none;
}

.dev__stripe--red {
  right: -40px;
  width: 26px;
  background: var(--red);
  opacity: .9;
}

.dev__stripe--light {
  right: 14px;
  width: 10px;
  background: rgba(255, 255, 255, .12);
}

.dev__inner {
  position: relative;
  display: grid;
}

.dev__copy { grid-area: copy; }
.dev__cta { grid-area: cta; }
.dev__list { grid-area: list; }

.dev__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .76);
  max-width: 50ch;
  margin-top: 18px;
  text-wrap: pretty;
}

.dev__list {
  display: grid;
  gap: 14px;
  align-self: center;
}

.dev-card {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  padding: 20px 24px;
  transition: border-color .18s ease, background-color .18s ease;
}

.dev-card:hover {
  border-color: var(--red);
  background: rgba(255, 255, 255, .07);
}

.dev-card__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.dev-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--pink);
}

.dev-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.dev-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .7);
  margin-top: 10px;
  padding-left: 34px;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   Depoimentos
   -------------------------------------------------------------------------- */

.reviews {
  background: var(--surface);
  padding: clamp(40px, 7vw, 96px) var(--gutter);
}

.reviews__inner {
  max-width: 820px;
  margin-inline: auto;
}

.reviews__card {
  border: 1px dashed rgba(11, 34, 70, .28);
  background: var(--surface-alt);
  padding: clamp(24px, 4vw, 44px);
  margin: 32px 0 0;
}

.reviews__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 24px;
  text-wrap: pretty;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.reviews__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.reviews__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.reviews__role {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Localização
   -------------------------------------------------------------------------- */

.location {
  background: var(--bg);
  padding-block: var(--section-y);
}

.section-head--stacked {
  grid-area: auto;
  max-width: 620px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.location__grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

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

.info-card {
  background: var(--surface);
  border-left: 4px solid var(--red);
  padding: 22px 22px 20px;
  box-shadow: 0 2px 14px rgba(7, 22, 43, .05);
}

.info-card--navy { border-left-color: var(--navy); }

.info-card__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.info-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.4;
}

.info-card__note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.info-card__phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy);
  letter-spacing: -.01em;
}

.info-card__phone:hover { color: var(--red); }

.info-card__mail {
  display: block;
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  word-break: break-word;
}

.info-card__mail:hover { color: var(--red); }

.location__maps-mobile { margin-top: 16px; }

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(11, 34, 70, .08);
  font-size: 15.5px;
  color: var(--navy);
}

.hours__row:last-child { border-bottom: none; }

.hours__row--closed { color: var(--muted-light); }

.hours dd {
  font-family: var(--font-display);
  font-weight: 700;
}

.map {
  position: relative;
  min-height: 340px;
  background: var(--navy);
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 46px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
}

.map__skew {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  width: 120px;
  background: rgba(255, 255, 255, .05);
  transform: skewX(-14deg);
}

.map__pin {
  position: absolute;
  top: 34%;
  left: 44%;
  width: 22px;
  height: 22px;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 0 10px rgba(200, 16, 46, .22);
}

.map__body { position: relative; }

.map__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
}

.map__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  text-wrap: balance;
}

.map .btn {
  align-self: flex-start;
  font-size: 15px;
  padding: 15px 26px;
}

/* --------------------------------------------------------------------------
   Rodapé
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  padding-top: clamp(34px, 7vw, 88px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(26px, 4vw, 56px);
  padding-bottom: clamp(30px, 5vw, 60px);
}

.site-footer__logo {
  display: inline-block;
  background: #fff;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.site-footer__logo img {
  height: 42px;
  width: auto;
  display: block;
}

.site-footer__text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 34ch;
  margin-bottom: 14px;
  text-wrap: pretty;
}

.site-footer__claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 15.5px;
  color: #fff;
  max-width: 34ch;
}

.site-footer__title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.site-footer__links,
.site-footer__list,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__links a,
.site-footer__contact a { color: rgba(255, 255, 255, .72); }

.site-footer__links a:hover,
.site-footer__contact a:hover { color: #fff; }

.site-footer__phone {
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.site-footer__phone:hover { color: var(--red-accent) !important; }

.site-footer__contact a[href^="mailto"] { word-break: break-word; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* --------------------------------------------------------------------------
   Ações flutuantes
   -------------------------------------------------------------------------- */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7, 22, 43, .32);
}

.wa-float:hover {
  background: var(--whatsapp-dark);
  color: #fff;
}

.wa-float__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--whatsapp-dot);
  display: inline-block;
  flex: 0 0 auto;
}

.action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(7, 22, 43, .2);
  box-shadow: 0 -8px 24px rgba(7, 22, 43, .28);
  padding-bottom: env(safe-area-inset-bottom);
}

.action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--action-bar-h);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.action-bar__call { background: var(--navy); }
.action-bar__wa { background: var(--whatsapp); }

/* --------------------------------------------------------------------------
   Layout ≥ 820px
   -------------------------------------------------------------------------- */

@media (min-width: 820px) {
  html { scroll-padding-top: 120px; }

  .hero__media { padding-bottom: clamp(28px, 4vw, 44px); }

  .hero__media img {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 4px;
  }

  .badge {
    left: -6px;
    box-shadow: 0 18px 40px rgba(7, 22, 43, .35);
  }

  .services__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "head cta"
      "grid grid";
    column-gap: 48px;
    row-gap: clamp(36px, 4vw, 56px);
  }

  .about__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "copy values"
      "media values";
    column-gap: clamp(36px, 5vw, 72px);
    row-gap: 32px;
    align-items: start;
  }

  .about__media {
    border: 1px solid rgba(11, 34, 70, .16);
  }

  .values {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }

  .value { padding: 28px 24px 26px; }

  .value__title { font-size: 18px; }

  .value__text { font-size: 15px; line-height: 1.6; }

  .dev__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "copy list"
      "cta list";
    column-gap: clamp(32px, 5vw, 64px);
    row-gap: 30px;
    align-items: start;
  }

  .dev__cta { justify-self: start; }

  .dev-card { padding: 24px 26px; }

  .dev-card__title { font-size: 19px; }

  .location__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

  .location__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-card { padding: 26px 26px 24px; }

  .info-card__value { font-size: 19px; }

  .info-card__note { font-size: 15.5px; }

  .location__maps-mobile { display: none; }

  .site-footer__logo img { height: 46px; }

  .reviews__inner { text-align: center; }

  .reviews__author { justify-content: center; }

  .reviews__who { text-align: left; }

  .action-bar { display: none !important; }
}

/* --------------------------------------------------------------------------
   Layout < 820px
   -------------------------------------------------------------------------- */

@media (max-width: 819px) {
  body { padding-bottom: calc(var(--action-bar-h) + env(safe-area-inset-bottom)); }

  .topbar { display: none; }

  .wa-float { display: none; }

  .action-bar { display: grid; }

  .hero__grid { align-items: start; }

  .hero__actions { flex-direction: column; }

  .hero__actions .btn { width: 100%; }

  .hero__media {
    margin-inline: calc(var(--gutter) * -1);
    overflow: hidden;
  }

  .badge { left: 0; }

  .badge__value { font-size: 24px; }

  .badge__label { font-size: 10px; letter-spacing: .12em; }

  .stats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-inline: calc(var(--gutter) * -1);
    margin-top: 0;
    padding: 18px var(--gutter) 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .stats__item {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    scroll-snap-align: start;
  }

  .stats__label { font-size: 10px; }

  .services__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "grid"
      "cta";
    row-gap: 26px;
  }

  .services__cta {
    display: block;
    justify-self: stretch;
    background: var(--navy);
    color: #fff;
    border-bottom: none;
    border-radius: 3px;
    padding: 17px 20px;
    font-size: 16px;
    text-align: center;
  }

  .services__cta:hover {
    background: var(--navy-deep);
    color: #fff;
  }

  .services__cta .arrow { display: none; }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--line-light);
  }

  .service {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: baseline;
    grid-template-areas:
      "num title"
      ".   text"
      ".   tag";
    background: none;
    border-top: 1px solid var(--line-light);
    padding: 20px 0;
  }

  .service:hover { background: none; }

  .service__num { grid-area: num; margin-bottom: 0; font-size: 11px; }
  .service__title { grid-area: title; font-size: 18px; margin-bottom: 0; }
  .service__text { grid-area: text; margin-top: 8px; font-size: 15px; line-height: 1.55; }
  .service .tag { grid-area: tag; justify-self: start; margin-top: 12px; font-size: 11px; padding: 7px 12px; }

  .about { padding-block: 0 42px; }

  .about__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy"
      "values";
  }

  .about__media { margin-inline: calc(var(--gutter) * -1); }

  .about__copy { padding-block: 34px 24px; }

  .dev__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "list"
      "cta";
    row-gap: 22px;
  }

  .dev__list { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; }

  .dev__cta { display: block; }

  .dev-card__text { padding-left: 0; }

  .location__cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  .map { display: none; }

  .site-footer__list { display: none; }

  .site-footer__bottom { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   Navegação ≥ 940px / < 940px
   -------------------------------------------------------------------------- */

@media (min-width: 940px) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.4vw, 32px);
  }

  .nav__link { padding-block: 6px; }

  .nav-toggle { display: none; }
}

@media (max-width: 939px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid rgba(11, 34, 70, .1);
    box-shadow: 0 14px 26px rgba(7, 22, 43, .12);
    padding: 4px var(--gutter) 20px;
  }

  .nav.is-open { display: flex; }

  .nav__link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: normal;
    text-transform: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(11, 34, 70, .08);
  }

  .nav__link:last-of-type { border-bottom: none; }

  .nav__cta {
    margin-top: 16px;
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* --------------------------------------------------------------------------
   Entrada dos blocos ao rolar
   -------------------------------------------------------------------------- */

@keyframes csFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.js [data-reveal] { opacity: 0; }

.js [data-reveal].is-visible {
  animation: csFade .6s cubic-bezier(.22, .61, .36, 1) both;
}

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

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    animation: none;
  }

  * { transition-duration: .01ms !important; }
}
