@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');

:root {
  --color-header: #116f98;
  --color-accent: #26a9db;
  --color-accent-dark: rgba(0, 10, 18, 0.88);
  --container: 1320px;
  --transition: 0.35s ease;
  --page-gray: #f2f2f2;
  --text-dark: #111111;
  --text-body: #3b3b3b;
  --line-gray: #a7a7a7;
}

/* RESET BÁSICO */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #ffffff;
  color: var(--text-dark);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; border: none; background: none; color: inherit; cursor: pointer; }
address { font-style: normal; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-header);
  border-top: 2px solid #0b0b0b;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 24px;
}

.logo img { width: 118px; object-fit: contain; }

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

/* links normais do menu */
.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #ffffff;
}

/* risco PRETO: página atual (.active) – funciona para links e botão PRODUTOS */
.main-nav a.active::after,
.nav-link-dropdown.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 3px;
  background: #111111;
}

/* NAV DROPDOWN PRODUTOS */

.nav-item-with-dropdown {
  position: relative;
}

.nav-link-dropdown {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #ffffff;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-link-dropdown:hover {
  opacity: 0.85;
}

/* risco AZUL em PRODUTOS somente quando o dropdown estiver aberto */
.nav-item-with-dropdown.open .nav-link-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 3px;
  background: #00a9f0;
}

/* caixinha branca centralizada */
.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  transform: translateX(-50%);
  width: 280px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  padding: 14px 0;
  display: none;
  z-index: 100;
}

/* links internos */
.nav-dropdown a {
  display: block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #171717;
  text-align: left;
  background: #ffffff;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-dropdown a + a {
  margin-top: 2px;
}

/* HOVER: “holder” azul, texto branco */
.nav-dropdown a:hover {
  background: #28a6d8;
  color: #ffffff;
}

/* mostra o dropdown quando o JS adiciona .open */
.nav-item-with-dropdown.open .nav-dropdown {
  display: block;
}

.search-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  justify-self: end;
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  display: block;
}

.search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: #ffffff;
  right: -5px;
  bottom: -1px;
  transform: rotate(45deg);
  transform-origin: center;
}

/* HERO HOME */

.hero-slider {
  position: relative;
  min-height: calc(100vh - 70px);
  background: #000000;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,169,240,0.12), transparent 25%),
    radial-gradient(circle at 80% 40%, rgba(0,169,240,0.08), transparent 28%),
    linear-gradient(rgba(20,32,42,0.45), rgba(5,8,12,0.68)),
    #050505;
}

.hero-slide.active { opacity: 1; visibility: visible; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,20,28,0.25), rgba(0,0,0,0.5));
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content-left { align-items: flex-start; padding-left: 210px; }
.hero-content-center { align-items: center; text-align: left; }
.hero-content.wider { max-width: 1200px; }

.hero-title { font-weight: 400; line-height: 0.98; color: #ffffff; }

.hero-line {
  display: block;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}

.hero-line-highlight {
  display: inline-block;
  width: fit-content;
  background: var(--color-accent-dark);
  color: #00a9f0;
  font-weight: 800;
  padding: 2px 10px 3px;
}

.inline-highlight {
  display: inline-block;
  background: var(--color-accent-dark);
  color: #00a9f0;
  font-weight: 800;
  padding: 2px 10px 3px;
  line-height: 1;
}

.spacer { margin-bottom: 26px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  font-size: 72px;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform var(--transition);
  opacity: 0.95;
}

.slider-arrow:hover { transform: translateY(-50%) scale(1.08); }
.hero-arrow-left { left: 26px; }
.hero-arrow-right { right: 26px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.95);
  background: transparent;
  opacity: 0.95;
}

.dot.active { background: rgba(255,255,255,0.95); }

.dots-shape {
  position: absolute;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(0,169,240,0.16));
}

.dots-left {
  left: -80px;
  bottom: -40px;
  width: 430px;
  height: 430px;
  background-image: radial-gradient(circle, rgba(0,169,240,0.95) 0 3px, transparent 4px);
  background-size: 20px 20px;
  clip-path: polygon(0 35%, 74% 0, 100% 55%, 36% 100%);
}

.dots-left.tall {
  left: -35px;
  top: 80px;
  bottom: auto;
  width: 280px;
  height: 620px;
  clip-path: ellipse(44% 50% at 50% 50%);
}

.dots-right {
  right: -140px;
  top: 10px;
  width: 560px;
  height: 720px;
  background-image: radial-gradient(circle, rgba(0,169,240,0.9) 0 3px, transparent 4px);
  background-size: 20px 20px;
  clip-path: ellipse(42% 50% at 50% 50%);
}

.mini-dots-right, .mini-dots-left {
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(6,26,39,0.95) 0 6px, transparent 7px);
  background-size: 100% 24px;
  background-repeat: repeat-y;
}

.mini-dots-right { right: 58px; bottom: 36px; }
.mini-dots-left { left: 26px; bottom: 28px; }

/* SOBRE SDM HOME (bloco na home) */

.about-sdm {
  background: var(--page-gray);
  padding: 48px 70px 66px;
}

.about-sdm-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) 335px;
  gap: 76px;
  align-items: start;
}

.about-sdm-text h2 {
  font-size: 72px;
  line-height: 0.95;
  color: #28a6d8;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-subtitle { font-size: 24px; color: #2b2b2b; margin-bottom: 26px; }
.about-line { width: 100%; height: 1px; background: #ababab; margin-bottom: 34px; }

.about-sdm-text p {
  font-size: 21px;
  line-height: 1.32;
  color: #2f2f2f;
  margin-bottom: 26px;
  max-width: 960px;
}

.about-sdm-text strong { font-weight: 800; color: #111111; }
.about-list { margin: 4px 0 22px 24px; color: #202020; }
.about-list li { font-size: 21px; line-height: 1.32; margin-bottom: 2px; }

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 58px;
  padding: 14px 34px;
  background: #28a6d8;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-radius: 0 0 16px 0;
  transition: background var(--transition);
}

.about-button:hover { background: #1a8ab8; }

.about-sdm-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

.about-image-placeholder,
.about-sdm-image img {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 0.79 / 1;
  background: linear-gradient(135deg, #d7dde5, #cad4e0);
  clip-path: polygon(0 0, 100% 0, 100% 97%, 93% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c5c5c;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  object-fit: cover;
}

/* PRODUTOS HOME */

.products-showcase {
  background: var(--page-gray);
  padding: 0 24px 18px;
}

.products-shell { max-width: 1480px; margin: 0 auto; }
.products-top-line { width: 100%; height: 1px; background: var(--line-gray); }

.products-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 0 40px;
  border-bottom: 1px solid var(--line-gray);
  overflow-x: auto;
  white-space: nowrap;
}

.products-tabs::-webkit-scrollbar { height: 0; }

.product-tab {
  position: relative;
  padding: 15px 0 11px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #8d8d8d;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.product-tab.active { color: #2f2f2f; }

.product-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #28a6d8;
}

.products-slider {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  min-height: 600px;
}

.products-track { position: relative; min-height: 600px; }

.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 390px;
  gap: 72px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  padding: 44px 108px 94px;
}

.product-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.product-text { min-width: 0; }

.product-text h2 {
  font-size: 58px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0b0b0b;
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 700px;
}

.product-text p {
  font-size: 20px;
  line-height: 1.32;
  color: var(--text-body);
  margin-bottom: 22px;
  max-width: 760px;
}

.product-text strong { font-weight: 800; color: #111111; }

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  min-height: 56px;
  padding: 12px 28px;
  background: #28a6d8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0 0 16px 0;
  transition: background var(--transition);
  position: relative;
  z-index: 2;
}

.product-button:hover { background: #1a8ab8; }

.product-image { display: flex; justify-content: center; padding-top: 18px; }

.product-image-placeholder,
.product-image img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  background: #dddddd;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #717171;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  object-fit: cover;
}

.product-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 72px;
  display: grid;
  place-items: center;
  font-size: 84px;
  line-height: 1;
  color: #8c8c8c;
  transition: transform 0.25s ease, color 0.25s ease;
  opacity: 0.9;
}

.product-arrow:hover {
  transform: translateY(-50%) scale(1.03);
  color: #3a3a3a;
}
.product-arrow-left { left: 8px; }
.product-arrow-right { right: 8px; }

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

.products-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #585858;
  background: transparent;
  transition: 0.25s ease;
}

.products-dot.active { background: #111111; transform: scale(1.1); }

/* COMPROMISSO (HOME) */

.commitment {
  position: relative;
  background: #0d1117 url('../images/home/compromisso_fundo.jpg') center / cover no-repeat;
  overflow: hidden;
}

.commitment::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(14,127,170,0.08) 0%, transparent 60%),
    linear-gradient(to right, rgba(5,8,14,0.90) 38%, rgba(5,8,14,0.40) 100%);
  z-index: 1;
  pointer-events: none;
}

.commitment::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.018) 48px, rgba(255,255,255,0.018) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.018) 48px, rgba(255,255,255,0.018) 49px);
  z-index: 0;
  pointer-events: none;
}

.commitment-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 70px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}

.commitment-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.commitment-text p {
  font-size: 18px;
  line-height: 1.55;
  color: #ccd4dc;
  margin-bottom: 18px;
  max-width: 660px;
}

.commitment-text strong { font-weight: 700; color: #ffffff; }

.commitment-image { width: 100%; display: flex; }

.commitment-image-placeholder,
.commitment-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a3240, #1c2635);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7a8d;
  font-size: 16px;
  text-align: center;
  object-fit: cover;
}

/* CONTATO (HOME) */

.contact { background: var(--page-gray); padding: 80px 0; }

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 70px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
}

.contact-title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.93;
  color: #28a6d8;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.contact-cursor {
  display: inline-block;
  color: #28a6d8;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  width: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.contact-detail address,
.contact-detail a {
  font-size: 1rem;
  line-height: 1.55;
  color: #222222;
}

