@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("/assets/fonts/lato-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("/assets/fonts/pt-sans-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PT Sans";
  src: url("/assets/fonts/pt-sans-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #151a4d;
  --navy-deep: #10143c;
  --blue: #3d4aa0;
  --blue-bright: #5067dc;
  --sky: #78c7ef;
  --green: #45ca56;
  --ink: #1c263a;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --soft-blue: #eef3fb;
  --line: #e5eaf1;
  --shadow-sm: 0 10px 30px rgba(22, 34, 67, 0.07);
  --shadow-md: 0 22px 55px rgba(22, 34, 67, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1180px;
  --font-body: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-title: "PT Sans", "Lato", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.72 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: clip;
}

h1,
h2,
h3,
h4,
h5,
.nav-wrap nav,
.menu-toggle,
.button {
  font-family: var(--font-title);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 font,
h3 font {
  color: inherit !important;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(69, 202, 86, 0.58);
  outline-offset: 3px;
}

/* Header clean, centralizado e persistente */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  color: #fff;
  background: rgba(17, 21, 63, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 34px rgba(8, 11, 39, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 21, 63, 0.88);
  box-shadow: 0 12px 32px rgba(8, 11, 39, 0.24);
}

.nav-wrap {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 2rem;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 58px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 166px;
  height: auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand img {
  width: 146px;
}

.nav-wrap nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2vw, 2rem);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-wrap nav a {
  position: relative;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-wrap nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sky), var(--green));
  transition: left 180ms ease, right 180ms ease;
}

.nav-wrap nav a:hover,
.nav-wrap nav a:focus-visible,
.nav-wrap nav a[aria-current="page"] {
  color: #fff;
}

.nav-wrap nav a:hover::after,
.nav-wrap nav a:focus-visible::after,
.nav-wrap nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.restricted,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.3rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  box-shadow: 0 12px 28px rgba(61, 74, 160, 0.24);
  text-decoration: none;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.restricted {
  min-height: 38px;
  padding: 0.55rem 0.88rem;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.13);
  font-size: 0.82rem;
  backdrop-filter: blur(10px);
}

.restricted svg {
  width: 16px;
  height: 16px;
  margin-right: 0.42rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header.is-scrolled .restricted {
  min-height: 34px;
  padding-block: 0.45rem;
}

.restricted::before,
.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.38) 48%, transparent 70%);
  translate: -125% 0;
  transition: translate 500ms ease;
}

.restricted:hover,
.restricted:focus-visible,
.button:hover,
.button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(61, 74, 160, 0.35), 0 0 0 4px rgba(120, 199, 239, 0.13);
}

.restricted:hover::before,
.restricted:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  translate: 125% 0;
}

.button.secondary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
}

.menu-toggle {
  display: none;
}

/* Carrossel */
.home-carousel {
  position: relative;
  z-index: 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.carousel-track {
  position: relative;
  /* Banners 16:9 com texto próprio precisam de área vertical suficiente para não cortar o rodapé da arte. */
  height: clamp(560px, 43vw, 740px);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
  isolation: isolate;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--slide-image);
  /* O ponto focal mais alto preserva o topo das imagens 16:9 no banner panorâmico. */
  background-position: center 30%;
  background-size: cover;
  transform: scale(1.015);
  transition: transform 5s ease;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 20, 60, 0.94) 0%, rgba(21, 26, 77, 0.68) 42%, rgba(21, 26, 77, 0.06) 78%);
}

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

.carousel-slide.is-active::before {
  transform: scale(1);
}

.carousel-slide.artwork-slide::after {
  background: transparent;
}

.carousel-copy {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 0;
  box-sizing: border-box;
}

.carousel-copy.vertical-top { justify-content: flex-start; padding-top: clamp(4.5rem, 10vw, 8rem); }
.carousel-copy.vertical-bottom { justify-content: flex-end; padding-bottom: clamp(4.5rem, 10vw, 8rem); }

.carousel-copy.align-center {
  align-items: center;
  text-align: center;
}

.carousel-copy.align-center h1 {
  margin-inline: auto;
}

.carousel-copy.align-right {
  align-items: flex-end;
  text-align: right;
}

.carousel-copy.align-right h1 {
  margin-left: auto;
}

