:root {
  --blue: #194abd;
  --blue-deep: #0c2767;
  --blue-dark: #091b45;
  --blue-soft: #edf3ff;
  --orange: #ff7012;
  --orange-deep: #e65d00;
  --ink: #10182a;
  --muted: #5e687c;
  --line: #dfe5ef;
  --surface: #f6f8fc;
  --white: #ffffff;
  --shadow-sm: 0 12px 40px rgba(15, 31, 67, 0.08);
  --shadow-lg: 0 28px 80px rgba(11, 35, 85, 0.16);
  --container: 1180px;
  --header-height: 92px;
}

/* Página de erro 404 */
.error-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: var(--surface);
}

.error-main {
  display: flex;
  flex: 1;
}

.error-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 720px;
  padding: calc(var(--header-height) + 82px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(25, 74, 189, 0.1), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f6f8fc 70%);
  place-items: center;
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.error-code {
  margin: 0 0 -28px;
  color: rgba(25, 74, 189, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: clamp(9rem, 24vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.75;
  transform: translateX(-0.04em);
  user-select: none;
}

.error-content .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}

.error-content h1 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: var(--blue-dark);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.error-message {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.error-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  gap: 28px;
}

.error-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.error-links a {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 24px 28px;
  transition: background 0.2s ease, color 0.2s ease;
}

.error-links a + a {
  border-left: 1px solid var(--line);
}

.error-links a:hover {
  color: var(--white);
  background: var(--blue);
}

.error-links span {
  color: var(--muted);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.error-links a:hover span {
  color: #d7e1fa;
}

.error-links strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
}

.error-decoration {
  position: absolute;
  border: 1px solid rgba(25, 74, 189, 0.16);
  border-radius: 50%;
}

.error-decoration-one {
  top: 18%;
  right: -90px;
  width: 270px;
  height: 270px;
}

.error-decoration-two {
  bottom: 12%;
  left: -48px;
  width: 125px;
  height: 125px;
  border-color: rgba(255, 112, 18, 0.28);
}

.error-footer {
  padding-top: 0;
}

@media (max-width: 720px) {
  .error-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 74px) 0 72px;
  }

  .error-code {
    margin-bottom: -12px;
    font-size: clamp(8rem, 43vw, 12rem);
  }

  .error-content h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .error-actions {
    flex-direction: column;
    gap: 20px;
  }

  .error-links {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .error-links a {
    min-height: 92px;
    padding: 20px 24px;
  }

  .error-links a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .error-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
    gap: 4px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 112, 18, 0.55);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", "DM Sans", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  margin-bottom: 25px;
  max-width: 720px;
  overflow-wrap: break-word;
  font-size: clamp(3.25rem, 5.15vw, 5.3rem);
  font-weight: 600;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 3.5vw, 3.6rem);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 120px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 76px;
  border-color: rgba(26, 49, 91, 0.08);
  box-shadow: 0 10px 34px rgba(15, 31, 67, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  height: 100%;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 82px;
  overflow: hidden;
  transition: width 0.25s ease, height 0.25s ease;
}

.brand img {
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  max-width: none;
  object-fit: contain;
  transform: none;
  transition: width 0.25s ease, height 0.25s ease;
}

.site-header.scrolled .brand {
  width: 112px;
  height: 70px;
}

.site-header.scrolled .brand img {
  width: 94px;
  height: 94px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.main-nav a {
  position: relative;
  color: #354057;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 23px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(25, 74, 189, 0.2);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(25, 74, 189, 0.27);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.service-card a svg,
.footer-bottom a svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.9rem;
  box-shadow: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero {
  display: flex;
  min-height: 790px;
  padding-top: calc(var(--header-height) + 72px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  align-items: center;
  gap: 78px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #333e54;
  font-weight: 600;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 10px;
  color: var(--orange-deep);
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #4d5870;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 18px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -16px;
  left: -16px;
  width: 66%;
  height: 62%;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  content: "";
}

.image-frame > img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
  border-radius: 2px 42px 2px 2px;
  box-shadow: var(--shadow-lg);
}

.visual-tag {
  position: absolute;
  bottom: -34px;
  left: -36px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 285px;
  padding: 18px 20px;
  color: #44506a;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(12, 39, 103, 0.2);
  font-size: 0.82rem;
  line-height: 1.4;
}

.visual-tag strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
}

.visual-tag-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
}