.contact-detail a:hover { color: #28a6d8; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #c0c0c0;
  border-radius: 0;
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #555555;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaaaaa;
  letter-spacing: 3px;
  font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #28a6d8; }

.form-group textarea {
  min-height: 190px;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  font-weight: 400;
}

.form-group textarea::placeholder {
  letter-spacing: 0.5px;
  font-weight: 400;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 32px;
  background: #28a6d8;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  border-radius: 0 0 16px 0;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--transition);
}

.form-submit:hover { background: #1a8ab8; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-feedback {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 20px;
  color: #2a8c4a;
  font-weight: 500;
}

.form-feedback.error { color: #c0392b; }

/* FOOTER GERAL */

.site-footer { background: #09111a; }

.footer-top-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* nav */
.footer-nav {
  width: 100%;
}

.footer-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  padding: 36px 0;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #28a6d8;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover { color: #ffffff; }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* bloco central (logo + contatos) */
.footer-middle {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 70px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 230px;
  object-fit: contain;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; }

.footer-contact-item address,
.footer-contact-item a {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b8c8d4;
}

.footer-contact-item a:hover { color: #28a6d8; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #3e5060;
  letter-spacing: 0.5px;
}


.footer-bottom a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: inherit;
}


/* Rodape em colunas usado na pagina inicial */
.footer-home-columns {
  padding: 48px 70px;
  display: grid;
  grid-template-columns: 260px 1fr 1.35fr 1.35fr;
  gap: 52px;
  align-items: start;
}

.footer-home-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.footer-home-col h2 {
  margin: 0 0 18px;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 4px;
  color: #28a6d8;
  font-weight: 700;
}

.footer-home-col a,
.footer-home-col p {
  display: block;
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #b8c8d4;
  text-decoration: none;
}

.footer-home-col a:hover {
  color: #ffffff;
}

.footer-home-contact p {
  margin-bottom: 16px;
}

.footer-home-contact strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@media (max-width: 1000px) {
  .footer-home-columns {
    grid-template-columns: 1fr 1fr;
    padding: 42px 30px;
    gap: 36px;
  }

  .footer-home-brand {
    justify-content: flex-start;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .footer-home-columns {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ========================= */
/* PÁGINA A SDM – HERO E SEÇÕES */
/* ========================= */

.page-hero {
  position: relative;
  overflow: hidden;
}

/* HERO A SDM */

.page-hero-sdm {
  position: relative;
  background: #0f597b;
  color: #ffffff;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,48,71,0.72);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 70px 60px;
}

.page-hero-heading-sdm {
  display: flex;
  align-items: center;
  gap: 26px;
}

.page-hero-title-sdm {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #28a6d8;
  line-height: 1;
}

.page-hero-line-sdm {
  flex: 1;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* BLOCO SOBRE A SDM (página) */

.sdm-about-block {
  background: #ffffff;
  padding: 0;
}

.sdm-about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.sdm-about-text {
  padding: 64px 80px 56px max(40px, calc((100vw - var(--container)) / 2 + 70px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sdm-about-text p {
  font-size: 22px;
  line-height: 1.24;
  color: #222222;
  margin-bottom: 28px;
}

.sdm-about-text strong {
  font-weight: 800;
}

.sdm-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOCO FUNDADOR */

.sdm-founder {
  background: #ffffff;
}

.sdm-founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  min-height: 560px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-text-wrapper {
  position: relative;
  overflow: hidden;
  background: #117098;
}

.founder-bg-image {
  background: #117098;
}

.founder-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 84px max(40px, calc((100vw - var(--container)) / 2 + 70px)) 70px 84px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-text h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 34px;
}

.founder-text p {
  font-size: clamp(1.45rem, 1.45vw, 1.75rem);
  line-height: 1.32;
  margin-bottom: 30px;
  max-width: 860px;
}

.founder-text strong {
  font-weight: 800;
}

/* LINHA DO TEMPO */

.timeline {
  background: #ffffff;
  padding: 72px 0 120px;
}

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

.timeline-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #28a6d8;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.timeline-cursor {
  color: #28a6d8;
}

.timeline-years {
  display: flex;
  justify-content: flex-start;
  gap: 72px;
  font-size: 18px;
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.timeline-year {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: #111111;
  cursor: pointer;
}

.timeline-year.active {
  color: #111111;
}

.timeline-years-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: #d0d0d0;
  margin-bottom: 40px;
}

.timeline-years-line-active {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #00a9f0;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

/* SLIDES LINHA DO TEMPO */

.timeline-content-wrapper {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 16px;
}

.timeline-slides {
  position: relative;
  min-height: 430px;
}

.timeline-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.timeline-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.timeline-text {
  max-width: 760px;
}

.timeline-year-big {
  font-size: 42px;
  font-weight: 800;
  color: #11324b;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.timeline-text p {
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  line-height: 1.42;
  color: #222222;
}

.timeline-text strong {
  font-weight: 700;
}

.timeline-image img {
  width: 100%;
  max-width: 320px;
  max-height: 340px;
  margin-left: auto;
  display: block;
  object-fit: cover;
  border-radius: 0 0 34px 0;
}

/* SETAS TIMELINE */

.timeline-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #666666;
  background: #f7f7f7;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.timeline-arrow:hover {
  background: #e1e1e1;
  color: #333333;
  transform: scale(1.03);
}

/* PRIMEIRAS CIDADES ATENDIDAS */

.cities {
  background: #050f19;
  color: #ffffff;
  padding: 72px 0 70px;
}

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

.cities-header {
  margin-bottom: 34px;
}

.cities-kicker {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.cities-title {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* track horizontal */

.cities-track-wrapper {
  position: relative;
  margin-top: 18px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 16px;
}

.cities-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
  overflow-x: auto;
  padding: 18px 6px 10px;
  scroll-behavior: smooth;
}

.cities-track::-webkit-scrollbar {
  height: 6px;
}

.cities-track::-webkit-scrollbar-track {
  background: transparent;
}

.cities-track::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}

/* card */

.city-card {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
}

.city-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* faixa azul */

.city-card-foot {
  margin-top: -4px;
  background: #28a6d8;
  padding: 18px 22px 18px;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
}

.city-card-foot-rounded {
  border-radius: 0 0 18px 0;
}

.city-card-year {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.city-card-text {
  font-size: 15px;
  margin-top: 6px;
  line-height: 1.35;
}

/* linha entre os cards */

.cities-separator {
  flex: 0 0 40px;
  height: 1px;
  background: #e4eef4;
  opacity: 0.65;
}

/* setas */

.cities-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255,255,255,0.85);
  background: rgba(10,20,30,0.9);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cities-arrow:hover {
  background: rgba(40,166,216,0.9);
  border-color: rgba(40,166,216,1);
  color: #ffffff;
  transform: scale(1.05);
}

/* texto final cidades */

.cities-note {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 820px;
  color: #ffffff;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVO A SDM / TIMELINE / CIDADES */

@media (max-width: 1024px) {
  .sdm-about-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sdm-about-text {
    padding: 48px 26px;
  }

  .sdm-about-image {
    min-height: 360px;
  }

  .sdm-founder-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .founder-photo {
    min-height: 430px;
  }

  .founder-text {
    padding: 48px 26px;
  }

  .founder-role {
    font-size: 24px;
  }

  .founder-text p {
    font-size: 20px;
    line-height: 1.35;
  }

  .page-hero-inner {
    padding: 120px 26px 50px;
    min-height: 360px;
  }

  .timeline-inner {
    padding: 0 26px;
  }

  .timeline-content-wrapper {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .timeline-slide {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .timeline-slides {
    min-height: 620px;
  }

  .timeline-year-big {
    font-size: 36px;
  }

  .timeline-text p {
    font-size: 22px;
  }

  .timeline-image img {
    margin: 0 auto;
  }

  .cities-inner {
    padding: 0 26px;
  }

  .city-card {
    flex-basis: 360px;
  }
}

@media (max-width: 768px) {
  .page-hero-title-sdm {
    font-size: 38px;
  }

  .timeline-title {
    font-size: 30px;
  }

  .founder-role {
    font-size: 21px;
  }

  .founder-text p {
    font-size: 18px;
  }

  .timeline-year-big {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .timeline-text p {
    font-size: 18px;
    line-height: 1.5;
  }

  .timeline-years {
    gap: 28px;
    font-size: 16px;
    letter-spacing: 4px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .timeline-years::-webkit-scrollbar {
    height: 0;
  }

  .timeline-content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    gap: 18px;
  }

  .timeline-arrow {
    order: 3;
  }

  .timeline-arrow-left {
    justify-self: flex-start;
  }

  .timeline-arrow-right {
    justify-self: flex-end;
  }

  .timeline-slides {
    order: 2;
    width: 100%;
    min-height: 640px;
  }

  .cities {
    padding: 60px 0;
  }

  .cities-track-wrapper {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 14px;
  }

  .cities-track {
    grid-row: 2;
  }

  .cities-arrow-left,
  .cities-arrow-right {
    justify-self: center;
  }

  .cities-note {
    font-size: 16px;
  }
}

/* ========================= */
/* HERO PRODUTO – SEMÁFORO INTELIGENTE */
/* ========================= */

.page-hero-produto-semaforo {
  background-image: url('../images/home/hero-semaforo-inteligente.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero-produto-semaforo .page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-hero-kicker {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

/* h1 inteiro (texto + linha) */
.produto-hero-heading {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* texto do título */
.produto-hero-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #28a6d8;
  line-height: 1;
}

/* linha na frente do título */
.produto-hero-line {
  flex: 1;
  height: 2px;
  background: #ffffff;
  display: block;
}

/* ========================= */
/* BLOCOS SEMÁFORO INTELIGENTE */
/* ========================= */

.si-bloco {
  width: 100%;
}

.si-bloco-branco {
  background: #ffffff;
  padding: 0;
}

.si-bloco-azul {
  background: #0f597b;
  padding: 0;
}

.si-bloco-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 680px;
}

.si-bloco-inner-azul {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

/* imagem */

.si-bloco-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

/* texto geral */

.si-bloco-texto {
  padding: 72px max(42px, calc((100vw - var(--container)) / 2 + 70px)) 72px 80px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.si-bloco-texto p {
  font-size: clamp(1.15rem, 1.35vw, 1.55rem);
  line-height: 1.28;
  color: #222222;
  margin-bottom: 28px;
  max-width: 760px;
}

.si-bloco-texto strong {
  font-weight: 700;
}

.si-bloco-texto small {
  font-size: 12px;
}

/* título */

.si-bloco-titulo {
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6c7b88;
  margin-bottom: 20px;
}

.si-bloco-titulo span {
  display: block;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: #0f597b;
  font-weight: 800;
}

/* variações do bloco AZUL */

.si-bloco-texto-azul {
  background: transparent;
  color: #ffffff;
  padding: 72px 80px 72px max(42px, calc((100vw - var(--container)) / 2 + 70px));
}

.si-bloco-texto-azul p {
  color: #e5eef5;
  max-width: 850px;
}

.si-bloco-titulo-azul {
  color: #bcd0e0;
  margin-bottom: 20px;
}

.si-bloco-titulo-azul span {
  color: #ffffff;
}

/* faz a imagem à direita colar na borda no bloco azul */
.si-bloco-imagem-azul img {
  border-left: 1px solid rgba(0,0,0,0.15);
  background: #0f597b;
}

/* RESPONSIVO BLOCOS SEMÁFORO INTELIGENTE */

@media (max-width: 1200px) {
  .si-bloco-texto,
  .si-bloco-texto-azul {
    padding: 34px 40px;
  }

  .si-bloco-titulo span {
    font-size: 48px;
  }
}

@media (max-width: 900px) {
  .si-bloco-inner,
  .si-bloco-inner-azul {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .si-bloco-branco {
    padding: 0;
  }

  .si-bloco-azul {
    padding: 0;
  }

  .si-bloco-branco .si-bloco-imagem {
    order: -1;
  }

  .si-bloco-imagem img {
    height: 380px;
  }

  .si-bloco-texto,
  .si-bloco-texto-azul {
    padding: 28px 26px 32px;
  }

  .si-bloco-titulo span {
    font-size: 34px;
  }
}
/* ========================= */
/* SLIDE – VANTAGENS DO SEMÁFORO INTELIGENTE */
/* ========================= */

.si-vantagens {
  background: #ffffff;
  padding: 60px 0 70px;
}

.si-vantagens-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 60px;
}

.si-vantagens-titulo {
  text-align: center;
  font-size: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 38px;
}

.si-vantagens-titulo span {
  display: block;
  font-size: 32px;
  letter-spacing: 6px;
  font-weight: 800;
}

/* layout slider */

.si-vantagens-slider {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 10px;
}

.si-vantagens-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.si-vantagens-viewport::-webkit-scrollbar {
  height: 0;
}

.si-vantagens-track {
  display: flex;
  gap: 70px;
  align-items: stretch;
  transition: transform 0.45s ease;
}

/* cada card tem largura proporcional para permitir avanço de 1 em 1 */
.si-vantagem-card {
  flex: 0 0 calc((100% - 140px) / 3);
  text-align: center;
  max-width: none;
  margin: 0;
  padding: 0 18px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  scroll-snap-align: start;
}

.si-vantagem-card-ativo {
  opacity: 1;
}

.si-vantagem-icone {
  width: 132px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 18px;
  flex: 0 0 132px;
}

.si-vantagem-texto {
  width: 100%;
  font-size: 20px;
  line-height: 1.45;
  color: #000000;
  min-height: 96px;
  display: block;
  text-align: center;
}

.si-vantagem-texto strong {
  font-weight: 700;
}

/* setas laterais com ícone desenhado */

.si-vantagens-seta {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 2px solid #000000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.si-vantagens-chevron {
  width: 12px;
  height: 12px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
}

/* esquerda: chevron apontando para a esquerda */
.si-vantagens-seta-esq .si-vantagens-chevron {
  transform: rotate(-135deg);
}

/* direita: chevron apontando para a direita */
.si-vantagens-seta-dir .si-vantagens-chevron {
  transform: rotate(45deg);
}

.si-vantagens-seta:hover {
  background: #f5f5f5;
  transform: scale(1.03);
}

/* linha de progresso inferior */

.si-vantagens-progress {
  max-width: 1520px;
  margin: 26px auto 0;
  padding: 0 60px;
  position: relative;
}

.si-vantagens-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
}

.si-vantagens-progress-bar {
  position: absolute;
  left: 60px;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #28a6d8;
  transition: width 0.3s ease;
}

/* RESPONSIVO VANTAGENS */

@media (max-width: 1200px) {
  .si-vantagens-inner,
  .si-vantagens-progress {
    padding: 0 30px;
  }

  .si-vantagens-track {
    gap: 40px;
  }

  .si-vantagem-card {
    flex-basis: calc((100% - 80px) / 3);
  }
}

@media (max-width: 900px) {
  .si-vantagens-slider {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .si-vantagem-card {
    flex: 0 0 100%;
  }

  .si-vantagens-progress {
    padding: 0 30px;
  }

  .si-vantagens-progress-bar {
    left: 30px;
  }

  .si-vantagens-titulo span {
    font-size: 24px;
  }
}
/* SEMAFORO INTELIGENTE - CONTRAN E COMPARATIVO */

.si-contran {
  position: relative;
  overflow: hidden;
  background: #020b11;
  color: #fff;
}

.si-contran-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 14, 0.97) 0%, rgba(2, 12, 19, 0.91) 50%, rgba(2, 9, 14, 0.97) 100%),
    linear-gradient(rgba(0, 8, 14, 0.32), rgba(0, 8, 14, 0.32)),
    url('../images/protudo-semafaro-inteligente/city.jpg') center / cover no-repeat;
}

.si-contran-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 96px;
}

.si-contran-content {
  max-width: 1160px;
  margin: 0 auto;
}

.si-contran-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 70px;
  align-items: center;
}

.si-contran-text h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 8px;
}

.si-contran-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.25vw, 23px);
  line-height: 1.32;
  font-weight: 400;
}

.si-contran-text p + p {
  margin-top: 28px;
}

.si-contran-bottom {
  max-width: 1060px;
  margin-top: 88px;
}

.si-contran-selo {
  width: 300px;
  aspect-ratio: 1;
}

.si-contran-selo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.si-comparativo {
  background: #f7f7f7;
  padding: 92px 0 115px;
}

.si-comparativo-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.si-comparativo-title {
  margin: 0 0 58px;
  color: #071522;
  text-align: center;
  font-size: clamp(31px, 3.4vw, 54px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 8px;
}

.si-comparativo-title span {
  color: #28a6d8;
}

.si-comparativo-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: stretch;
}

.si-comparativo-card {
  position: relative;
  min-height: 746px;
  padding: 58px 54px 70px;
  color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 42px), calc(100% - 42px) 100%, 0 100%);
}

.si-comparativo-card-light {
  background: #25a3c5;
}

.si-comparativo-card-dark {
  background: #103a58;
}

.si-comparativo-card h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  font-weight: 700;
}

.si-comparativo-card ul {
  margin: 0;
  padding-left: 28px;
}

.si-comparativo-card li {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.22;
}

.si-comparativo-card li::marker {
  color: #fff;
}

@media (max-width: 1100px) {
  .si-contran-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .si-contran-selo {
    width: 210px;
  }

  .si-comparativo-cards {
    gap: 34px;
  }

  .si-comparativo-card {
    padding: 44px 34px 60px;
  }
}

@media (max-width: 900px) {
  .si-contran-inner {
    padding: 72px 0;
  }

  .si-contran-text h2,
  .si-comparativo-title {
    letter-spacing: 4px;
  }

  .si-contran-bottom {
    margin-top: 58px;
  }

  .si-comparativo {
    padding: 68px 0 78px;
  }

  .si-comparativo-cards {
    grid-template-columns: 1fr;
  }

  .si-comparativo-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .si-contran-inner,
  .si-comparativo-inner {
    width: min(100% - 30px, 1180px);
  }

  .si-contran-text h2,
  .si-comparativo-title {
    letter-spacing: 2px;
  }

  .si-comparativo-card {
    padding: 34px 26px 52px;
  }

  .si-comparativo-card li {
    margin-bottom: 20px;
  }
}
/* =========================================================
   PAGINA ANJO DE SINALIZACAO - CSS FINAL COM CARD ARREDONDADO
   ========================================================= */

/* HERO */
.page-hero-produto-anjo-clean {
  background:
    linear-gradient(rgba(8, 47, 72, 0.72), rgba(8, 47, 72, 0.72)),
    url("../images/home/anjo-hero.jpg") center / cover no-repeat,
    #123f5b !important;
}

.page-hero-produto-anjo-clean .page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-produto-anjo-clean .anjo-clean-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-produto-anjo-clean .produto-hero-title {
  color: #28a6d8 !important;
}

/* INTRO */
.anjo-clean-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 520px;
}

.anjo-clean-intro-text {
  width: min(560px, calc(100% - 64px));
  justify-self: center;
  padding: 48px 0 50px;
}

.anjo-clean-intro-text p {
  margin: 0 0 30px;
  color: #242424;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.12;
  font-weight: 400;
}

.anjo-clean-intro-text p:last-child {
  margin-bottom: 0;
}

.anjo-clean-intro-text strong {
  font-weight: 800;
}

.anjo-clean-green {
  color: inherit;
  font-weight: 800;
}

.anjo-clean-image-slot,
.anjo-clean-tech-image {
  min-height: 520px;
  background: #d9edf6;
}

.anjo-clean-image-slot img,
.anjo-clean-tech-image img,
.anjo-clean-prefooter img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.anjo-clean-tech-image img {
  object-fit: cover;
  object-position: 58% center;
  background: transparent;
}

/* ESTUDO / GRAFICO */
.anjo-clean-study {
  padding: 68px 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(31, 105, 142, 0.28), transparent 44%),
    linear-gradient(135deg, #061018 0%, #102b3d 48%, #061018 100%);
}

/* neutraliza todos os cortes antigos */
.anjo-clean-study-card,
.anjo-page-study-card,
.anjo-estudo-card {
  clip-path: none !important;
}

.anjo-clean-study-card::after,
.anjo-page-study-card::after,
.anjo-estudo-card::after {
  display: none !important;
  content: none !important;
}

.anjo-clean-study-card {
  width: min(1580px, calc(100% - 86px));
  min-height: 595px;
  margin: 0 auto;
  padding: 76px 96px 72px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 86px;
  align-items: center;
  background: #fff;
  border-radius: 0 0 18px 0;
  overflow: hidden;
}

.anjo-clean-study-text {
  max-width: 560px;
}

.anjo-clean-study-text p {
  margin: 0 0 34px;
  color: #333;
  font-size: clamp(19px, 1.35vw, 25px);
  line-height: 1.15;
}

.anjo-clean-study-text p:last-child {
  margin-bottom: 0;
}

/* GRAFICO */
.anjo-clean-chart h2 {
  margin: 0 0 24px;
  color: #111;
  text-align: center;
  font-size: clamp(22px, 1.9vw, 31px);
  line-height: 1.1;
  font-weight: 800;
}

.anjo-clean-chart-box {
  display: grid;
  grid-template-columns: 46px 1fr;
  height: 392px;
}

.anjo-clean-chart-scale {
  display: grid;
  grid-template-rows: repeat(8, 1fr);
  padding-top: 2px;
  color: #333;
  font-size: 23px;
  line-height: 1;
  text-align: right;
}

.anjo-clean-chart-scale span {
  transform: translateY(-8px);
}

.anjo-clean-chart-plot {
  position: relative;
  min-width: 0;
}

.anjo-clean-chart-lines {
  position: absolute;
  left: 28px;
  right: 0;
  top: 0;
  bottom: 74px;
  background: repeating-linear-gradient(
    to bottom,
    #9d9d9d 0,
    #9d9d9d 2px,
    transparent 2px,
    transparent calc(100% / 7)
  );
  border-bottom: 2px solid #9d9d9d;
}

.anjo-clean-chart-columns {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 78px;
  padding: 0 72px;
}

.anjo-clean-chart-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.anjo-clean-bar {
  width: min(165px, 82%);
  background: #25a3c5;
}

.anjo-clean-bar-one {
  height: 266px;
}

.anjo-clean-bar-two {
  height: 88px;
}

.anjo-clean-chart-column p {
  min-height: 70px;
  margin: 16px 0 0;
  color: #333;
  text-align: center;
  font-size: 17px;
  line-height: 1.1;
}

/* TECNOLOGIA */
.anjo-clean-tech {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1f7393;
  color: #fff;
  min-height: 590px;
}

.anjo-clean-tech-image {
  min-height: 590px;
  background: #d8e8ef;
}

.anjo-clean-tech-text {
  width: min(690px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 58px 0;
}

.anjo-clean-tech-kicker {
  margin: 0 0 2px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.anjo-clean-tech-text h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(50px, 5vw, 82px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -2px;
}

.anjo-clean-tech-text p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.16;
}

.anjo-clean-tech-text p:last-child {
  margin-bottom: 0;
}

.anjo-clean-tech-text strong {
  color: #fff;
  font-weight: 800;
}

/* VANTAGENS */
.anjo-clean-benefits {
  padding: 44px 0 0;
  background: #f7f7f7;
  border-bottom: 1px solid #9a9a9a;
}

.anjo-clean-benefits h2 {
  margin: 0 0 44px;
  color: #151515;
  text-align: center;
  font-size: clamp(34px, 3.2vw, 55px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 8px;
}

.anjo-clean-benefits-grid {
  width: min(1460px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
  align-items: start;
}

.anjo-clean-benefits-grid article {
  position: relative;
  min-height: 315px;
  padding-bottom: 42px;
  text-align: center;
}

.anjo-clean-benefits-grid article::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 166px;
  height: 4px;
  transform: translateX(-50%);
  background: #28a6d8;
}

.anjo-clean-icon-slot {
  width: 142px;
  height: 142px;
  margin: 0 auto 42px;
}

.anjo-clean-icon-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.anjo-clean-benefits-grid p {
  margin: 0;
  color: #1c1c1c;
  font-size: clamp(21px, 1.75vw, 31px);
  line-height: 1.16;
  font-weight: 400;
}

/* IMAGEM ANTES DO RODAPE */
.anjo-clean-prefooter {
  position: relative;
  min-height: 360px;
  background: #0a2435;
  overflow: hidden;
}

.anjo-clean-prefooter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 10, 18, 0.72), rgba(5, 38, 58, 0.58), rgba(1, 10, 18, 0.72)),
    rgba(2, 28, 46, 0.46);
  pointer-events: none;
}

.anjo-clean-prefooter img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.92) brightness(0.78);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .page-hero-produto-anjo-clean .produto-hero-title {
    white-space: normal;
  }

  .anjo-clean-intro,
  .anjo-clean-tech,
  .anjo-clean-study-card {
    grid-template-columns: 1fr;
  }

  .anjo-clean-image-slot,
  .anjo-clean-tech-image {
    min-height: 420px;
  }

  .anjo-clean-study-card {
    gap: 52px;
  }

  .anjo-clean-study-text {
    max-width: none;
  }

  .anjo-clean-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .anjo-clean-intro-text,
  .anjo-clean-tech-text {
    width: calc(100% - 36px);
  }

  .anjo-clean-study {
    padding: 38px 0;
  }

  .anjo-clean-study-card {
    width: calc(100% - 32px);
    padding: 42px 26px 58px;
    border-radius: 0 0 14px 0;
  }

  .anjo-clean-chart-box {
    grid-template-columns: 34px 1fr;
    height: 340px;
  }

  .anjo-clean-chart-columns {
    gap: 24px;
    padding: 0 10px 0 18px;
  }

  .anjo-clean-chart-lines {
    left: 18px;
    bottom: 76px;
  }

  .anjo-clean-bar-one {
    height: 215px;
  }

  .anjo-clean-bar-two {
    height: 72px;
  }

  .anjo-clean-chart-column p {
    font-size: 12px;
  }

  .anjo-clean-benefits h2 {
    letter-spacing: 3px;
  }

  .anjo-clean-benefits-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .anjo-clean-benefits-grid article {
    min-height: auto;
    padding-bottom: 36px;
  }
}
/* =========================================================
   PAGINA CERCA DIGITAL
   ========================================================= */

