:root {
  --blue-950: #001846;
  --blue-900: #06235d;
  --blue-700: #043f9e;
  --gold: #f8bf13;
  --gold-2: #ffd86a;
  --ink: #162033;
  --muted: #657187;
  --line: #dfe5ef;
  --paper: #f7f9fd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 24, 70, .18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto 0;
  height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, .96);
  color: var(--blue-950);
  box-shadow: 0 12px 40px rgba(0, 24, 70, .12);
  backdrop-filter: blur(12px);
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-logo {
  width: 66px;
  height: 58px;
  object-fit: contain;
}

.brand-logo-blue { display: none; }
.site-header.is-solid .brand-logo-white { display: none; }
.site-header.is-solid .brand-logo-blue { display: block; }
.brand span { white-space: nowrap; }

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--blue-950);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 24, 70, .96), rgba(6, 35, 93, .76) 58%, rgba(0, 24, 70, .92)),
    radial-gradient(circle at 84% 18%, rgba(248, 191, 19, .3), transparent 26%),
    radial-gradient(circle at 74% 62%, rgba(255, 255, 255, .12), transparent 31%),
    linear-gradient(135deg, transparent 0 48%, rgba(248, 191, 19, .1) 48% 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: cover, cover, cover, 56px 56px;
  background-position: center, center, center, center;
  opacity: 1;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(248, 191, 19, .24);
  border-radius: 999px;
  pointer-events: none;
  will-change: transform;
}

.hero-bg::before {
  width: 440px;
  height: 440px;
  right: 8vw;
  top: 18vh;
  animation: orbit-one 14s ease-in-out infinite alternate;
}

.hero-bg::after {
  width: 280px;
  height: 280px;
  right: 28vw;
  bottom: 4vh;
  border-color: rgba(255, 255, 255, .13);
  animation: orbit-two 18s linear infinite;
}

@keyframes orbit-one {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(-34px, 22px, 0) rotate(12deg) scale(1.08); }
}

@keyframes orbit-two {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(24px, -28px, 0) rotate(180deg); }
  100% { transform: translate3d(0, 0, 0) rotate(360deg); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .72fr);
  gap: 44px;
  align-items: center;
  padding: 118px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark { color: var(--blue-700); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-text {
  max-width: 710px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.btn.primary {
  background: var(--gold);
  color: var(--blue-950);
  box-shadow: 0 12px 26px rgba(248, 191, 19, .25);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

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

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #42f58d;
  box-shadow: 0 0 0 7px rgba(66, 245, 141, .14);
}

.panel-number {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: clamp(32px, 3.35vw, 45px);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.panel-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.panel-list span {
  padding: 12px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .1);
}

.intro-band {
  padding: 58px 0;
  background: var(--gold);
  color: var(--blue-950);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 40px;
  align-items: center;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f4f7fd 70%),
    radial-gradient(circle at 88% 12%, rgba(248, 191, 19, .14), transparent 32%);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -54px;
  top: -54px;
  border: 1px solid rgba(4, 63, 158, .12);
  border-radius: 50%;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 24, 70, .12);
  border-color: rgba(4, 63, 158, .28);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
  color: var(--gold);
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(0, 24, 70, .18);
}

.icon svg {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.solution-card p { color: var(--muted); }

.video-section {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 24, 70, .96), rgba(6, 35, 93, .9)),
    radial-gradient(circle at 12% 8%, rgba(248, 191, 19, .22), transparent 32%);
}

.video-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 44px;
  align-items: center;
}

.video-grid p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dark-section {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 24, 70, .98), rgba(4, 63, 158, .9)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(248, 191, 19, .12) 18px 20px);
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 54px;
  align-items: center;
}

.split-grid p {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

.brand-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.brand-matrix span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  font-size: 18px;
  font-weight: 900;
}

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

.location-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
}

.location-grid strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(44px, 7vw, 84px);
  line-height: .9;
}