.visual-tag-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.orange-corner {
  position: absolute;
  right: -25px;
  bottom: -26px;
  z-index: 1;
  width: 145px;
  height: 145px;
  background-image: radial-gradient(var(--orange) 1.8px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.65;
}

.hero-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-accent-one {
  top: 130px;
  right: -190px;
  width: 520px;
  height: 520px;
  background: rgba(25, 74, 189, 0.055);
}

.hero-accent-two {
  bottom: 40px;
  left: -180px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 112, 18, 0.12);
}

.services {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 62px;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 32px 28px 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5eaf2;
  border-radius: 14px;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateY(-7px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 10px;
  place-items: center;
}

.service-icon.orange {
  color: var(--orange-deep);
  background: #fff2e9;
}

.service-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-number {
  position: absolute;
  top: 32px;
  right: 28px;
  color: #b9c1cf;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.service-card h3 {
  min-height: 55px;
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card a svg {
  width: 17px;
  transition: transform 0.2s ease;
}

.service-card a:hover svg {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 110px;
}

.about-visual {
  position: relative;
  padding: 0 38px 38px 0;
}

.about-panel {
  position: relative;
  min-height: 470px;
  padding: 58px 50px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.about-panel::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 60px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.panel-label {
  display: block;
  margin-bottom: 46px;
  color: #9bb6f4;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-panel h2 {
  max-width: 390px;
  font-size: clamp(2.25rem, 3.1vw, 3.25rem);
}

.about-panel p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  color: #c7d2ec;
}

.panel-lines {
  position: absolute;
  right: 38px;
  bottom: 40px;
  left: 50px;
  display: grid;
  gap: 8px;
}

.panel-lines span {
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
}

.panel-lines span:first-child {
  width: 75%;
  background: var(--orange);
}

.panel-lines span:nth-child(2) {
  width: 48%;
}

.about-quote {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 285px;
  padding: 22px;
  color: #364158;
  background: var(--white);
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.about-quote svg {
  flex: 0 0 28px;
  width: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.about-copy > p:not(.eyebrow) {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy .text-link {
  margin-top: 16px;
}

.text-link-blue {
  color: var(--blue);
}

.process {
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.process::before {
  position: absolute;
  top: -250px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.process-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.eyebrow-light {
  color: #aec3f5;
}

.process-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 27px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.process-item {
  position: relative;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--blue);
  border: 6px solid var(--blue-dark);
  outline: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  place-items: center;
}

.process-item:nth-child(even) .process-marker {
  background: var(--orange);
}

.process-item h3 {
  margin-bottom: 14px;
  color: var(--white);
}

.process-item p {
  margin-bottom: 0;
  color: #aebbd7;
  font-size: 0.94rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.why-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.why-copy p:not(.eyebrow) {
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.benefit {
  display: flex;
  min-height: 230px;
  padding: 36px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 19px;
  transition: background 0.25s ease;
}

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

.benefit > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 8px;
  place-items: center;
}

.benefit:nth-child(2n) > span {
  color: var(--orange-deep);
  background: #fff2e9;
}

.benefit svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.benefit p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  padding-bottom: 0;
  background: linear-gradient(to bottom, var(--white) 0, var(--white) 48%, var(--surface) 48%);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(25, 74, 189, 0.09);
  box-shadow: 0 34px 90px rgba(12, 39, 103, 0.13);
}

.contact-info {
  position: relative;
  padding: 68px 58px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}

.contact-info::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.contact-info h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
}

.contact-info > p:not(.eyebrow) {
  color: #c3cfe9;
}

.contact-links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 44px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-links a > span {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  place-items: center;
}

.contact-links svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: #9eb0d5;
  font-size: 0.75rem;
}

.contact-links strong {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  display: grid;
  padding: 62px 58px;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  color: #39445b;
  font-size: 0.86rem;
  font-weight: 600;
  gap: 7px;
}

.field-label {
  display: inline;
  width: fit-content;
}

.required-mark,
.required-note {
  color: #c43e35;
}

.required-mark {
  font-weight: 700;
}

.required-note {
  justify-self: start;
  margin: -7px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  font-size: 0.94rem;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 115px;
  padding: 13px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(25, 74, 189, 0.5);
  box-shadow: 0 0 0 3px rgba(25, 74, 189, 0.08);
}

.contact-form label.invalid input,
.contact-form label.invalid textarea {
  border-color: #da4d3d;
}

.field-error {
  display: none;
  color: #b93a2f;
  font-size: 0.76rem;
  font-weight: 500;
}

.contact-form label.invalid .field-error {
  display: block;
}

.form-submit {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin: -5px 0 0;
  color: #8a93a5;
  font-size: 0.75rem;
}

.form-status {
  min-height: 0;
  color: var(--blue);
  font-size: 0.87rem;
  font-weight: 600;
}

.site-footer {
  padding-top: 95px;
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 64px;
  gap: 100px;
}

.footer-logo {
  width: 190px;
  height: 140px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 185px;
  height: 185px;
  transform: none;
}

.footer-brand p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-links h3 {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: #7a8498;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a566d;
  font-weight: 600;
}

.footer-bottom a svg {
  width: 17px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(8, 56, 27, 0.25);
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 34px rgba(8, 56, 27, 0.32);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay,
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.18s;
}

.reveal-delay-3 {
  transition-delay: 0.26s;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 170px 1fr auto;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-grid {
    gap: 45px;
  }

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

  .service-card {
    min-height: 350px;
  }

  .about-grid,
  .why-grid {
    gap: 60px;
  }

  .contact-info,
  .contact-form {
    padding: 52px 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 92px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .header-cta {
    display: none;
  }

  .brand {
    width: 112px;
    height: 74px;
  }

  .brand img {
    width: 100px;
    height: 100px;
    transform: none;
  }

  .site-header.scrolled .brand {
    width: 104px;
    height: 68px;
  }

  .site-header.scrolled .brand img {
    width: 92px;
    height: 92px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: transparent;
    border: 0;
    cursor: pointer;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--blue-deep);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    padding: 120px 36px 50px;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 80px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(90%, 650px);
    margin-inline: auto;
  }

  .section-heading,
  .about-grid,
  .process-heading,
  .why-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .about-visual {
    width: min(80%, 620px);
  }

  .process-heading {
    gap: 6px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    row-gap: 52px;
  }

  .process-list::before {
    display: none;
  }

  .process-marker {
    margin-bottom: 24px;
  }

  .why-copy {
    position: static;
    max-width: 680px;
  }

  .contact {
    background: linear-gradient(to bottom, var(--white) 0, var(--white) 28%, var(--surface) 28%);
  }

  .contact-info {
    padding-block: 60px;
  }

  .footer-main {
    grid-template-columns: 0.8fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 55px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-visual {
    width: calc(100% - 22px);
    margin-left: 22px;
  }

  .image-frame > img {
    height: 430px;
    border-radius: 2px 28px 2px 2px;
  }

  .visual-tag {
    bottom: -42px;
    left: -22px;
  }

  .orange-corner {
    right: -12px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .service-grid,
  .process-list,
  .benefits,
  .field-row,
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 335px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual {
    width: 100%;
    padding: 0 22px 42px 0;
  }

  .about-panel {
    min-height: 460px;
    padding: 44px 30px;
  }

  .panel-lines {
    left: 30px;
  }

  .about-quote {
    width: min(285px, calc(100% - 18px));
  }

  .process-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .process-marker {
    margin-bottom: 0;
  }

  .benefits {
    border-top: 0;
  }

  .benefit {
    min-height: auto;
    padding: 28px 22px;
  }

  .contact-shell {
    width: 100%;
    border-right: 0;
    border-left: 0;
  }

  .contact-info,
  .contact-form {
    padding: 48px 24px;
  }

  .contact-links strong {
    font-size: 0.86rem;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    padding-top: 70px;
  }

  .footer-main {
    gap: 46px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    padding-block: 24px;
    flex-direction: column;
    gap: 12px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
  }
}

/* Página sobre */
.about-page {
  background: var(--white);
}

.about-page-hero {
  position: relative;
  min-height: 670px;
  padding: calc(var(--header-height) + 95px) 0 105px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.about-page-hero::before {
  position: absolute;
  right: -130px;
  bottom: -300px;
  width: 680px;
  height: 680px;
  border: 95px solid rgba(255, 255, 255, 0.026);
  border-radius: 50%;
  content: "";
}

.about-hero-orbit {
  position: absolute;
  top: 145px;
  left: -175px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 112, 18, 0.16);
  border-radius: 50%;
}

.about-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: center;
  gap: 100px;
}

.about-page-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.55vw, 5.65rem);
}

.about-page-hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #bdcbe8;
  font-size: 1.15rem;
}

.about-hero-brand {
  display: grid;
  justify-items: center;
}

.about-brand-frame {
  position: relative;
  display: grid;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  place-items: center;
}

.about-brand-frame::before,
.about-brand-frame::after {
  position: absolute;
  width: 62px;
  height: 62px;
  content: "";
}

.about-brand-frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.about-brand-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.about-brand-frame img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.about-hero-brand > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: #aebddd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-hero-brand > p span {
  width: 25px;
  height: 2px;
  background: var(--orange);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 115px;
}

.about-intro-heading h2 {
  max-width: 540px;
}

.about-intro-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-intro-copy .about-intro-lead {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.purpose-section {
  background: var(--surface);
}

.purpose-heading {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  align-items: end;
  gap: 75px;
  margin-bottom: 60px;
}

.purpose-heading h2 {
  margin-bottom: 0;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.purpose-card {
  position: relative;
  min-height: 380px;
  padding: 35px 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e2e8f1;
  border-radius: 12px;
}

.purpose-card-primary {
  color: var(--white);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
}

.purpose-card-number {
  position: absolute;
  top: 34px;
  right: 30px;
  color: #aeb7c8;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.purpose-card-primary .purpose-card-number {
  color: #8298c8;
}

.purpose-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 65px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 9px;
  place-items: center;
}

.purpose-card-primary .purpose-icon {
  color: var(--white);
  background: var(--blue);
}

.purpose-icon.orange {
  color: var(--orange-deep);
  background: #fff0e5;
}

.purpose-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.purpose-card h3 {
  margin-bottom: 17px;
  font-size: 1.35rem;
}

.purpose-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.purpose-card-primary p {
  color: #becae4;
}

.mindset-section {
  color: var(--white);
  background: var(--blue-dark);
}

.mindset-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

.mindset-copy h2 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
}

.mindset-copy > p:not(.eyebrow) {
  color: #b5c3df;
}

.about-light-link {
  margin-top: 18px;
  color: var(--white);
}

.mindset-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mindset-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  padding: 31px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  gap: 22px;
}