.page-hero-produto-cerca {
  background: #123f5b !important;
}

.page-hero-produto-cerca .cerca-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-produto-cerca .produto-hero-title {
  color: #28a6d8 !important;
}

/* INTRO */
.cerca-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 560px;
}

.cerca-intro-image {
  min-height: 560px;
  background: #d9edf6;
}

.cerca-intro-image img,
.cerca-funciona-image img,
.cerca-prefooter img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cerca-intro-text {
  width: min(660px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 58px 0;
}

.cerca-intro-text p {
  margin: 0 0 30px;
  color: #252525;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.16;
}

.cerca-intro-text p:last-child {
  margin-bottom: 0;
}

.cerca-intro-text strong {
  font-weight: 800;
}

/* COMO FUNCIONA */
.cerca-funciona {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1f7393;
  color: #fff;
  min-height: 590px;
}

.cerca-funciona-text {
  width: min(690px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 62px 0;
}

.cerca-funciona-kicker {
  margin: 0 0 2px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.cerca-funciona-text h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(50px, 4.8vw, 82px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.cerca-funciona-text p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.16;
}

.cerca-funciona-text p:last-child {
  margin-bottom: 0;
}

.cerca-funciona-text strong {
  color: #fff;
  font-weight: 800;
}

.cerca-funciona-image {
  min-height: 590px;
  background: #d8e8ef;
}

/* VANTAGENS */
.cerca-vantagens {
  padding: 78px 0 72px;
  background: #fff;
}

.cerca-vantagens h2 {
  margin: 0 0 58px;
  color: #151515;
  text-align: center;
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 7px;
}

.cerca-vantagens-grid {
  width: min(1260px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 78px;
  row-gap: 62px;
}

.cerca-vantagens-grid article {
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cerca-icon-slot {
  width: 136px;
  height: 136px;
  margin: 0 auto 24px;
}

.cerca-icon-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cerca-vantagens-grid p {
  margin: 0;
  color: #151515;
  font-size: clamp(22px, 1.65vw, 29px);
  line-height: 1.16;
}

.cerca-vantagens-grid strong {
  font-weight: 800;
}

/* IMAGEM ANTES DO RODAPE */
.cerca-prefooter {
  position: relative;
  height: 360px;
  min-height: 0;
  overflow: hidden;
  background: #0a2435;
}

.cerca-prefooter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 10, 18, 0.72), rgba(5, 38, 58, 0.58), rgba(1, 10, 18, 0.72)),
    rgba(2, 28, 46, 0.46);
  pointer-events: none;
}

.cerca-prefooter img {
  width: 100%;
  height: 360px;
  filter: saturate(0.78) contrast(0.92) brightness(0.78);
  object-position: center;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .page-hero-produto-cerca .produto-hero-title {
    white-space: normal;
  }

  .cerca-intro,
  .cerca-funciona {
    grid-template-columns: 1fr;
  }

  .cerca-intro-image,
  .cerca-funciona-image {
    min-height: 420px;
  }

  .cerca-vantagens-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 56px;
  }
}

@media (max-width: 760px) {
  .cerca-intro-text,
  .cerca-funciona-text {
    width: calc(100% - 36px);
  }

  .cerca-vantagens h2 {
    letter-spacing: 3px;
  }

  .cerca-vantagens-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .cerca-prefooter {
    height: 300px;
  }

  .cerca-prefooter img {
    height: 300px;
  }
}
/* =========================================================
   PAGINA SISTEMA SITT
   ========================================================= */

.page-hero-produto-sitt {
  background: #123f5b !important;
}

.page-hero-produto-sitt .sitt-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-produto-sitt .produto-hero-title {
  color: #28a6d8 !important;
}

/* INTRO */
.sitt-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  min-height: 560px;
}