.carousel-copy h1 {
  width: 100%;
  max-width: 100%;
  margin: 0.45rem 0 1.5rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, var(--carousel-title-size, 58px));
  line-height: 1.04;
  text-wrap: balance;
}

.carousel-kicker {
  width: 100%;
  margin: 0;
  color: #c9eafa;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--carousel-description-size, 0.79rem);
  font-weight: 700;
}

.carousel-copy > .align-left { align-self: flex-start; text-align: left; }
.carousel-copy > .align-center { align-self: center; text-align: center; }
.carousel-copy > .align-right { align-self: flex-end; text-align: right; }

/* Cada lado do carrossel recebe exatamente metade da área útil: esquerda→centro ou centro→direita. */
.carousel-copy > .align-left,
.carousel-copy > .align-right {
  width: calc(50vw - max(24px, (100vw - var(--max)) / 2));
  max-width: 50%;
}

.carousel-copy > .align-center {
  width: min(780px, 100%);
}

/* Links mantêm a largura do próprio rótulo, independentemente da coluna do texto. */
.carousel-copy > a.button.align-left,
.carousel-copy > a.button.align-center,
.carousel-copy > a.button.align-right {
  width: auto;
  max-width: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  translate: 0 -50%;
  color: #fff;
  background: rgba(15, 20, 60, 0.36);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  font: 400 2rem/1 var(--font-title);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(120, 199, 239, 0.19), 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: scale(1.06);
}

.carousel-arrow.previous {
  left: 22px;
}

.carousel-arrow.next {
  right: 22px;
}

.carousel-dots {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 99px;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot[aria-selected="true"] {
  width: 26px;
  background: #fff;
}

.group-section {
  padding: 1.15rem 0 1.35rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(115deg, var(--navy-deep), #20296b);
}

.group-section p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.68rem;
  font-weight: 700;
}

.group-section img {
  display: block;
  width: min(690px, 80%);
  max-height: 60px;
  object-fit: contain;
  margin: auto;
}

/* Componentes de conteúdo */
.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.74rem;
  font-weight: 700;
}

.intro,
.content-section,
.feature {
  padding: clamp(3.5rem, 6vw, 5.75rem) 0;
}

.feature {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2,
.page-hero h1,
.article h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  text-wrap: balance;
}

.cards,
.unit-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.split img {
  display: block;
  max-height: 380px;
  margin: auto;
}

.page-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: #fff;
  background: linear-gradient(118deg, var(--navy-deep), var(--blue));
}

.page-hero h1 {
  margin: 0.2rem 0;
  color: #fff;
}

.page-hero p {
  max-width: 680px;
}

.unit-card,
.post-card,
.contact-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.unit-card,
.post-card {
  padding: 1.15rem;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.unit-card:hover,
.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(80, 103, 220, 0.24);
  box-shadow: var(--shadow-md);
}

.post-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

.unit-card h2,
.post-card h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.28;
}

.post-card p:not(.post-date) {
  color: var(--muted);
}

.post-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.post-date {
  margin: 1rem 0 0.4rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.article h1 {
  margin-top: 0;
}

.article img {
  max-width: 100%;
  max-height: 520px;
  border-radius: var(--radius);
  object-fit: contain;
}

.contact-placeholder {
  padding: 1.5rem;
  background: var(--soft);
}

.status-note {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Seções recuperadas: mesma informação, nova diagramação */
.legacy-section {
  position: relative;
  padding: clamp(3.4rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  background: var(--legacy-bg, #fff);
}

.legacy-section:has(.legacy-column:empty):not(:has(.legacy-column:not(:empty))) {
  display: none;
}

.legacy-section-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.75rem);
}

.legacy-column {
  flex: 1 1 320px;
  min-width: 0;
}

.legacy-column:only-child {
  flex-basis: 100%;
}

.legacy-column:empty {
  display: none;
}

.legacy-section h2 {
  max-width: 780px;
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.14;
  text-wrap: balance;
}

.legacy-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.01rem;
}

.legacy-text p {
  margin: 0 0 0.9rem;
}

.legacy-text > :first-child {
  margin-top: 0;
}

.legacy-text > :last-child {
  margin-bottom: 0;
}

.legacy-image {
  margin: 0;
  text-align: center;
}

.legacy-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 440px;
  margin: auto;
  object-fit: contain;
}