.location-grid span {
  display: block;
  margin: 12px 0 18px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.clients {
  padding: 80px 0;
  background: var(--paper);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.client-strip span {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 950;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 24, 70, .06);
}

.client-strip img {
  max-width: 82%;
  max-height: 62px;
  object-fit: contain;
}

.contact-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--blue-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr .75fr;
  gap: 54px;
  align-items: start;
}

.contact-grid p {
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards span {
  display: block;
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  border-left: 5px solid var(--gold);
}

.contact-cards strong,
.contact-cards span span {
  display: block;
}

.contact-cards strong { color: var(--gold); }
.contact-cards small { color: rgba(255, 255, 255, .78); font-size: 15px; }

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 850;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea { resize: vertical; }
.form-btn { width: 100%; border: 0; cursor: pointer; font: inherit; }

.site-footer {
  padding: 28px 0;
  background: #06122d;
  color: rgba(255, 255, 255, .8);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-inner img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.footer-inner p {
  margin: 0 auto 0 0;
}

.footer-inner a {
  color: var(--gold);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.92);
  transition: opacity .2s ease, transform .2s ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: var(--white);
    color: var(--blue-950);
    box-shadow: var(--shadow);
    border-radius: 8px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .header-cta { display: none; }
  .hero-grid,
  .intro-grid,
  .split-grid,
  .contact-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { padding-top: 112px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .client-strip { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 68px; padding-inline: 16px; }
  .brand span { display: none; }
  .brand-logo { width: 52px; height: 48px; }
  .site-nav { top: 68px; }
  .section-inner { width: min(100% - 28px, 1160px); }
  .hero-grid { padding: 98px 0 52px; }
  .hero { min-height: auto; }
  h1 { font-size: 39px; }
  h2 { font-size: 31px; }
  .hero-text { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .solution-grid,
  .brand-matrix,
  .client-strip {
    grid-template-columns: 1fr;
  }
  .section,
  .dark-section,
  .contact-section,
  .video-section { padding: 68px 0; }
  .hero-panel,
  .lead-form { padding: 20px; }
  .panel-number { font-size: 36px; }
  .solution-card { min-height: auto; }
  .floating-whatsapp {
    width: 60px;
    height: 60px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-inner p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg::before,
  .hero-bg::after,
  .floating-whatsapp,
  .solution-card {
    animation: none;
    transition: none;
  }
}
/* Harmonização da prova social */
/* Movimento dos cartões de soluções */
.service-card.featured-card {
  color: var(--ink);
  background: #fff;
}
.service-card.featured-card p { color: var(--muted); }
.service-card.featured-card .service-number,
.service-card.featured-card a { color: var(--blue-700); }
.service-card:hover,
.service-card:focus-within {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
  border-color: var(--blue-700);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 24, 70, .2);
}
.service-card:hover h3,
.service-card:focus-within h3,
.service-card:hover p,
.service-card:focus-within p { color: var(--white); }
.service-card:hover .service-number,
.service-card:focus-within .service-number,
.service-card:hover a,
.service-card:focus-within a { color: var(--gold); }

/* Alinhamento final do crédito da agência */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-copyright { justify-self: start; }
.agency-credit { justify-self: center; }
.footer-locations { justify-self: end; }

@media (max-width: 760px) {
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .footer-copyright,
  .agency-credit,
  .footer-locations { justify-self: start; }
}
/* Banner principal em vídeo — Tellus Automação */
.hero-video {
  position: relative;
  min-height: min(820px, 92vh);
  background: var(--blue-950);
}
.hero-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero-video .hero-bg {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 18, 55, .82) 0%, rgba(0, 24, 70, .56) 54%, rgba(0, 24, 70, .22) 100%);
}
.hero-video .hero-bg::before,
.hero-video .hero-bg::after { display: none; }
.hero-video .hero-grid {
  z-index: 2;
  grid-template-columns: minmax(0, 880px);
  justify-content: start;
  padding-block: 150px 90px;
}
.hero-video .hero-copy { max-width: 880px; }
.hero-video h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .3);
}
.hero-video .hero-text {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(255, 255, 255, .9);
}
.hero-video .hero-actions { margin: 28px 0 0; }