.sitt-intro-image {
  min-height: 560px;
  background: #d9edf6;
}

.sitt-intro-image img,
.sitt-funciona-image img,
.sitt-prefooter img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sitt-intro-text {
  width: min(660px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 58px 0;
}

.sitt-intro-text p {
  margin: 0;
  color: #252525;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.16;
}

/* COMO FUNCIONA */
.sitt-funciona {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #1f7393;
  color: #fff;
  min-height: 720px;
}

.sitt-funciona-text {
  width: min(690px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 62px 0;
}

.sitt-funciona-kicker {
  margin: 0 0 2px;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.sitt-funciona-text h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(50px, 4.8vw, 82px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.sitt-funciona-text h3 {
  margin: 54px 0 28px;
  color: #fff;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.08;
  font-weight: 800;
}

.sitt-funciona-text p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.16;
}

.sitt-funciona-text p:last-child {
  margin-bottom: 0;
}

.sitt-funciona-text strong {
  color: #fff;
  font-weight: 800;
}

.sitt-funciona-image {
  min-height: 720px;
  background: #d8e8ef;
}

/* VANTAGENS */
.sitt-beneficios {
  padding: 76px 0 72px;
  background: #fff;
}

.sitt-beneficios h2 {
  margin: 0 0 58px;
  color: #151515;
  text-align: center;
  font-size: clamp(34px, 3.2vw, 55px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 8px;
}

.sitt-beneficios-grid {
  width: min(1480px, calc(100% - 60px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
}

.sitt-beneficios-grid article {
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sitt-icon-slot {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  background: #ffffff;
}

.sitt-icon-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #ffffff;
}

.sitt-beneficios-grid p {
  margin: 0;
  color: #151515;
  font-size: clamp(22px, 1.8vw, 31px);
  line-height: 1.16;
}

/* IMAGEM ANTES DO RODAPE */
.sitt-prefooter {
  position: relative;
  height: 360px;
  min-height: 0;
  overflow: hidden;
  background: #0a2435;
}

.sitt-prefooter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 10, 18, 0.72), rgba(5, 38, 58, 0.58), rgba(1, 10, 18, 0.72)),
    rgba(2, 28, 46, 0.46);
  pointer-events: none;
}

.sitt-prefooter img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.92) brightness(0.78);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .page-hero-produto-sitt .produto-hero-title {
    white-space: normal;
  }

  .sitt-intro,
  .sitt-funciona {
    grid-template-columns: 1fr;
  }

  .sitt-intro-image,
  .sitt-funciona-image {
    min-height: 420px;
  }

  .sitt-beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

@media (max-width: 760px) {
  .sitt-intro-text,
  .sitt-funciona-text {
    width: calc(100% - 36px);
  }

  .sitt-beneficios h2 {
    letter-spacing: 3px;
  }

  .sitt-beneficios-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sitt-prefooter {
    height: 300px;
  }

  .sitt-prefooter img {
    height: 300px;
  }
}
/* =========================================================
   PAGINA CONTROLADOR INTELIGENTE DE TRAFEGO
   ========================================================= */

.page-hero-produto-controlador {
  background: #123f5b !important;
}

.page-hero-produto-controlador .controlador-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-produto-controlador .produto-hero-title {
  color: #28a6d8 !important;
}

/* INTRO */
.controlador-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.controlador-intro-image {
  min-height: 520px;
  background: #d9edf6;
}

.controlador-intro-image img,
.controlador-prefooter img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.controlador-intro-text {
  width: min(660px, calc(100% - 70px));
  justify-self: center;
  align-self: center;
  padding: 58px 0;
}

.controlador-intro-text p {
  margin: 0 0 30px;
  color: #252525;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.16;
}

.controlador-intro-text p:last-child {
  margin-bottom: 0;
}

/* CARROSSEL BENEFICIOS */
.controlador-beneficios {
  background: #061c2a;
  color: #fff;
  overflow: hidden;
}

.controlador-beneficios-inner {
  width: min(1600px, calc(100% - 70px));
  margin: 0 auto;
  padding: 92px 0 96px;
}

.controlador-beneficios h2 {
  margin: 0 0 76px;
  color: #fff;
  text-align: center;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 8px;
}

.controlador-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
}

.controlador-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.controlador-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.controlador-carousel-track {
  display: flex;
  gap: 120px;
  padding: 0 40px;
}

.controlador-benefit-card {
  flex: 0 0 calc((100% - 120px) / 2);
  scroll-snap-align: center;
  text-align: center;
  color: #fff;
}

.controlador-icon-slot {
  width: 150px;
  height: 150px;
  margin: 0 auto 46px;
}

.controlador-icon-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.controlador-benefit-card h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  font-weight: 800;
}