.legacy-action {
  margin: 1.55rem 0 0;
}

.legacy-section[style*="#0F123E"],
.legacy-section[style*="#2D2F77"],
.legacy-section[style*="#191B5E"] {
  color: #fff;
  background: linear-gradient(120deg, var(--navy-deep), #202765);
}

.legacy-section[style*="#0F123E"] h2,
.legacy-section[style*="#2D2F77"] h2,
.legacy-section[style*="#191B5E"] h2 {
  color: #fff;
}

.legacy-section[style*="#0F123E"] .legacy-text,
.legacy-section[style*="#2D2F77"] .legacy-text,
.legacy-section[style*="#191B5E"] .legacy-text {
  color: rgba(255, 255, 255, 0.78);
}

.legacy-section[style*="#0F123E"] .button,
.legacy-section[style*="#2D2F77"] .button,
.legacy-section[style*="#191B5E"] .button {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.legacy-section[style*="#0F123E"] .button:hover,
.legacy-section[style*="#2D2F77"] .button:hover,
.legacy-section[style*="#191B5E"] .button:hover {
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.27), 0 0 0 4px rgba(255, 255, 255, 0.13);
}

.legacy-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.15rem;
  width: 100%;
}

.legacy-logo-carousel {
  position: relative;
  width: 100%;
  padding-inline: 42px;
}

.logo-carousel-viewport {
  overflow: hidden;
}