.agency-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  transition: color .2s ease;
}
.agency-credit strong { color: var(--white); }
.agency-credit img {
  width: 64px;
  height: 64px;
  padding: 0;
  object-fit: contain;
  transform: scale(1.65);
}
.agency-credit:hover,
.agency-credit:focus-visible,
.agency-credit:hover strong,
.agency-credit:focus-visible strong { color: var(--gold); }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-locations { justify-self: end; }
.agency-credit img {
  width: 64px !important;
  height: 64px !important;
  max-width: none;
  object-fit: contain;
  transform: scale(1.65);
}

.contact-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(4, 63, 158, .3));
  box-shadow: var(--shadow);
}
.contact-cta-panel::after {
  content: "24h";
  position: absolute;
  right: -12px;
  top: -42px;
  color: rgba(255, 255, 255, .055);
  font-size: 150px;
  font-weight: 950;
  line-height: 1;
}
.contact-cta-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 20px;
}
.contact-cta-kicker {
  position: relative;
  z-index: 1;
  max-width: 410px;
  margin: 14px 0 26px;
}
.contact-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-steps > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 24, 70, .3);
}
.contact-steps > div > span {
  color: var(--gold);
  font-weight: 950;
}
.contact-steps p { margin: 0; font-size: 15px; }
.contact-steps p strong { display: block; color: var(--white); }
.contact-whatsapp-btn { position: relative; z-index: 1; width: 100%; }
.contact-cta-panel > small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}
.contact-map {
  overflow: hidden;
  margin-top: 58px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}
.contact-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 28px;
}
.contact-map-heading .eyebrow { margin-bottom: 5px; }
.contact-map-heading h3 { margin: 0; }
.contact-map-heading > a {
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
  text-align: right;
}
.contact-map-heading > a:hover { color: var(--gold); }
.contact-map iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
}

@media (max-width: 620px) {
  .hero-video { min-height: 620px; }
  .hero-video .hero-grid { padding: 120px 0 68px; }
  .hero-video h1 { font-size: 44px; }
  .hero-video .hero-bg { background: linear-gradient(90deg, rgba(0, 18, 55, .84), rgba(0, 24, 70, .48)); }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .agency-credit { justify-content: flex-start; }
  .footer-locations { justify-self: start; }
  .contact-cta-panel { padding: 22px; }
  .contact-map-heading { align-items: flex-start; flex-direction: column; }
  .contact-map-heading > a { text-align: left; }
  .contact-map iframe { height: 320px; }
}


.clients { padding: 96px 0; background: #f4f7fc; }
.clients .section-heading { margin-bottom: 42px; }
.client-strip {
  gap: 14px;
  margin-top: 0;
}
.client-strip span {
  position: relative;
  min-width: 0;
  min-height: 142px;
  padding: 26px 28px;
  border-color: #d8e0ec;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 24, 70, .055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.client-strip span::after {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s ease, left .2s ease, right .2s ease;
}
.client-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 63, 158, .26);
  box-shadow: 0 18px 38px rgba(0, 24, 70, .1);
}
.client-strip span:hover::after { left: 18%; right: 18%; opacity: 1; }
.client-strip img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}
.client-strip [data-logo="bosch"] img { max-height: 54px; }
.client-strip [data-logo="eternit"] img { max-height: 48px; }
.client-strip [data-logo="usiminas"] img { max-height: 46px; }
.client-strip [data-logo="csn"] img { max-height: 56px; }
.client-strip [data-logo="softys"] img { max-height: 52px; }
.client-strip [data-logo="femsa"] img { max-height: 53px; }
.client-strip [data-logo="irani"] img { max-height: 63px; }
.client-strip [data-logo="dias-branco"] img { max-height: 61px; }
.client-strip [data-logo="sabesp"] img { max-height: 55px; }
.client-strip [data-logo="teuto"] img { max-height: 60px; }