.controlador-benefit-card p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.25;
}

.controlador-arrow {
  width: 72px;
  height: 72px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.controlador-arrow span {
  display: block;
  width: 34px;
  height: 34px;
  border-top: 3px solid rgba(255, 255, 255, 0.85);
  border-right: 3px solid rgba(255, 255, 255, 0.85);
}

.controlador-arrow-prev span {
  transform: rotate(-135deg);
  margin-left: 22px;
}

.controlador-arrow-next span {
  transform: rotate(45deg);
  margin-left: 8px;
}

.controlador-arrow:hover span {
  border-color: #28a6d8;
}

/* IMAGEM ANTES DO RODAPE */
.controlador-prefooter {
  position: relative;
  height: 360px;
  min-height: 0;
  overflow: hidden;
  background: #0a2435;
}

.controlador-prefooter-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 10, 18, 0.72), rgba(5, 38, 58, 0.58), rgba(1, 10, 18, 0.72)),
    rgba(2, 28, 46, 0.46);
  pointer-events: none;
}

.controlador-prefooter img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(0.92) brightness(0.78);
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .page-hero-produto-controlador .produto-hero-title {
    white-space: normal;
  }

  .controlador-intro {
    grid-template-columns: 1fr;
  }

  .controlador-intro-image {
    min-height: 420px;
  }

  .controlador-benefit-card {
    flex-basis: 100%;
  }

  .controlador-carousel-track {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .controlador-intro-text {
    width: calc(100% - 36px);
  }

  .controlador-beneficios-inner {
    width: calc(100% - 28px);
    padding: 64px 0 72px;
  }

  .controlador-beneficios h2 {
    letter-spacing: 3px;
    margin-bottom: 48px;
  }

  .controlador-carousel {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .controlador-arrow {
    width: 44px;
    height: 44px;
  }

  .controlador-arrow span {
    width: 22px;
    height: 22px;
  }

  .controlador-carousel-track {
    padding: 0 12px;
  }

  .controlador-prefooter,
  .controlador-prefooter img {
    height: 300px;
  }
}
/* AJUSTE CARROSSEL CONTROLADOR - 2 CARDS INTEIROS, ANDA 1 POR VEZ */

.controlador-carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.controlador-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.controlador-carousel-track {
  display: flex;
  gap: 120px;
  padding: 0;
}

.controlador-benefit-card {
  flex: 0 0 calc((100% - 120px) / 2);
  scroll-snap-align: start;
}

@media (max-width: 1100px) {
  .controlador-carousel-track {
    gap: 40px;
  }

  .controlador-benefit-card {
    flex: 0 0 100%;
  }
}
/* =========================================================
   PAGINA CIDADES INTELIGENTES
   ========================================================= */

.page-hero-cidades {
  background: #123f5b !important;
}

.page-hero-cidades .cidades-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-cidades .produto-hero-title {
  color: #28a6d8 !important;
}

/* SECAO MAPA */
.cidades-presenca {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 45%, rgba(40, 166, 216, 0.22), transparent 34%),
    linear-gradient(120deg, #102b3d 0%, #071018 100%);
  color: #fff;
}

.cidades-presenca::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 19, 0.30), transparent 46%, rgba(3, 12, 19, 0.36)),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(255,255,255,0.018) 54px 55px),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255,255,255,0.018) 54px 55px);
  pointer-events: none;
}

.cidades-presenca-inner {
  position: relative;
  z-index: 1;
  width: min(1420px, calc(100% - 80px));
  min-height: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.cidades-map-slot {
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cidades-map-stage {
  position: relative;
  width: min(760px, 100%);
  isolation: isolate;
}

.cidades-map-stage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(116, 221, 255, 0.32));
}

.cidades-map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cidades-map-pin {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
  pointer-events: auto;
}


.cidades-presenca-text {
  max-width: 640px;
}

.cidades-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  color: #28a6d8;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.cidades-presenca-text p {
  margin: 0 0 58px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.18;
}

.cidades-presenca-text p:last-of-type {
  margin-bottom: 46px;
}

.cidades-presenca-text strong {
  color: inherit;
  font-weight: 800;
}

.cidades-lista {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cidades-lista h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cidades-lista ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cidades-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.22vw, 22px);
  line-height: 1.2;
}

.cidades-lista li span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: #28a6d8;
  box-shadow: 0 0 12px rgba(40, 166, 216, 0.82);
}

.cidades-lista li.is-active {
  color: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .page-hero-cidades .produto-hero-title {
    white-space: normal;
  }

  .cidades-presenca-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 70px 0;
  }

  .cidades-map-slot {
    min-height: auto;
  }

  .cidades-map-stage {
    width: min(620px, 100%);
  }

  .cidades-presenca-text {
    max-width: none;
  }

  .cidades-presenca-text p {
    margin-bottom: 36px;
  }
}

@media (max-width: 760px) {
  .cidades-presenca-inner {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 54px 0;
  }

  .pin-label {
    display: none;
  }

  .cidades-lista {
    padding-top: 24px;
  }
}
/* PÁGINA FALE CONOSCO */

.page-hero-fale-conosco {
  background: #123f5b !important;
}

.page-hero-fale-conosco .fale-kicker-hidden {
  visibility: hidden !important;
}

.page-hero-fale-conosco .produto-hero-title {
  color: #28a6d8 !important;
}

.fale-contato-section {
  background: #f5f5f5;
  padding: 92px 0 104px;
}

.fale-contato-inner {
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: start;
}

.fale-contato-label {
  display: block;
  margin-bottom: 20px;
  color: #1f9fcc;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fale-contato-info h2 {
  margin: 0 0 28px;
  color: #111;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 0.98;
  font-weight: 700;
}

.fale-contato-info p {
  max-width: 640px;
  margin: 0 0 54px;
  color: #333;
  font-size: clamp(21px, 1.45vw, 28px);
  line-height: 1.22;
}

.fale-contato-info strong {
  color: inherit;
  font-weight: 800;
}

.fale-contato-lista {
  display: grid;
  gap: 22px;
}

.fale-contato-lista a,
.fale-contato-lista div {
  display: block;
  color: inherit;
  text-decoration: none;
  border-left: 5px solid #28a6d8;
  padding: 2px 0 2px 22px;
}

.fale-contato-lista span {
  display: block;
  margin-bottom: 6px;
  color: #1f9fcc;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fale-contato-lista strong {
  display: block;
  color: #202020;
  font-size: clamp(19px, 1.25vw, 24px);
  line-height: 1.22;
  font-weight: 500;
}

.fale-form {
  background: #ffffff;
  padding: 54px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  border-radius: 0 0 18px 0;
}

.fale-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fale-form-row {
  margin-bottom: 24px;
}

.fale-form-row label {
  display: block;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fale-form-row input,
.fale-form-row select,
.fale-form-row textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  background: #f7f7f7;
  color: #1f1f1f;
  font-family: inherit;
  font-size: 19px;
  line-height: 1.2;
  padding: 17px 18px;
  outline: none;
  border-radius: 0;
}

.fale-form-row textarea {
  resize: vertical;
  min-height: 150px;
}

.fale-form-row input:focus,
.fale-form-row select:focus,
.fale-form-row textarea:focus {
  border-color: #28a6d8;
  background: #ffffff;
}

.fale-submit {
  width: 100%;
  border: 0;
  background: #1f9fcc;
  color: #ffffff;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 22px 24px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .fale-contato-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .fale-contato-info p {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .fale-contato-section {
    padding: 64px 0 74px;
  }

  .fale-contato-inner {
    width: min(100% - 40px, 680px);
  }

  .fale-form {
    padding: 34px 24px;
  }

  .fale-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fale-contato-info h2 {
    font-size: 42px;
  }

  .fale-contato-info p {
    font-size: 20px;
  }
}
/* BUSCA DO SITE */