.legacy-logo-track {
  display: flex;
  gap: 1rem;
  transition: transform 450ms cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.logo-slide {
  flex: 0 0 calc((100% - 4rem) / 5);
  min-width: 0;
  min-height: 132px;
  display: grid;
  padding: 1.2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(22, 34, 67, 0.055);
}

.logo-slide img {
  display: block;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.logo-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  translate: 0 -50%;
  color: var(--navy);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font: 400 1.45rem/1 var(--font-title);
  cursor: pointer;
}

.logo-carousel-arrow.previous { left: 0; }
.logo-carousel-arrow.next { right: 0; }

.legacy-logo-grid a {
  display: grid;
  min-height: 136px;
  padding: 1.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(22, 34, 67, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.legacy-logo-grid a:hover,
.legacy-logo-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(80, 103, 220, 0.25);
  box-shadow: var(--shadow-sm);
}

.legacy-logo-grid img {
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}

.map-placeholder {
  min-height: 230px;
  display: grid;
  padding: 2rem;
  place-items: center;
  border: 1px solid #dbe3ee;
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 25% 20%, #cfe0f3, transparent 38%),
    linear-gradient(135deg, #e6edf5, #f8fafc);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.52), var(--shadow-sm);
  text-align: center;
  font-weight: 700;
}

.legacy-form {
  max-width: 720px;
}

.legacy-form fieldset {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legacy-form legend {
  padding: 0 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.legacy-form label {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
  color: #46536a;
  font-size: 0.88rem;
  font-weight: 700;
}

.legacy-form input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d9e0ea;
  border-radius: 10px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
}

.legacy-form button {
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 0;
  border-radius: 10px;
}

.legacy-post-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legacy-section .post-card h2 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.legacy-section .post-card .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.post-featured {
  width: 100%;
  max-height: none !important;
  aspect-ratio: 16 / 9;
}

.legacy-post-content {
  color: #46536a;
  font-size: 1.02rem;
}

.legacy-post-content h3 {
  margin: 2.4rem 0 0.7rem;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.25;
}

.legacy-post-content h4 {
  margin: 1.8rem 0 0.5rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.legacy-post-content h5 {
  margin: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.legacy-post-content ul,
.legacy-post-content ol {
  padding-left: 1.4rem;
}

.legacy-post-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 1.7rem auto;
  border-radius: 16px;
  object-fit: contain;
}

.legacy-post-content a {
  color: var(--blue);
  font-weight: 700;
}

.legacy-post-content blockquote {
  margin: 1.6rem 0;
  padding: 1.15rem 1.4rem;
  border-left: 4px solid var(--blue-bright);
  border-radius: 0 14px 14px 0;
  background: var(--soft-blue);
}

/* Cards de produtos */
.product-card {
  height: 260px;
  min-width: 250px;
  perspective: 1400px;
  perspective-origin: center center;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg) translateZ(0);
  transform-origin: center center;
  transition: transform 760ms cubic-bezier(0.22, 0.78, 0.22, 1);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

.product-card.is-flipped .card-inner {
  transform: rotateY(180deg) translateZ(0);
  -webkit-transform: rotateY(180deg) translateZ(0);
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateZ(1px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-front img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.card-back {
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  transform: rotateY(180deg) translateZ(1px);
  -webkit-transform: rotateY(180deg) translateZ(1px);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.45;
}

.card-face.align-left { align-items: flex-start; text-align: left; }
.card-face.align-center { align-items: center; text-align: center; }
.card-face.align-right { align-items: flex-end; text-align: right; }
.product-front-text,.product-back-text { max-width: 100%; overflow: hidden; }
.product-front-text p,.product-back-text p { margin: 0.18rem 0; }
.product-back-text { max-height: 116px; font-size: 0.8rem; line-height: 1.34; }

.card-back h3 {
  margin: 0 0 0.6rem;
  color: #fff;
}

.flip-control {
  margin-top: 0.8rem;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  background: transparent;
  font: 700 0.88rem/1 var(--font-body);
  cursor: pointer;
}

.card-back .flip-control {
  color: #fff;
}

.portfolio-cards-section {
  padding-top: 1.2rem;
}

.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.portfolio-cards-grid .product-card {
  height: 225px;
  min-width: 0;
}

.portfolio-cards-grid .card-front img {
  height: 82px;
}

.portfolio-download-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--soft-blue), #fff);
  box-shadow: var(--shadow-sm);
}

.portfolio-download-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
}

/* Home: composição das seções que antes ficavam superdimensionadas */
.legacy-section[data-legacy-id="12116ee"] {
  background: linear-gradient(145deg, #f7f9fc, #eef3f8);
}

.legacy-section[data-legacy-id="12116ee"] .legacy-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 6rem);
}

.legacy-section[data-legacy-id="12116ee"] .legacy-image {
  grid-column: 2;
  grid-row: 1 / 4;
  padding: clamp(1rem, 3vw, 2.2rem);
  border: 1px solid rgba(218, 225, 236, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-md);
}

.legacy-section[data-legacy-id="12116ee"] .legacy-image img {
  max-height: 430px;
}

.legacy-section[data-legacy-id="12116ee"] h2 {
  grid-column: 1;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
}

.legacy-section[data-legacy-id="12116ee"] h2 + h2 {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.legacy-section[data-legacy-id="12116ee"] .legacy-action {
  grid-column: 1;
}

.legacy-section[data-legacy-id="a706662"] .legacy-section-inner {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legacy-section[data-legacy-id="a706662"] h2 {
  position: relative;
  padding-top: 1rem;
}

.legacy-section[data-legacy-id="a706662"] h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-bright), var(--sky));
}

.legacy-section[data-legacy-id="9096267"],
.legacy-section[data-legacy-id="20d4f37"] {
  padding-bottom: 1.4rem;
  text-align: center;
  background: var(--soft);
}

.legacy-section[data-legacy-id="9096267"] h2,
.legacy-section[data-legacy-id="20d4f37"] h2 {
  margin-inline: auto;
}

.legacy-section[data-legacy-id="60be1cc7"],
.legacy-section[data-legacy-id="a745534"] {
  padding-top: 1rem;
  background: var(--soft);
}

.legacy-section[data-legacy-id="954caef"] .legacy-column:first-child .legacy-image img {
  max-width: 330px;
  max-height: 90px;
  margin: 0 0 2rem;
}

.legacy-section[data-legacy-id="954caef"] .legacy-column:last-child .legacy-image {
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--soft-blue);
}

.legacy-section[data-legacy-id="954caef"] .legacy-column:last-child img {
  max-height: 390px;
}

.legacy-section[data-legacy-id="085a064"] .legacy-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.legacy-section[data-legacy-id="085a064"] .legacy-image {
  grid-row: 1 / 3;
}

.legacy-section[data-legacy-id="085a064"] .legacy-image img {
  max-height: 360px;
}

.legacy-section[data-legacy-id="085a064"] h2 {
  align-self: end;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.legacy-section[data-legacy-id="085a064"] .legacy-text {
  align-self: start;
  font-size: 1.08rem;
}

.legacy-section[data-legacy-id="fa934b7"],
.legacy-section[data-legacy-id="2fd4665"],
.legacy-section[data-legacy-id="3d03818"],
.legacy-section[data-legacy-id="3e8a2e5"],
.legacy-section[data-legacy-id="a43b3b3"] {
  padding-bottom: 1.5rem;
  text-align: center;
}

.legacy-section[data-legacy-id="fa934b7"] h2,
.legacy-section[data-legacy-id="2fd4665"] h2,
.legacy-section[data-legacy-id="3d03818"] h2,
.legacy-section[data-legacy-id="3e8a2e5"] h2,
.legacy-section[data-legacy-id="a43b3b3"] h2 {
  margin-inline: auto;
}

.legacy-section[data-legacy-id="2ec5608"],
.legacy-section[data-legacy-id="adb4e6b"] {
  padding-block: 1rem;
}

.legacy-section[data-legacy-id="2ec5608"] .legacy-section-inner,
.legacy-section[data-legacy-id="adb4e6b"] .legacy-section-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.legacy-section[data-legacy-id="2ec5608"] .legacy-column,
.legacy-section[data-legacy-id="adb4e6b"] .legacy-column {
  display: grid;
  min-height: 150px;
  padding: 1.35rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(22, 34, 67, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.legacy-section[data-legacy-id="2ec5608"] .legacy-column:hover,
.legacy-section[data-legacy-id="adb4e6b"] .legacy-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.legacy-section[data-legacy-id="2ec5608"] img,
.legacy-section[data-legacy-id="adb4e6b"] img {
  max-height: 80px;
}

.legacy-section[data-legacy-id="adb4e6b"] {
  padding-bottom: clamp(3.4rem, 6vw, 5.5rem);
}

.legacy-section[data-legacy-id="7fa97d51"] {
  background: #f3f6fa;
}

.legacy-section[data-legacy-id="7fa97d51"] .legacy-section-inner {
  padding: clamp(2rem, 5vw, 3.7rem);
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(120deg, var(--navy-deep), #26327b);
  box-shadow: var(--shadow-md);
}

.legacy-section[data-legacy-id="7fa97d51"] h2,
.legacy-section[data-legacy-id="7fa97d51"] .legacy-text {
  color: #fff;
}

.legacy-section[data-legacy-id="7fa97d51"] .legacy-column:last-child {
  text-align: right;
}

/* Labtech e Central Sul */
.legacy-section[data-legacy-id="48727fad"],
.legacy-section[data-legacy-id="0bbbcfa"] {
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
  text-align: center;
}

.legacy-section[data-legacy-id="48727fad"] img,
.legacy-section[data-legacy-id="0bbbcfa"] img {
  max-width: 480px;
  max-height: 125px;
}

.legacy-section[data-legacy-id="48727fad"] .legacy-text,
.legacy-section[data-legacy-id="0bbbcfa"] .legacy-text {
  margin: 1rem auto 0;
  font-size: 1.02rem;
}

.legacy-section[data-legacy-id="400a7a6"] .legacy-column {
  text-align: center;
}

.legacy-section[data-legacy-id="400a7a6"] .legacy-image {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.legacy-section[data-legacy-id="400a7a6"] .legacy-image img {
  width: 100%;
  max-height: 410px;
  object-fit: cover;
}

.legacy-section[data-legacy-id="400a7a6"] h2,
.legacy-section[data-legacy-id="400a7a6"] .legacy-text,
.legacy-section[data-legacy-id="a6a4979"] h2,
.legacy-section[data-legacy-id="8f2f8f5"] h2 {
  margin-inline: auto;
}

.legacy-section[data-legacy-id="400a7a6"] .legacy-text {
  text-align: left;
}

.legacy-section[data-legacy-id="2dc2b7b"] .legacy-column:last-child,
.legacy-section[data-legacy-id="bfa2432"] .legacy-column:last-child,
.legacy-section[data-legacy-id="c8abd38"] .legacy-column:last-child {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--soft-blue);
}

.legacy-section[data-legacy-id="2dc2b7b"] .legacy-column:last-child img,
.legacy-section[data-legacy-id="bfa2432"] .legacy-column:last-child img {
  max-height: 380px;
}

.legacy-section[data-legacy-id="a6a4979"] {
  padding-block: clamp(2.8rem, 5vw, 4rem);
  text-align: center;
  background: var(--soft-blue);
}

.legacy-section[data-legacy-id="4ee8a9a"] {
  text-align: center;
}

.legacy-section[data-legacy-id="4ee8a9a"] img,
.legacy-section[data-legacy-id="16a1154e"] img {
  max-width: 520px;
  max-height: 115px;
}

.legacy-section[data-legacy-id="4ee8a9a"] h2,
.legacy-section[data-legacy-id="16a1154e"] h2,
.legacy-section[data-legacy-id="16a1154e"] .legacy-action {
  margin-inline: auto;
  text-align: center;
}

.legacy-section[data-legacy-id="39daeef"],
.legacy-section[data-legacy-id="9cd5341"],
.legacy-section[data-legacy-id="5cc9699"] {
  padding-block: 1.2rem;
}

.legacy-section[data-legacy-id="5cc9699"] {
  padding-bottom: clamp(3.4rem, 6vw, 5.5rem);
}

.legacy-section[data-legacy-id="8f2f8f5"] {
  text-align: center;
  background: var(--soft);
}

.legacy-section[data-legacy-id="742b4d3"] .legacy-column,
.legacy-section[data-legacy-id="16a1154e"] .legacy-column {
  text-align: center;
}

.legacy-section[data-legacy-id="742b4d3"] img {
  max-height: 350px;
  border-radius: var(--radius-lg);
}

.legacy-section[data-legacy-id="3c496dac"],
.legacy-section[data-legacy-id="8fe7dfc"] {
  padding-top: 1rem;
}

.legacy-section[data-legacy-id="2c75d44"] .legacy-section-inner,
.legacy-section[data-legacy-id="95fde9b"] .legacy-section-inner,
.legacy-section[data-legacy-id="1f14d6b"] .legacy-section-inner {
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legacy-section[data-legacy-id="2c75d44"] h2,
.legacy-section[data-legacy-id="95fde9b"] h2,
.legacy-section[data-legacy-id="1f14d6b"] h2,
.legacy-section[data-legacy-id="09c1716"] h2,
.legacy-section[data-legacy-id="68e17810"] h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

/* Contato */
.legacy-section[data-legacy-id="5835343"],
.legacy-section[data-legacy-id="13a1f3c"] {
  padding-block: clamp(2.8rem, 5vw, 4.2rem);
  text-align: center;
}

.legacy-section[data-legacy-id="5835343"] {
  background: linear-gradient(145deg, var(--soft), var(--soft-blue));
}

.legacy-section[data-legacy-id="5835343"] h2,
.legacy-section[data-legacy-id="13a1f3c"] h2 {
  margin-inline: auto;
}

.legacy-section[data-legacy-id="09c1716"] .legacy-column:first-child,
.legacy-section[data-legacy-id="68e17810"] .legacy-column {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legacy-section[data-legacy-id="68e17810"] .legacy-section-inner {
  align-items: stretch;
  gap: 1.25rem;
}

/* Rodapé */
.site-footer {
  position: relative;
  padding: 4.2rem 0 1.3rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #0d1239, #1b225a);
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -220px;
  border: 1px solid rgba(120, 199, 239, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(120, 199, 239, 0.025), 0 0 0 160px rgba(120, 199, 239, 0.02);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-logo {
  display: block;
  width: 176px;
  height: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: #fff;
}

.site-footer .button {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.site-footer .button:hover {
  color: var(--navy);
}

.copyright {
  position: relative;
  margin-top: 2.7rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
  }

  .nav-wrap nav {
    gap: 1rem;
    font-size: 0.87rem;
  }

  .restricted {
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

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

  .logo-slide {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

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

  .nav-wrap {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .site-header.is-scrolled .nav-wrap {
    min-height: 56px;
  }

  .brand img {
    width: 146px;
  }

  .site-header.is-scrolled .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px 10px;
    gap: 5px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .nav-wrap nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    justify-self: stretch;
    display: flex;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    color: #fff;
    background: rgba(17, 21, 63, 0.98);
    box-shadow: 0 22px 55px rgba(8, 11, 39, 0.34);
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
    visibility: hidden;
    opacity: 0;
    translate: 0 -10px;
    transition: visibility 180ms ease, opacity 180ms ease, translate 180ms ease;
  }

  .nav-wrap nav.open {
    visibility: visible;
    opacity: 1;
    translate: 0;
  }

  .nav-wrap nav a {
    padding: 0.75rem 0.65rem;
    border-radius: 9px;
  }

  .nav-wrap nav a::after {
    display: none;
  }

  .nav-wrap nav a:hover,
  .nav-wrap nav a:focus-visible,
  .nav-wrap nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.09);
  }

  .cards,
  .unit-grid,
  .post-grid,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .legacy-section[data-legacy-id="12116ee"] .legacy-column,
  .legacy-section[data-legacy-id="085a064"] .legacy-column {
    grid-template-columns: 1fr;
  }

  .legacy-section[data-legacy-id="12116ee"] .legacy-image,
  .legacy-section[data-legacy-id="12116ee"] h2,
  .legacy-section[data-legacy-id="12116ee"] .legacy-action,
  .legacy-section[data-legacy-id="085a064"] .legacy-image {
    grid-column: 1;
    grid-row: auto;
  }

  .legacy-section[data-legacy-id="12116ee"] .legacy-image {
    margin-bottom: 2rem;
  }

  .legacy-section[data-legacy-id="2ec5608"] .legacy-section-inner,
  .legacy-section[data-legacy-id="adb4e6b"] .legacy-section-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-section[data-legacy-id="7fa97d51"] .legacy-column:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15.5px;
  }

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

  .nav-wrap {
    min-height: 62px;
    gap: 0.7rem;
  }

  .brand img {
    width: 136px;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .restricted {
    min-height: 34px;
    padding: 0.48rem 0.65rem;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .restricted svg {
    width: 14px;
    height: 14px;
    margin-right: 0.32rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 10px 9px;
  }

  .carousel-track {
    height: clamp(430px, 116vw, 570px);
  }

  .carousel-slide::after {
    background: linear-gradient(90deg, rgba(15, 20, 60, 0.9), rgba(15, 20, 60, 0.38));
  }

  .carousel-copy {
    width: 100%;
    padding: 3rem 44px 4rem;
  }

  .carousel-copy.align-center,
  .carousel-copy.align-right {
    width: 100%;
    margin-left: 0;
    padding: 3rem 44px 4rem;
  }

  .carousel-copy > .align-left,
  .carousel-copy > .align-center,
  .carousel-copy > .align-right {
    width: 100%;
    max-width: 100%;
  }

  .carousel-copy h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.55rem;
  }

  .carousel-arrow.previous {
    left: 5px;
  }

  .carousel-arrow.next {
    right: 5px;
  }

  .group-section img {
    width: 96%;
    max-height: 48px;
  }

  .legacy-section {
    padding-block: 3rem;
  }

  .legacy-section-inner {
    gap: 1.6rem;
  }

  .legacy-section h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .legacy-image img {
    max-height: 340px;
  }

  .legacy-post-grid,
  .legacy-logo-grid,
  .legacy-section[data-legacy-id="2ec5608"] .legacy-section-inner,
  .legacy-section[data-legacy-id="adb4e6b"] .legacy-section-inner {
    grid-template-columns: 1fr;
  }

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

  .legacy-logo-carousel {
    padding-inline: 34px;
  }

  .legacy-logo-track {
    gap: 0.75rem;
  }

  .logo-slide {
    flex-basis: calc((100% - 0.75rem) / 2);
    min-height: 112px;
  }

  .legacy-section[data-legacy-id="2ec5608"] .legacy-column,
  .legacy-section[data-legacy-id="adb4e6b"] .legacy-column {
    min-height: 120px;
  }

  .legacy-section[data-legacy-id="085a064"] .legacy-image img {
    max-height: 280px;
  }

  .legacy-section[data-legacy-id="400a7a6"] .legacy-image img {
    min-height: 220px;
  }

  .legacy-section[data-legacy-id="7fa97d51"] .legacy-section-inner,
  .legacy-section[data-legacy-id="2c75d44"] .legacy-section-inner,
  .legacy-section[data-legacy-id="95fde9b"] .legacy-section-inner,
  .legacy-section[data-legacy-id="1f14d6b"] .legacy-section-inner {
    border-radius: 20px;
  }

  .product-card {
    height: 245px;
  }

  .site-footer {
    padding-top: 3.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