@media (max-width: 620px) {
  .client-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .client-strip span { min-height: 108px; padding: 20px 16px; border-radius: 9px; }
  .client-strip img { max-height: 46px; }
}


/* Home comercial v4 */
.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 12px 18px; background: var(--gold); color: var(--blue-950); font-weight: 900; }
.skip-link:focus { top: 12px; }
.site-header { max-width: 1600px; margin-inline: auto; }
.site-nav { gap: 20px; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--gold); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.hero { min-height: 820px; }
.hero-bg { background: linear-gradient(90deg, rgba(0,24,70,.98), rgba(6,35,93,.84) 58%, rgba(0,24,70,.94)), radial-gradient(circle at 84% 18%, rgba(248,191,19,.3), transparent 26%), linear-gradient(135deg, transparent 0 48%, rgba(248,191,19,.1) 48% 50%, transparent 50%); }
.hero h1 { font-size: clamp(43px, 6.2vw, 73px); }
.panel-kicker { margin-bottom: 6px; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.panel-link, .text-link { color: var(--gold); font-weight: 900; }
.panel-link { display: inline-block; margin-top: 12px; }
.authority-band { background: var(--gold); color: var(--blue-950); }
.authority-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.authority-grid div { min-height: 142px; display: flex; align-items: center; gap: 18px; padding: 24px 36px; border-right: 1px solid rgba(0,24,70,.2); }
.authority-grid div:last-child { border-right: 0; }
.authority-grid strong { font-size: clamp(44px,5vw,70px); line-height: 1; }
.authority-grid span { max-width: 190px; font-weight: 800; }
.heading-row { max-width: none; display: grid; grid-template-columns: 1.7fr .7fr; gap: 64px; align-items: end; }
.heading-row > p { color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 315px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: background .2s, transform .2s; }
.service-card:hover { z-index: 1; transform: translateY(-4px); background: var(--paper); box-shadow: 0 18px 40px rgba(0,24,70,.1); }
.service-card.featured-card { color: #fff; background: var(--blue-950); }
.service-number { margin-bottom: 38px; color: var(--blue-700); font-size: 13px; font-weight: 950; }
.featured-card .service-number, .featured-card a { color: var(--gold); }
.service-card p { color: var(--muted); }
.featured-card p { color: rgba(255,255,255,.74); }
.service-card a { margin-top: auto; color: var(--blue-700); font-weight: 900; }
.check-list, .plain-list { padding: 0; margin: 26px 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding: 8px 0 8px 28px; }
.check-list li::before, .plain-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 950; }
.plain-list li::before { color: var(--blue-700); }
.obsolescence-panel { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding: 26px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); }
.obsolescence-panel .panel-label { grid-column: 1 / -1; color: var(--gold); font-size: 13px; font-weight: 950; text-transform: uppercase; }
.obsolescence-panel strong { min-height: 100px; display: flex; align-items: center; justify-content: center; padding: 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); font-size: 17px; text-align: center; }
.product-section { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.product-grid article { min-height: 230px; padding: 26px; background: #fff; border-top: 4px solid var(--blue-700); box-shadow: 0 12px 28px rgba(0,24,70,.07); }
.product-grid article > span { display: block; margin-bottom: 35px; color: var(--blue-700); font-weight: 950; }
.product-grid article p { color: var(--muted); }
.inline-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 28px; padding: 26px 30px; background: var(--blue-950); color: #fff; }
.inline-cta p { margin: 0; }
.urgency-section { padding: 96px 0; color: #fff; background: linear-gradient(115deg, rgba(139,12,12,.94), rgba(0,24,70,.97)), repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.08) 20px 22px); }
.urgency-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 65px; align-items: center; }
.urgency-grid p { color: rgba(255,255,255,.8); font-size: 18px; }
.urgency-action { padding: 28px; border-left: 5px solid var(--gold); background: rgba(255,255,255,.1); }
.urgency-action span, .urgency-action strong { display: block; }
.urgency-action strong { margin: 8px 0 24px; font-size: 21px; }
.brand-matrix.light span { color: var(--blue-950); border: 1px solid var(--line); background: var(--paper); }
.brands-section { padding-bottom: 110px; }
.centered { margin-inline: auto; text-align: center; }
.logo-note { margin: 22px auto 0; color: var(--muted); font-size: 13px; text-align: center; }
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.why-grid article { padding: 28px 24px; border: 1px solid var(--line); }
.why-grid strong { display: block; margin-bottom: 46px; color: var(--gold); font-size: 28px; }
.why-grid p { color: var(--muted); }
.operation-section { padding: 96px 0; color: #fff; background: var(--blue-950); }
.operation-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; }
.operation-grid h2 { max-width: 520px; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.06; }
.operation-grid > div:first-child > p:last-child { color: rgba(255,255,255,.72); font-size: 18px; }
.operation-section .location-grid article { color: var(--ink); }
.maintenance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.knowledge-section { padding: 88px 0; background: var(--gold); color: var(--blue-950); }
.knowledge-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.knowledge-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.knowledge-cards article { min-height: 190px; padding: 22px; background: rgba(255,255,255,.5); border: 1px solid rgba(0,24,70,.16); }
.knowledge-cards span { display: block; margin-bottom: 35px; font-size: 12px; font-weight: 950; text-transform: uppercase; }
.form-heading { display: grid; gap: 4px; margin-bottom: 4px; }
.form-heading strong { color: var(--blue-950); font-size: 25px; }
.form-heading span, .lead-form > small { color: var(--muted); }
.site-footer { padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 60px; }
.footer-brand img { width: 72px; height: 72px; object-fit: contain; padding: 8px; border-radius: 6px; background: #fff; }
.footer-brand p { max-width: 300px; margin-top: 18px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid strong { margin-bottom: 8px; color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

@media (max-width: 1040px) {
  .site-nav { gap: 13px; font-size: 12px; }
  .service-grid, .product-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .knowledge-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .authority-grid, .heading-row, .urgency-grid, .operation-grid, .maintenance-grid, .footer-grid { grid-template-columns: 1fr; }
  .authority-grid div { border-right: 0; border-bottom: 1px solid rgba(0,24,70,.2); }
  .authority-grid div:last-child { border-bottom: 0; }
  .knowledge-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { min-height: auto; }
  .hero h1 { font-size: 40px; }
  .service-grid, .product-grid, .why-grid, .obsolescence-panel { grid-template-columns: 1fr; }
  .inline-cta, .footer-bottom { flex-direction: column; align-items: stretch; }
  .inline-cta .btn { width: 100%; }
  .authority-grid div { padding-inline: 8px; }
}
/* Crédito centralizado com logo transparente */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-copyright { justify-self: start; }
.agency-credit { justify-self: center; gap: 12px; }
.footer-locations { justify-self: end; }
.agency-logo {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-image: url("logo-agencia-de-sites.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 188%;
}
@media (max-width: 760px) {
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .footer-copyright,
  .agency-credit,
  .footer-locations { justify-self: start; }
}
/* Estado final dos cartões: azul em hover e foco */
.service-card.featured-card { color: var(--ink); background: #fff; }
.service-card.featured-card p { color: var(--muted); }
.service-card.featured-card .service-number,
.service-card.featured-card a { color: var(--blue-700); }
.service-card:hover,
.service-card:focus-within {
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-950), var(--blue-700));
  border-color: var(--blue-700);
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 24, 70, .2);
}
.service-card:hover h3,
.service-card:focus-within h3,
.service-card:hover p,
.service-card:focus-within p { color: var(--white); }
.service-card:hover .service-number,
.service-card:focus-within .service-number,
.service-card:hover a,
.service-card:focus-within a { color: var(--gold); }