.site-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.site-search-modal.is-open {
  display: block;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 13, 0.78);
  backdrop-filter: blur(4px);
}

.site-search-box {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 110px auto 0;
  background: #ffffff;
  padding: 44px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.site-search-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

.site-search-label {
  display: block;
  margin-bottom: 18px;
  color: #1f9fcc;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.site-search-input {
  width: 100%;
  border: 1px solid #d7d7d7;
  background: #f7f7f7;
  color: #111;
  font-family: inherit;
  font-size: 24px;
  padding: 20px 22px;
  outline: none;
}

.site-search-input:focus {
  border-color: #28a6d8;
  background: #ffffff;
}

.site-search-results {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.site-search-result {
  display: block;
  padding: 18px 20px;
  background: #f4f4f4;
  color: #111;
  text-decoration: none;
  border-left: 5px solid #28a6d8;
}

.site-search-result strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.15;
}

.site-search-result span {
  display: block;
  color: #555;
  font-size: 16px;
  line-height: 1.35;
}

.site-search-empty {
  margin: 0;
  color: #555;
  font-size: 18px;
  line-height: 1.35;
}

body.search-modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .site-search-box {
    margin-top: 80px;
    padding: 34px 24px;
  }

  .site-search-input {
    font-size: 20px;
    padding: 17px 18px;
  }
}

/* AJUSTE HOME - HERO COMPACTA, FILTRO AZUL E ROSCAS */
#homeHeroSlider {
  height: clamp(500px, 64vh, 650px);
  min-height: clamp(500px, 64vh, 650px);
  background: #061f2f;
}

#homeHeroSlider .hero-slide {
  pointer-events: none;
}

#homeHeroSlider .hero-slide.active {
  pointer-events: auto;
}

#homeHeroSlider .home-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(0.82) contrast(0.9) brightness(0.86);
}


#homeHeroSlider .hero-slide[data-home-slide="2"] .home-hero-media {
  object-position: center 38%;
}

#homeHeroSlider .hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 35, 52, 0.82) 0%, rgba(4, 35, 52, 0.6) 47%, rgba(4, 35, 52, 0.76) 100%),
    linear-gradient(180deg, rgba(0, 105, 145, 0.24) 0%, rgba(0, 9, 18, 0.55) 100%);
}

#homeHeroSlider .hero-content {
  min-height: clamp(500px, 64vh, 650px);
  z-index: 3;
  pointer-events: none;
}

#homeHeroSlider .hero-arrow,
#homeHeroSlider .slider-dots,
#homeHeroSlider .dot {
  z-index: 30;
  pointer-events: auto;
}

#homeHeroSlider .slider-dots {
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}

#homeHeroSlider .dots-shape {
  z-index: 2;
  opacity: 0.92;
  pointer-events: none;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(0, 169, 240, 0.96) 0 3px, transparent 4px);
  background-size: 20px 20px;
  background-position: center;
  filter: drop-shadow(0 0 16px rgba(0, 169, 240, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 42%, #000 43% 100%);
  mask-image: radial-gradient(ellipse at center, transparent 0 42%, #000 43% 100%);
}

#homeHeroSlider .dots-shape::after {
  display: none;
}

#homeHeroSlider .dots-left {
  left: -185px;
  bottom: -250px;
  top: auto;
  width: 660px;
  height: 660px;
  clip-path: none;
}

#homeHeroSlider .dots-left.tall {
  left: -175px;
  top: -96px;
  bottom: auto;
  width: 520px;
  height: 760px;
  clip-path: none;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 41%, #000 42% 100%);
  mask-image: radial-gradient(ellipse at center, transparent 0 41%, #000 42% 100%);
}

#homeHeroSlider .dots-right {
  right: -240px;
  top: -92px;
  width: 680px;
  height: 760px;
  clip-path: none;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 43%, #000 44% 100%);
  mask-image: radial-gradient(ellipse at center, transparent 0 43%, #000 44% 100%);
}

#homeHeroSlider .mini-dots-right,
#homeHeroSlider .mini-dots-left {
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
}

#homeHeroSlider .mini-dots-right {
  right: 44px;
  bottom: 46px;
}

#homeHeroSlider .mini-dots-left {
  left: 22px;
  bottom: 46px;
}

.home-about-image,
.product-image img,
.product-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  #homeHeroSlider,
  #homeHeroSlider .hero-content {
    height: 540px;
    min-height: 540px;
  }

  #homeHeroSlider .dots-left {
    left: -230px;
    bottom: -245px;
    width: 620px;
    height: 620px;
  }

  #homeHeroSlider .dots-left.tall {
    left: -230px;
    top: -86px;
    width: 470px;
    height: 650px;
  }

  #homeHeroSlider .dots-right {
    right: -295px;
    width: 590px;
    height: 650px;
  }
}

/* =========================================================
   AJUSTE GLOBAL DE ESCALA - PAGINAS INTERNAS E PRODUTOS
   ========================================================= */