.mindset-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mindset-steps > li > span {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mindset-steps h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.mindset-steps p {
  margin-bottom: 0;
  color: #aebbd7;
  font-size: 0.94rem;
}

.commitments-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.commitments-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.commitments-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.commitment-list {
  border-top: 1px solid var(--line);
}

.commitment-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  gap: 25px;
}

.commitment-item > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 9px;
  place-items: center;
}

.commitment-item:nth-child(even) > span {
  color: var(--orange-deep);
  background: #fff0e5;
}

.commitment-item svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.commitment-item h3 {
  margin-bottom: 9px;
}

.commitment-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-page-cta {
  color: var(--white);
  background: var(--blue);
}

.about-page-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.about-page-cta h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.about-page-cta-inner > div:last-child p {
  color: #d7e2fa;
}

.about-page-footer {
  padding-top: 80px;
}

@media (max-width: 1080px) {
  .about-page-hero-grid {
    gap: 60px;
  }

  .about-intro-grid,
  .mindset-grid,
  .commitments-grid {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  .about-page-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 80px) 0 90px;
  }

  .about-page-hero-grid,
  .about-intro-grid,
  .purpose-heading,
  .mindset-grid,
  .commitments-grid,
  .about-page-cta-inner {
    grid-template-columns: 1fr;
  }

  .about-page-hero-grid {
    gap: 70px;
  }

  .about-hero-brand {
    justify-items: start;
  }

  .about-brand-frame {
    width: min(82%, 390px);
  }

  .about-intro-grid,
  .mindset-grid,
  .commitments-grid,
  .about-page-cta-inner {
    gap: 55px;
  }

  .purpose-heading {
    gap: 6px;
  }

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

  .purpose-card:last-child {
    grid-column: 1 / -1;
  }

  .commitments-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .about-page-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 3.65rem);
  }

  .about-brand-frame {
    width: 100%;
  }

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

  .purpose-card,
  .purpose-card:last-child {
    grid-column: auto;
    min-height: 340px;
  }

  .mindset-steps li {
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }

  .commitment-item {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Página de serviços */
.services-page {
  background: var(--white);
}

.services-hero {
  position: relative;
  min-height: 610px;
  padding: calc(var(--header-height) + 96px) 0 105px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.services-hero::before {
  position: absolute;
  top: -240px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.services-hero-shape {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 160px;
  height: 120px;
  background-image: radial-gradient(var(--orange) 1.7px, transparent 1.7px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.55fr;
  align-items: end;
  gap: 110px;
}

.services-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.7vw, 5.7rem);
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 730px;
  margin-bottom: 0;
  color: #bdcbe8;
  font-size: 1.16rem;
}

.services-hero-note {
  padding: 30px 0 5px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-note-number {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.services-hero-note p {
  color: #c2cee6;
  font-size: 0.95rem;
}

.services-hero-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.services-hero-note svg {
  width: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.overview-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.overview-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.service-jump-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-jump {
  position: relative;
  display: flex;
  min-height: 290px;
  padding: 26px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 12px;
  flex-direction: column;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-jump:hover {
  background: var(--white);
  border-color: #dfe6f1;
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.jump-number {
  position: absolute;
  top: 28px;
  right: 25px;
  color: #aeb7c7;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.jump-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 45px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 9px;
  place-items: center;
}

.jump-icon.orange {
  color: var(--orange-deep);
  background: #fff0e5;
}

.jump-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-jump strong {
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.service-jump small {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.jump-arrow {
  width: 19px;
  margin-top: auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.service-jump:hover .jump-arrow {
  transform: translateX(5px);
}

.service-detail {
  scroll-margin-top: 72px;
  border-top: 1px solid #e8edf4;
}

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

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 90px;
}

.service-detail-grid-reverse .service-example {
  order: 1;
}

.service-detail-grid-reverse .service-detail-copy {
  order: 2;
}

.detail-number {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-detail-copy h2 {
  font-size: clamp(2.25rem, 3.25vw, 3.45rem);
}

.detail-lead {
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 1.04rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-bottom: 37px;
}

.detail-columns h3 {
  margin-bottom: 18px;
  font-size: 0.92rem;
  letter-spacing: -0.015em;
}

.check-list,
.example-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.check-list li,
.example-list li {
  position: relative;
  padding-left: 23px;
  color: #596479;
  font-size: 0.88rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 700;
}

.example-list li::before {
  position: absolute;
  top: 0.56em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.service-example {
  position: relative;
  min-width: 0;
  padding: 22px;
  background: #eef2f8;
  box-shadow: 0 26px 70px rgba(12, 39, 103, 0.14);
}

.example-caption {
  position: absolute;
  right: 22px;
  bottom: -49px;
  left: 22px;
  margin: 0;
  color: #687286;
  font-size: 0.78rem;
}

.example-caption span {
  margin-right: 10px;
  color: var(--orange-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.website-example {
  padding: 0;
  background: var(--white);
}

.browser-bar {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 15px;
  background: #e9edf4;
  gap: 7px;
}

.browser-bar i {
  width: 8px;
  height: 8px;
  background: #b7c0cf;
  border-radius: 50%;
}

.browser-bar i:first-child {
  background: var(--orange);
}

.browser-bar span {
  margin-left: 14px;
  color: #8992a4;
  font-size: 0.66rem;
}

.browser-content {
  min-height: 415px;
  padding: 24px;
  background: var(--white);
}

.browser-nav {
  display: flex;
  align-items: center;
  height: 28px;
  gap: 16px;
}

.browser-nav b {
  margin-right: auto;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
}

.browser-nav span {
  width: 34px;
  height: 4px;
  background: #d9dee8;
  border-radius: 4px;
}

.browser-nav button,
.browser-hero-mini button {
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 3px;
  font-size: 0.55rem;
}

.browser-nav button {
  padding: 6px 10px;
}

.browser-hero-mini {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 235px;
  margin-top: 18px;
  padding: 24px;
  background: #f4f7fb;
  gap: 20px;
}

.browser-hero-mini small {
  color: var(--orange-deep);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.browser-hero-mini strong {
  display: block;
  margin: 9px 0 15px;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1.23;
}

.browser-hero-mini p {
  width: 85%;
  height: 5px;
  margin: 7px 0;
  background: #d7dde8;
  border-radius: 4px;
}

.browser-hero-mini p:nth-of-type(2) {
  width: 65%;
  margin-bottom: 17px;
}

.browser-hero-mini button {
  padding: 8px 11px;
}

.browser-image {
  height: 190px;
  background: linear-gradient(145deg, rgba(25, 74, 189, 0.15), rgba(255, 112, 18, 0.25)), url("assets/teamwork.jpg") center / cover;
  border-radius: 2px 18px 2px 2px;
}

.browser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  gap: 12px;
}

.browser-cards span {
  height: 78px;
  background: #eff3f8;
  border-top: 3px solid var(--blue);
}

.browser-cards span:nth-child(2) {
  border-color: var(--orange);
}

.social-example {
  min-height: 545px;
  padding: 32px;
  background: var(--blue-dark);
}

.social-profile {
  width: 80%;
  margin-left: auto;
  padding: 23px;
  background: var(--white);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.2);
}

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

.profile-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--orange));
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  place-items: center;
}

.profile-top div {
  display: grid;
  line-height: 1.35;
}

.profile-top strong {
  font-size: 0.75rem;
}

.profile-top small {
  color: #8992a3;
  font-size: 0.55rem;
}

.profile-top button {
  margin-left: auto;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 3px;
  font-size: 0.56rem;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 19px 0;
  padding: 12px 0;
  border-top: 1px solid #e5e9f0;
  border-bottom: 1px solid #e5e9f0;
}

.profile-stats span {
  color: #7b8495;
  font-size: 0.5rem;
  text-align: center;
}

.profile-stats strong {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.profile-grid i {
  aspect-ratio: 1;
  background: linear-gradient(140deg, #dbe5fa, #7d9de4);
}

.profile-grid i:nth-child(2),
.profile-grid i:nth-child(6) {
  background: linear-gradient(140deg, #ffe1cd, #ff934c);
}

.profile-grid i:nth-child(3),
.profile-grid i:nth-child(4) {
  background: linear-gradient(140deg, #e7eaf1, #aeb8ca);
}

.social-calendar {
  position: absolute;
  bottom: 42px;
  left: 18px;
  width: 62%;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.22);
}

.social-calendar > small {
  color: var(--blue);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.social-calendar div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 15px;
}

.social-calendar span {
  color: #8c95a5;
  font-size: 0.45rem;
  text-align: center;
}

.calendar-row i {
  height: 28px;
  background: #eef1f6;
  border-radius: 3px;
}

.calendar-row i.filled {
  background: var(--blue);
}

.calendar-row i.orange {
  background: var(--orange);
}

.social-example .example-caption {
  color: #aebbd6;
}

.ads-example {
  min-height: 490px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #e3e8f0;
}

.dashboard-head,
.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head div {
  display: grid;
}

.dashboard-head small {
  color: var(--blue);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.dashboard-head strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
}

.dashboard-head > span {
  padding: 7px 10px;
  color: #7b8496;
  background: var(--surface);
  border: 1px solid #e4e8ef;
  border-radius: 4px;
  font-size: 0.58rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 27px 0;
  gap: 10px;
}

.metric-grid div {
  padding: 16px;
  background: var(--surface);
  border-radius: 5px;
}

.metric-grid small,
.metric-grid strong,
.metric-grid em {
  display: block;
}

.metric-grid small {
  color: #7b8598;
  font-size: 0.57rem;
}

.metric-grid strong {
  margin: 5px 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
}

.metric-grid em {
  color: #26995c;
  font-size: 0.55rem;
  font-style: normal;
}

.chart-area {
  padding: 20px;
  border: 1px solid #e4e8ef;
}

.chart-title span {
  font-size: 0.72rem;
  font-weight: 600;
}

.chart-title small {
  color: var(--blue);
  font-size: 0.54rem;
}

.chart-area svg {
  width: 100%;
  height: 190px;
  margin-top: 15px;
  overflow: visible;
  border-bottom: 1px solid #e7ebf1;
}

.chart-fill {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-width: 3;
}

.automation-example {
  min-height: 540px;
  padding: 35px;
  background: #f0f4fb;
}

.flow-label {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.flow-step,
.flow-branches > div {
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(12, 39, 103, 0.08);
  gap: 13px;
}

.flow-step > span,
.flow-branches span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 700;
  place-items: center;
}

.flow-step div {
  display: grid;
}

.flow-step small,
.flow-branches small {
  color: #9099a9;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.flow-step strong,
.flow-branches strong {
  color: #2d374c;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
}

.flow-line {
  display: block;
  width: 1px;
  height: 30px;
  margin-inline: auto;
  background: #a7b7da;
}

.flow-branches {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.flow-branches::before {
  position: absolute;
  top: -15px;
  right: 25%;
  left: 25%;
  height: 15px;
  border-top: 1px solid #a7b7da;
  border-right: 1px solid #a7b7da;
  border-left: 1px solid #a7b7da;
  content: "";
}

.flow-branches > div {
  display: grid;
  justify-items: center;
  padding: 15px 9px;
  text-align: center;
}

.flow-branches span {
  margin-bottom: 4px;
  color: var(--orange-deep);
  background: #fff0e5;
}

.flow-end > span {
  background: #28a266;
}

.services-approach {
  color: var(--white);
  background: var(--blue-dark);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.approach-copy h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.approach-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: #b6c4e0;
}

.integration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-flow span {
  display: grid;
  flex: 0 0 104px;
  height: 104px;
  padding: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  text-align: center;
  place-items: center;
}

.integration-flow span:nth-of-type(2),
.integration-flow span:nth-of-type(4) {
  border-color: rgba(255, 112, 18, 0.7);
}

.integration-flow i {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.27);
}

.integration-flow i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  transform: rotate(45deg);
}

.services-cta {
  color: var(--white);
  background: var(--blue);
}

.services-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.services-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.services-cta-inner > div:last-child p {
  color: #d5e0fa;
}

.button-orange {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(95, 38, 0, 0.18);
}

.button-orange:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.services-footer {
  padding-top: 80px;
}

@media (max-width: 1080px) {
  .service-jump-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-jump {
    min-height: 260px;
  }

  .service-detail-grid {
    gap: 55px;
  }

  .detail-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .integration-flow span {
    flex-basis: 86px;
    height: 86px;
    font-size: 0.68rem;
  }
}

@media (max-width: 900px) {
  .services-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 80px) 0 90px;
  }

  .services-hero-grid,
  .overview-heading,
  .service-detail-grid,
  .approach-grid,
  .services-cta-inner {
    grid-template-columns: 1fr;
  }

  .services-hero-grid {
    gap: 55px;
  }

  .services-hero-note {
    max-width: 360px;
  }

  .overview-heading {
    gap: 8px;
  }

  .service-detail-grid {
    gap: 80px;
  }

  .service-detail-grid-reverse .service-example,
  .service-detail-grid-reverse .service-detail-copy {
    order: initial;
  }

  .service-detail-grid-reverse .service-detail-copy {
    order: 1;
  }

  .service-detail-grid-reverse .service-example {
    order: 2;
  }

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

  .service-example {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .approach-grid,
  .services-cta-inner {
    gap: 50px;
  }
}

@media (max-width: 620px) {
  .services-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
  }

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

  .service-jump {
    min-height: 235px;
  }

  .service-example {
    padding: 15px;
  }

  .website-example {
    padding: 0;
  }

  .browser-content {
    min-height: 345px;
    padding: 15px;
  }

  .browser-nav span {
    display: none;
  }

  .browser-hero-mini {
    min-height: 190px;
    padding: 15px;
  }

  .browser-image {
    height: 155px;
  }

  .browser-cards span {
    height: 55px;
  }

  .social-example,
  .automation-example {
    min-height: 500px;
  }

  .social-profile {
    width: 90%;
    padding: 16px;
  }

  .social-calendar {
    left: 8px;
    width: 74%;
  }

  .ads-example {
    min-height: 430px;
  }

  .dashboard-head > span {
    display: none;
  }

  .metric-grid {
    gap: 5px;
  }

  .metric-grid div {
    padding: 10px 7px;
  }

  .metric-grid strong {
    font-size: 0.8rem;
  }

  .chart-area {
    padding: 13px;
  }

  .chart-area svg {
    height: 150px;
  }

  .automation-example {
    padding: 24px 15px;
  }

  .flow-branches {
    gap: 7px;
  }

  .flow-branches strong {
    font-size: 0.62rem;
  }

  .integration-flow {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .integration-flow span {
    width: 104px;
    height: 104px;
  }

  .integration-flow i {
    width: 1px;
    height: 28px;
  }

  .integration-flow i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }
}