@media (min-width: 901px) {
  .header-inner {
    min-height: 64px;
  }

  .logo img {
    width: 108px;
  }

  .main-nav {
    gap: 36px;
  }

  .page-hero-inner {
    min-height: 360px;
    padding: 104px 70px 48px;
  }

  .produto-hero-title {
    font-size: 46px;
    letter-spacing: 2px;
  }

  .produto-hero-kicker {
    font-size: 14px;
  }

  .si-bloco-inner,
  .si-bloco-inner-azul {
    min-height: 590px;
  }

  .si-bloco-texto,
  .si-bloco-texto-azul {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .si-bloco-texto p,
  .anjo-clean-intro-text p,
  .anjo-clean-study-text p,
  .anjo-clean-tech-text p,
  .cerca-intro-text p,
  .cerca-funciona-text p,
  .sitt-intro-text p,
  .sitt-funciona-text p,
  .controlador-intro-text p {
    font-size: clamp(17px, 1.12vw, 22px);
    line-height: 1.28;
  }

  .si-bloco-titulo span,
  .anjo-clean-tech-text h2,
  .cerca-funciona-text h2,
  .sitt-funciona-text h2 {
    font-size: clamp(38px, 4vw, 64px);
    line-height: 0.98;
  }

  .anjo-clean-intro,
  .anjo-clean-tech,
  .cerca-intro,
  .cerca-funciona,
  .sitt-intro,
  .sitt-funciona,
  .controlador-intro {
    min-height: 520px;
  }

  .anjo-clean-image-slot,
  .anjo-clean-tech-image,
  .cerca-intro-image,
  .cerca-funciona-image,
  .sitt-intro-image,
  .sitt-funciona-image,
  .controlador-intro-image {
    min-height: 520px;
  }

  .anjo-clean-intro-text,
  .anjo-clean-tech-text,
  .cerca-intro-text,
  .cerca-funciona-text,
  .sitt-intro-text,
  .sitt-funciona-text,
  .controlador-intro-text {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .anjo-clean-tech-kicker,
  .cerca-funciona-kicker,
  .sitt-funciona-kicker {
    font-size: clamp(20px, 1.65vw, 28px);
  }

  .sitt-funciona-text h3 {
    margin-top: 38px;
    font-size: clamp(22px, 1.7vw, 29px);
  }

  .si-vantagens,
  .anjo-clean-benefits,
  .cerca-vantagens,
  .sitt-beneficios,
  .controlador-beneficios-inner {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .si-vantagens-titulo,
  .anjo-clean-benefits h2,
  .cerca-vantagens h2,
  .sitt-beneficios h2,
  .controlador-beneficios h2 {
    font-size: clamp(28px, 2.55vw, 44px);
    letter-spacing: 6px;
    margin-bottom: 42px;
  }

  .si-vantagem-icone,
  .anjo-clean-icon-slot,
  .cerca-icon-slot,
  .sitt-icon-slot,
  .controlador-icon-slot {
    width: 120px;
    height: 120px;
  }

  .si-vantagem-texto,
  .anjo-clean-benefits-grid p,
  .cerca-vantagens-grid p,
  .sitt-beneficios-grid p,
  .controlador-benefit-card p {
    font-size: clamp(18px, 1.35vw, 24px);
    line-height: 1.24;
  }

  .controlador-benefit-card h3 {
    font-size: clamp(21px, 1.7vw, 28px);
  }

  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article {
    min-height: 230px;
  }
}

/* Refinamento de escala da pagina A SDM para aproximar do Figma */
@media (min-width: 901px) {
  .sdm-about-inner {
    min-height: 500px;
  }

  .sdm-about-text {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .sdm-about-text p {
    font-size: clamp(17px, 1.08vw, 21px);
    line-height: 1.3;
    margin-bottom: 22px;
  }

  .sdm-founder-grid {
    min-height: 500px;
  }

  .founder-text {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-left: 70px;
  }

  .founder-text h2 {
    font-size: clamp(42px, 4vw, 66px);
    line-height: 0.98;
  }

  .founder-role {
    font-size: clamp(20px, 1.45vw, 26px);
    margin-bottom: 28px;
  }

  .founder-text p {
    max-width: 760px;
    font-size: clamp(17px, 1.12vw, 22px);
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .timeline {
    padding-top: 58px;
    padding-bottom: 88px;
  }

  .timeline-title {
    font-size: clamp(32px, 2.7vw, 46px);
    margin-bottom: 34px;
  }

  .timeline-years {
    gap: 56px;
    font-size: 16px;
  }

  .timeline-years-line {
    margin-bottom: 28px;
  }

  .timeline-slides {
    min-height: 360px;
  }

  .timeline-year-big {
    font-size: clamp(32px, 2.8vw, 46px);
    margin-bottom: 18px;
  }

  .timeline-text p {
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 1.34;
  }

  .timeline-image img {
    max-width: 300px;
    max-height: 310px;
  }
}

/* Refinamentos visuais: SITT e primeiras cidades */
.sitt-beneficios {
  background: #fafafa;
}

.sitt-icon-slot,
.sitt-icon-slot img {
  background: #fafafa;
}

@media (min-width: 901px) {
  .cities {
    padding-top: 70px;
    padding-bottom: 68px;
    background:
      radial-gradient(circle at 18% 0%, rgba(40, 166, 216, 0.12), transparent 28%),
      linear-gradient(180deg, #05101a 0%, #06131e 100%);
  }

  .cities-inner {
    max-width: 1180px;
  }

  .cities-header {
    margin-bottom: 34px;
  }

  .cities-track-wrapper {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 22px;
    margin-top: 16px;
    margin-bottom: 38px;
  }

  .cities-track {
    gap: 26px;
    padding: 20px 2px 20px;
    scroll-padding-left: 0;
  }

  .city-card {
    flex-basis: clamp(318px, 27vw, 352px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0 0 20px 0;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  }

  .city-card-image img {
    height: 218px;
    filter: saturate(0.95) contrast(1.04);
  }

  .city-card-foot {
    height: 108px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #2ba9d6 0%, #1496c6 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cities-separator {
    flex-basis: 26px;
    opacity: 0.45;
  }

  .cities-arrow {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
  }

  .cities-arrow:hover {
    background: rgba(40, 166, 216, 0.18);
    border-color: rgba(40, 166, 216, 0.75);
  }

  .cities-track::-webkit-scrollbar {
    height: 5px;
  }

  .cities-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
  }

  .cities-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #28a6d8, rgba(40, 166, 216, 0.25));
  }

  .cities-note {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE PATCH
   Mantem o desktop original e organiza header, home e rodape.
   ========================================================= */

.mobile-menu-toggle {
  display: none;
}

body.mobile-menu-open {
  overflow: hidden;
}

.timeline-mobile-dots,
.cities-mobile-dots {
  display: none;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: auto 44px 40px;
    gap: 14px;
  }

  .logo img {
    width: 104px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    justify-self: end;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    transition: background var(--transition), border-color var(--transition);
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .mobile-menu-toggle:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.45);
  }

  .mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: linear-gradient(180deg, #116f98 0%, #0a3349 100%);
    box-shadow: 0 18px 40px rgba(0,0,0,0.32);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a,
  .nav-link-dropdown {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    font-size: 14px;
    line-height: 1.25;
    letter-spacing: 1.6px;
  }

  .main-nav a.active::after,
  .nav-link-dropdown.active::after,
  .nav-item-with-dropdown.open .nav-link-dropdown::after {
    display: none;
  }

  .nav-item-with-dropdown {
    width: 100%;
  }

  .nav-link-dropdown::after {
    content: "+";
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
  }

  .nav-item-with-dropdown.open .nav-link-dropdown::after {
    content: "-";
    display: block;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    transform: none;
    display: none;
    padding: 6px 0 10px;
    box-shadow: none;
    background: rgba(255,255,255,0.08);
  }

  .nav-item-with-dropdown.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .nav-dropdown a:hover {
    background: rgba(255,255,255,0.14);
  }

  .search-button {
    justify-self: end;
  }

  #homeHeroSlider,
  #homeHeroSlider .hero-content,
  .hero-slider,
  .hero-content {
    height: auto;
    min-height: 560px;
  }

  .hero-content-left,
  .hero-content-center,
  .hero-content.wider {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-title {
    max-width: 760px;
    padding: 0 42px;
  }

  .hero-line {
    font-size: clamp(2.15rem, 7.8vw, 4rem);
    line-height: 1.02;
  }

  .slider-arrow {
    width: 42px;
    height: 56px;
    font-size: 44px;
  }

  .hero-arrow-left {
    left: 8px;
  }

  .hero-arrow-right {
    right: 8px;
  }

  .about-sdm,
  .products-showcase {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-sdm-inner,
  .commitment-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-left: 0;
    padding-right: 0;
  }

  .about-sdm-inner {
    max-width: 760px;
  }

  .about-sdm-text h2 {
    font-size: clamp(46px, 12vw, 72px);
  }

  .about-subtitle {
    font-size: clamp(20px, 4.8vw, 24px);
  }

  .about-sdm-text p,
  .about-list li,
  .product-text p {
    font-size: 18px;
    line-height: 1.45;
  }

  .about-sdm-image {
    margin-top: 0;
    justify-content: flex-start;
  }

  .about-sdm-image img {
    max-width: 420px;
    aspect-ratio: 4 / 3;
  }

  .products-tabs {
    justify-content: flex-start;
    gap: 28px;
    padding: 0 4px;
  }

  .products-slider,
  .products-track {
    min-height: 0;
  }

  .product-slide {
    position: relative;
    display: none;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 50px 38px;
    transform: none;
  }

  .product-slide.active {
    display: grid;
  }

  .product-text h2 {
    font-size: clamp(34px, 8vw, 52px);
  }

  .product-button,
  .about-button,
  .form-submit {
    width: 100%;
    max-width: 440px;
    min-height: 52px;
    white-space: normal;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 1.25;
  }

  .product-image {
    padding-top: 0;
    justify-content: flex-start;
  }

  .product-image img {
    max-width: 440px;
    aspect-ratio: 4 / 3;
  }

  .commitment-inner {
    padding: 58px 20px;
  }

  .commitment::before {
    background: linear-gradient(180deg, rgba(5,8,14,0.92) 0%, rgba(5,8,14,0.70) 100%);
  }

  .footer-middle,
  .footer-home-columns {
    grid-template-columns: 1fr 1fr;
    padding: 42px 28px;
    gap: 30px;
  }

  .footer-logo,
  .footer-home-brand {
    justify-content: flex-start;
    min-height: auto;
  }

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

  .page-hero-inner {
    min-height: 320px;
    padding: 96px 24px 44px;
  }

  .sdm-about-inner,
  .sdm-founder-grid,
  .anjo-clean-intro,
  .anjo-clean-tech,
  .cerca-intro,
  .cerca-funciona,
  .sitt-intro,
  .sitt-funciona,
  .controlador-intro,
  .si-bloco-inner,
  .si-bloco-inner-azul {
    grid-template-columns: 1fr;
  }

  .sdm-about-text,
  .founder-text,
  .anjo-clean-intro-text,
  .anjo-clean-tech-text,
  .cerca-intro-text,
  .cerca-funciona-text,
  .sitt-intro-text,
  .sitt-funciona-text,
  .controlador-intro-text,
  .si-bloco-texto,
  .si-bloco-texto-azul {
    padding: 44px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    grid-template-columns: auto 42px 36px;
    min-height: 62px;
  }

  .logo img {
    width: 92px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 62px;
    padding: 14px 18px 24px;
  }

  .search-button {
    width: 34px;
    height: 34px;
  }

  #homeHeroSlider,
  #homeHeroSlider .hero-content,
  .hero-slider,
  .hero-content {
    min-height: 520px;
  }

  #homeHeroSlider .home-hero-media {
    object-position: center center;
  }

  #homeHeroSlider .hero-slide[data-home-slide="0"] .home-hero-media {
    object-position: 58% center;
  }

  #homeHeroSlider .hero-slide[data-home-slide="1"] .home-hero-media {
    object-position: 48% center;
  }

  #homeHeroSlider .hero-slide[data-home-slide="2"] .home-hero-media {
    object-position: 15% center;  
  }

  #homeHeroSlider .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4,35,52,0.54) 0%, rgba(4,35,52,0.72) 42%, rgba(0,7,12,0.88) 100%),
      linear-gradient(90deg, rgba(4,35,52,0.74), rgba(4,35,52,0.24));
  }

  .hero-title {
    width: 100%;
    padding: 0 30px;
  }

  .hero-line {
    font-size: clamp(1.9rem, 10vw, 3rem);
    margin-bottom: 5px;
  }

  .hero-line-highlight,
  .inline-highlight {
    padding: 2px 7px 3px;
  }

  .slider-arrow {
    width: 30px;
    height: 46px;
    font-size: 32px;
  }

  .dot {
    width: 13px;
    height: 13px;
  }

  #homeHeroSlider .dots-left,
  #homeHeroSlider .dots-left.tall,
  #homeHeroSlider .dots-right,
  #homeHeroSlider .mini-dots-right,
  #homeHeroSlider .mini-dots-left {
    opacity: 0.32;
  }

  .about-sdm {
    padding: 38px 18px 46px;
  }

  .about-line {
    margin-bottom: 24px;
  }

  .about-sdm-text p,
  .about-list li,
  .product-text p,
  .commitment-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-button,
  .product-button {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  .products-showcase {
    padding: 0 14px 24px;
  }

  .products-tabs {
    gap: 22px;
    padding-bottom: 2px;
  }

  .product-tab {
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .product-slide {
    padding: 30px 34px 34px;
  }

  .product-arrow {
    width: 28px;
    height: 48px;
    font-size: 40px;
  }

  .product-arrow-left {
    left: 0;
  }

  .product-arrow-right {
    right: 0;
  }

  .product-image img,
  .about-sdm-image img {
    max-width: 100%;
  }

  .commitment-inner {
    padding: 48px 18px;
    gap: 26px;
  }

  .commitment-image img {
    aspect-ratio: 1.15 / 1;
  }

  .footer-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 28px 24px;
  }

  .footer-middle,
  .footer-home-columns {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 28px;
    text-align: left;
  }

  .footer-home-col h2 {
    margin-bottom: 12px;
  }

  .footer-home-col a,
  .footer-home-col p {
    font-size: 0.94rem;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .footer-bottom p {
    line-height: 1.55;
  }

  .page-hero-inner {
    min-height: 270px;
    padding: 82px 18px 34px;
  }

  .page-hero-title-sdm,
  .produto-hero-title {
    font-size: clamp(30px, 9vw, 42px);
    letter-spacing: 2px;
  }

  .page-hero-heading-sdm {
    gap: 14px;
  }

  .sdm-about-text,
  .founder-text,
  .anjo-clean-intro-text,
  .anjo-clean-tech-text,
  .cerca-intro-text,
  .cerca-funciona-text,
  .sitt-intro-text,
  .sitt-funciona-text,
  .controlador-intro-text,
  .si-bloco-texto,
  .si-bloco-texto-azul {
    padding: 36px 20px;
  }

  .site-search-box {
    width: min(100% - 24px, 620px);
    padding: 28px 20px 24px;
  }
}

/* =========================================================
   AJUSTES PONTUAIS MOBILE - JULHO/2026
   ========================================================= */

@media (max-width: 900px) {
  .about-sdm-image picture {
    display: block;
    width: 100%;
    max-width: 520px;
  }

  .about-sdm-image picture img {
    width: 100%;
  }

  .founder-text-wrapper {
    order: 1;
  }

  .founder-photo {
    order: 2;
  }

  .timeline-arrow,
  .cities-arrow,
  .si-vantagens-seta,
  .controlador-arrow {
    display: none;
  }

  .timeline-mobile-dots,
  .cities-mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
  }

  .timeline-mobile-dots span,
  .cities-mobile-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(40, 166, 216, 0.36);
    transition: width 0.25s ease, background 0.25s ease;
  }

  .timeline-mobile-dots span.active,
  .cities-mobile-dots span.active {
    width: 24px;
    background: #28a6d8;
  }

  .timeline-content-wrapper {
    display: block;
  }

  .timeline-slides {
    touch-action: pan-y;
  }

  .cities-track-wrapper {
    display: block;
  }

  .cities-track {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .city-card {
    scroll-snap-align: center;
  }

  .si-bloco-branco .si-bloco-texto,
  .cerca-intro-text,
  .sitt-intro-text,
  .controlador-intro-text {
    order: 1;
  }

  .si-bloco-branco .si-bloco-imagem,
  .cerca-intro-image,
  .sitt-intro-image,
  .controlador-intro-image {
    order: 2;
  }

  .si-bloco-branco .si-bloco-imagem {
    order: 2;
  }

  .si-contran-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }

  .si-contran-selo {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2;
  }

  .si-contran-selo img {
    width: min(260px, 72vw);
    margin: 0 auto;
  }

  .si-vantagens-slider {
    display: block;
  }

  .si-vantagens-viewport,
  .anjo-clean-benefits-grid,
  .cerca-vantagens-grid,
  .sitt-beneficios-grid,
  .controlador-carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .si-vantagens-viewport::-webkit-scrollbar,
  .anjo-clean-benefits-grid::-webkit-scrollbar,
  .cerca-vantagens-grid::-webkit-scrollbar,
  .sitt-beneficios-grid::-webkit-scrollbar,
  .controlador-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .si-vantagens-track {
    gap: 18px;
    padding: 0 12px 4px;
  }

  .si-vantagem-card {
    flex: 0 0 82%;
    min-height: 250px;
    padding: 0 18px;
    opacity: 1;
    scroll-snap-align: center;
  }

  .anjo-clean-benefits-grid,
  .cerca-vantagens-grid,
  .sitt-beneficios-grid {
    width: 100%;
    display: flex;
    gap: 18px;
    padding: 0 22px 8px;
    margin: 0;
  }

  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article {
    flex: 0 0 78%;
    min-height: 250px;
    scroll-snap-align: center;
  }

  .controlador-carousel {
    display: block;
  }

  .controlador-carousel-track {
    gap: 18px;
    padding: 0 22px 8px;
  }

  .controlador-benefit-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .anjo-clean-benefits::after,
  .cerca-vantagens::after,
  .sitt-beneficios::after,
  .controlador-beneficios-inner::after {
    content: "";
    display: block;
    width: 54px;
    height: 8px;
    margin: 22px auto 0;
    background:
      radial-gradient(circle, #28a6d8 0 4px, transparent 4px) 0 0 / 18px 8px repeat-x;
    opacity: 0.9;
  }

  .anjo-clean-tech-image img,
  .anjo-clean-image-slot img {
    object-position: 38% center;
  }

  .anjo-clean-tech-image,
  .anjo-clean-image-slot {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .about-sdm-image picture,
  .about-sdm-image picture img {
    max-width: 100%;
  }

  .about-sdm-image picture img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    padding: 18px;
    background: #d8e2ed;
  }

  .si-bloco-imagem img,
  .cerca-intro-image img,
  .sitt-intro-image img,
  .controlador-intro-image img,
  .anjo-clean-tech-image img,
  .anjo-clean-image-slot img {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .si-bloco-branco .si-bloco-imagem img,
  .cerca-intro-image img,
  .sitt-intro-image img,
  .controlador-intro-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .anjo-clean-tech-image img,
  .anjo-clean-image-slot img {
    width: 100%;
    max-width: 100%;
    transform: none;
    object-fit: cover;
  }

  .si-vantagem-card,
  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article,
  .controlador-benefit-card {
    flex-basis: 84%;
  }

  .anjo-clean-benefits h2,
  .cerca-vantagens h2,
  .sitt-beneficios h2,
  .controlador-beneficios h2,
  .si-vantagens-titulo {
    letter-spacing: 2px;
  }
}

/* =========================================================
   PADRAO FINAL DE SLIDES MOBILE
   ========================================================= */

.mobile-swipe-dots {
  display: none;
}

@media (max-width: 900px) {
  .product-arrow {
    display: none;
  }

  .products-slider,
  .products-track {
    min-height: 0;
  }

  .product-slide {
    padding-left: 34px;
    padding-right: 34px;
  }

  .product-image {
    justify-content: center;
  }

  .product-slide:first-child .product-image img {
    object-position: center 62%;
  }

  .products-dots,
  .mobile-swipe-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 18px 0 0;
  }

  .products-dot,
  .mobile-swipe-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(40, 166, 216, 0.36);
    transition: width 0.25s ease, background 0.25s ease;
  }

  .products-dot.active,
  .mobile-swipe-dots button.active {
    width: 24px;
    background: #28a6d8;
    transform: none;
  }

  .si-vantagens,
  .anjo-clean-benefits,
  .cerca-vantagens,
  .sitt-beneficios,
  .controlador-beneficios {
    overflow: hidden;
  }

  .si-vantagens-inner,
  .controlador-beneficios-inner {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
  }

  .si-vantagens-track,
  .anjo-clean-benefits-grid,
  .cerca-vantagens-grid,
  .sitt-beneficios-grid,
  .controlador-carousel-track {
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .si-vantagem-card,
  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article,
  .controlador-benefit-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .si-vantagem-card {
    justify-content: center;
    min-height: 310px;
  }

  .si-vantagem-card:not(.si-vantagem-card-ativo) {
    opacity: 1;
  }

  .si-vantagens-progress,
  .anjo-clean-benefits::after,
  .cerca-vantagens::after,
  .sitt-beneficios::after,
  .controlador-beneficios-inner::after {
    display: none;
  }

  .anjo-clean-benefits-grid,
  .cerca-vantagens-grid,
  .sitt-beneficios-grid {
    width: 100%;
    margin: 0;
  }

  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article {
    justify-content: center;
    padding-left: 22px;
    padding-right: 22px;
  }

  .controlador-carousel-track {
    align-items: stretch;
  }

  .controlador-benefit-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .controlador-benefit-card p {
    max-width: 100%;
  }

  .anjo-clean-image-slot,
  .anjo-clean-tech-image {
    min-height: 0;
    background: transparent;
  }

  .anjo-clean-image-slot img,
  .anjo-clean-tech-image img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 640px) {
  .product-slide {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-image img {
    max-width: 100%;
    aspect-ratio: 1 / 0.76;
  }

  .product-slide:first-child .product-image img {
    object-position: center 66%;
  }

  .si-vantagens-inner,
  .controlador-beneficios-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .si-vantagem-card,
  .anjo-clean-benefits-grid article,
  .cerca-vantagens-grid article,
  .sitt-beneficios-grid article,
  .controlador-benefit-card {
    flex-basis: 100%;
  }

  .anjo-clean-image-slot img,
  .anjo-clean-tech-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
   MICROAJUSTES MOBILE FINAIS
   ========================================================= */

@media (max-width: 900px) {
  #homeHeroSlider .hero-arrow,
  .hero-arrow {
    display: none;
  }

  .product-image picture {
    display: block;
    width: 100%;
    max-width: 440px;
  }

  .product-image picture img {
    width: 100%;
    display: block;
  }

  .anjo-clean-benefits {
    padding-bottom: 36px;
  }

  .anjo-clean-benefits-grid article::after {
    display: none;
  }

  .anjo-clean-benefits .mobile-swipe-dots {
    padding-top: 24px;
  }

  .controlador-intro-image {
    min-height: 0;
    background: transparent;
  }

  .controlador-intro-image img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
}

@media (max-width: 640px) {
  .product-image picture {
    max-width: 100%;
  }

  .product-image picture img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    padding: 0;
    background: #dddddd;
  }

  .product-slide:first-child .product-image picture img {
    content: url("../images/home/mobile.png");
  }

  .controlador-intro-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
   POLIMENTO FINAL: VIDEOS, MAPA E TIPOGRAFIA
   ========================================================= */

.page-hero-produto-semaforo:not(.page-hero-produto-anjo-clean):not(.page-hero-produto-cerca):not(.page-hero-produto-controlador) .page-hero-video {
  object-fit: cover;
  object-position: center 24%;
  background: #061f2f;
}

.cidades-lista {
  display: none;
}

.commitment-text p,
.sdm-about-text p,
.founder-text p,
.timeline-text p,
.si-bloco-texto p,
.si-bloco-texto-azul p,
.anjo-clean-intro-text p,
.anjo-clean-study-text p,
.anjo-clean-tech-text p,
.cerca-intro-text p,
.cerca-funciona-text p,
.sitt-intro-text p,
.sitt-funciona-text p,
.controlador-intro-text p,
.si-contran-text p,
.cidades-presenca-text p {
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.48;
}

.product-text h2,
.about-sdm-text h2,
.si-bloco-titulo span,
.anjo-clean-tech-text h2,
.cerca-funciona-text h2,
.sitt-funciona-text h2 {
  line-height: 1;
}

.produto-hero-title,
.page-hero-title-sdm {
  font-size: clamp(34px, 4vw, 50px);
}

.cidades-presenca-inner {
  min-height: 760px;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
}

.cidades-presenca-text {
  max-width: 560px;
}

@media (max-width: 900px) {
  .page-hero-produto-semaforo:not(.page-hero-produto-anjo-clean):not(.page-hero-produto-cerca):not(.page-hero-produto-controlador) .page-hero-video {
    object-fit: cover;
    object-position: center 22%;
  }

  .cerca-intro-image,
  .sitt-intro-image {
    min-height: 0;
    height: auto;
    background: transparent;
  }

  .cerca-intro-image img,
  .sitt-intro-image img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .cidades-presenca-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 34px;
  }

  .cidades-presenca-text {
    max-width: none;
  }

  .about-sdm-text p,
  .product-text p,
  .commitment-text p,
  .sdm-about-text p,
  .founder-text p,
  .timeline-text p,
  .si-bloco-texto p,
  .si-bloco-texto-azul p,
  .anjo-clean-intro-text p,
  .anjo-clean-study-text p,
  .anjo-clean-tech-text p,
  .cerca-intro-text p,
  .cerca-funciona-text p,
  .sitt-intro-text p,
  .sitt-funciona-text p,
  .controlador-intro-text p,
  .si-contran-text p,
  .cidades-presenca-text p {
    font-size: 16px;
    line-height: 1.48;
  }
}
