:root {
  --color-brand: #df0b17;
  --color-brand-surface: #b40711;
  --color-brand-surface-hover: #8f050d;
  --red: #df0b17;
  --red-dark: #b40711;
  --red-on-dark: #ff5c66;
  --ink: #181c25;
  --ink-2: #252b36;
  --muted: #646c78;
  --line: #dfe3e8;
  --paper: #fff;
  --soft: #f3f5f7;
  --max: 1180px;
  --header: 88px;
  --shadow: 0 18px 50px rgba(18, 23, 32, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 6px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 1000;
  height: var(--header);
  transition:
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}
.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(10, 14, 21, 0.75),
    rgba(10, 14, 21, 0)
  );
}
.site-header--solid,
.site-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(15, 19, 27, 0.1);
  backdrop-filter: blur(14px);
}
.site-header--overlay.is-scrolled {
  position: fixed;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: 276px;
  height: 72px;
}
.brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.25s ease;
  filter: none;
  content: normal;
}
.site-header--overlay:not(.is-scrolled) .brand picture source {
  display: none;
}
.site-header--overlay:not(.is-scrolled) .brand img {
  content: normal;
}
.primary-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.primary-nav > ul > li {
  position: relative;
}
.primary-nav a,
.submenu-toggle {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
}
.primary-nav > ul > li > a,
.nav-trigger-wrap > a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 11px;
  position: relative;
}
.primary-nav > ul > li > a:after,
.nav-trigger-wrap > a:after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.primary-nav a:hover:after,
.primary-nav a:focus-visible:after,
.primary-nav a[aria-current="page"]:after {
  transform: scaleX(1);
}
.nav-trigger-wrap {
  display: inline-flex;
  align-items: center;
}
.submenu-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  width: auto;
  height: auto;
  padding: 0 11px;
  position: relative;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.submenu-toggle svg {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transform: rotate(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 4px);
  left: 0;
  min-width: 285px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}
.submenu a:hover,
.submenu a:focus-visible {
  background: var(--soft);
  color: var(--red-dark);
}
.nav-item--has-submenu.is-open > .submenu,
.nav-item--has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: 0.2s;
}
.hero-slideshow {
  position: relative;
  height: min(850px, 100svh);
  min-height: 690px;
  background: #10141b;
  color: #fff;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 12, 18, 0.82) 0%,
      rgba(8, 12, 18, 0.54) 45%,
      rgba(8, 12, 18, 0.12) 78%
    ),
    linear-gradient(0deg, rgba(6, 9, 14, 0.5), transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: clamp(190px, 25vh, 260px);
  max-width: 920px;
}
.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0.18em 0 0.28em;
  max-width: 900px;
}
.hero-copy h2 {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.5vw, 1.27rem);
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-weight: 800;
  font-size: 0.73rem;
  margin: 0 0 14px;
}
.eyebrow--red {
  color: var(--red-dark);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.button--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}
.button--outline {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.button--outline:hover,
.button--outline:focus-visible {
  background: #fff;
  color: var(--ink);
}
.button--dark {
  background: var(--ink);
  color: #fff;
}
.button--dark:hover,
.button--dark:focus-visible {
  background: #303744;
}
.button--light {
  background: #fff;
  color: var(--ink);
}
.button--light:hover,
.button--light:focus-visible {
  background: #f1f3f5;
}
.hero-controls {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100% - var(--max)) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(12, 16, 23, 0.25);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.section {
  padding: clamp(78px, 9vw, 128px) 0;
}
.section--muted {
  background: var(--soft);
}
.section--dark {
  background: var(--ink);
  color: #fff;
}
.section--intro {
  padding-top: 110px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.split h2,
.section-heading h2,
.content-grid h2,
.split-media h2,
.contact-layout h2,
.certification-layout h2,
.content-narrow h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0.15em 0 0.4em;
}
.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #3f4753;
}
.section--dark .lead,
.section-heading--light p {
  color: rgba(255, 255, 255, 0.72);
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading--light {
  color: #fff;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.sector-grid article {
  padding: 34px 28px;
  min-height: 250px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.sector-grid span {
  color: var(--red-on-dark);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.sector-grid h3 {
  font-size: 1.25rem;
  margin: 40px 0 10px;
}
.sector-grid p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.68);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-decoration: none;
  min-height: 410px;
}
.feature-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.55s;
}
.feature-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(9, 12, 18, 0.92),
    rgba(9, 12, 18, 0.08) 65%
  );
}
.feature-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.feature-card p {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}
.feature-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.feature-card:hover img,
.feature-card:focus-visible img {
  transform: scale(1.07);
}
.quality-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}
.quality-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.metrics div {
  border-top: 2px solid var(--red);
  padding-top: 14px;
}
.metrics strong {
  display: block;
  font-size: 1.85rem;
}
.metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.certificate-teaser {
  background: var(--red);
  color: #fff;
}
.certificate-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.certificate-teaser h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0.15em 0 0.3em;
}
.certificate-teaser p {
  max-width: 650px;
}
.iso-mark {
  text-align: right;
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.82);
}
.iso-mark span {
  display: block;
  font-size: 5rem;
  font-weight: 300;
}
.iso-mark strong {
  display: block;
  font-size: 8rem;
  letter-spacing: -0.08em;
}
.iso-mark small {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: #fff;
}
.cta-panel {
  position: relative;
  isolation: isolate;
  padding: 130px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-panel-bg {
  position: absolute;
  z-index: -2;
  inset: -18%;
  background: url("../images/hero/hero-fachada-moderna.webp") center/cover fixed;
}
.cta-panel:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(12, 16, 23, 0.74);
}
.cta-panel h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  max-width: 900px;
  margin: 0.15em auto 0.25em;
}
.cta-panel p {
  font-size: 1.12rem;
}
.inner-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 460px;
  background: #151a22;
  color: #fff;
  display: flex;
  align-items: end;
}
.inner-hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 21, 0.82), rgba(10, 14, 21, 0.25)),
    linear-gradient(0deg, rgba(10, 14, 21, 0.75), transparent 70%);
}
.inner-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 74px;
}
.inner-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0.1em 0 0.2em;
}
.inner-hero p:last-child {
  max-width: 730px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(55px, 9vw, 120px);
  align-items: start;
}
.quote-card {
  background: var(--ink);
  color: #fff;
  padding: 50px;
}
.quote-card p {
  font-size: 1.55rem;
  line-height: 1.5;
  margin: 0 0 20px;
}
.quote-card span {
  color: var(--red-on-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline strong {
  font-size: 2rem;
  color: var(--red-dark);
}
.timeline h3 {
  margin: 0;
  font-size: 1.2rem;
}
.timeline p {
  margin: 0.3em 0 0;
  color: var(--muted);
}
.split-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
}
.split-media--reverse > div:first-child {
  order: 2;
}
.split-media img {
  width: 100%;
  object-fit: cover;
}
.org-chart {
  margin: 0;
  background: #fff;
  padding: 38px;
  border-radius: 4px;
}
.org-chart img {
  width: 100%;
}
.org-chart figcaption {
  color: #505866;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 16px;
}
.principles {
  display: grid;
  gap: 2px;
  background: var(--line);
}
.principles article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  background: #fff;
  padding: 28px;
}
.principles span {
  color: var(--red-dark);
  font-weight: 800;
}
.principles h3 {
  margin: 0;
}
.principles p {
  margin: 0.3em 0 0;
  color: var(--muted);
}
.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}
.numbered-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 20px 0 20px 55px;
  border-bottom: 1px solid var(--line);
  position: relative;
  counter-increment: item;
}
.numbered-list li:before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 22px;
  color: var(--red-dark);
  font-weight: 800;
}
.numbered-list span {
  color: var(--muted);
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.check-grid article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 34px;
}
.check-grid ul {
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
}
.check-grid li {
  margin: 9px 0;
}
.content-narrow {
  max-width: 820px;
  margin-inline: auto;
}
.content-narrow--left {
  margin-left: 0;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.category-card button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
  text-align: left;
  border: 0;
  background: var(--soft);
  cursor: pointer;
  min-height: 330px;
}
.category-image {
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.category-copy {
  display: flex;
  flex-direction: column;
  padding: 36px;
}
.category-copy small {
  font-weight: 800;
  color: var(--red-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.category-copy strong {
  font-size: 1.45rem;
  margin: 16px 0 8px;
}
.category-copy > span {
  color: var(--muted);
}
.category-copy i {
  font-style: normal;
  font-weight: 800;
  margin-top: auto;
}
.category-card button:hover img,
.category-card button:focus-visible img {
  transform: scale(1.07);
}
dialog {
  border: 0;
  padding: 0;
}
dialog::backdrop {
  background: rgba(10, 13, 19, 0.86);
  backdrop-filter: blur(5px);
}
.certification-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}
.certificate-preview {
  background: var(--soft);
  padding: 24px;
  box-shadow: var(--shadow);
}
.certificate-data {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}
.certificate-data div {
  display: grid;
  grid-template-columns: 210px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.certificate-data dt {
  font-weight: 800;
}
.certificate-data dd {
  margin: 0;
}
.site-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.site-cards article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 34px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}
.contact-cards article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  background: var(--soft);
  padding: 24px;
}
.contact-cards img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(9%) saturate(1065%)
    hue-rotate(181deg) brightness(91%) contrast(91%);
}
.contact-cards h3 {
  margin: 0;
}
.contact-cards p {
  margin: 0.4em 0;
}
.contact-cards a[href^="tel"] {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.call-note {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}
.call-note--dark {
  color: var(--muted);
}
.contact-form-card {
  background: var(--ink);
  color: #fff;
  padding: clamp(32px, 5vw, 58px);
}
.contact-form-card h2 {
  color: #fff;
}
.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}
.form-row label {
  font-weight: 700;
  font-size: 0.87rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 12px 14px;
  border-radius: 0;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 3px solid rgba(223, 11, 23, 0.35);
  border-color: #fff;
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 0.82rem;
}
.consent a {
  text-decoration: underline;
}
.form-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.legal-content {
  max-width: 860px;
}
.legal-content h2 {
  font-size: 1.55rem;
  margin-top: 2em;
}
.legal-content a {
  text-decoration: underline;
}
.legal-note,
.legal-card {
  background: var(--soft);
  padding: 24px;
  border-left: 4px solid var(--red);
}
.empty-state {
  text-align: center;
  max-width: 720px;
}
.empty-state .button-row {
  justify-content: center;
}
.site-footer {
  background: #12161e;
  color: #fff;
  padding-top: 74px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.1fr 1fr;
  gap: 0;
}
.footer-col {
  padding: 0 34px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-col:first-child {
  padding-left: 0;
}
.footer-col:last-child {
  border-right: 0;
  padding-right: 0;
}
.footer-col h2 {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 23px;
}
.footer-logo-image--monochrome {
  display: block;
  filter: none;
  opacity: 1;
  width: 315px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.footer-identity p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 310px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin: 9px 0;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}
.footer-contact-list {
  display: grid;
  gap: 18px;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
}
.footer-contact-item img {
  filter: brightness(0) invert(1);
}
.footer-contact-item a {
  text-decoration: none;
}
.footer-contact-item a[href^="tel"] {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.62);
}
.complaints-badge {
  display: inline-block;
  margin-top: 18px;
  background: transparent;
}
.complaints-badge img {
  width: 185px;
  background: transparent;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
}
.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.copyright a {
  text-decoration: none;
}
.copyright a:hover,
.copyright a:focus-visible {
  text-decoration: underline;
  color: #fff;
}
:focus-visible {
  outline: 3px solid #ff6972;
  outline-offset: 3px;
}
@media (max-width: 1020px) {
  :root {
    --header: 78px;
  }
  .brand img {
    width: 235px;
    height: auto;
  }
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: #fff;
    color: var(--ink);
    max-height: calc(100vh - var(--header));
    overflow: auto;
    transform: translateY(-130%);
    transition: 0.25s;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
  }
  .primary-nav.is-open {
    transform: none;
  }
  .primary-nav > ul {
    display: block;
    padding: 14px 20px 24px;
  }
  .primary-nav > ul > li {
    border-bottom: 1px solid var(--line);
  }
  .primary-nav > ul > li > a,
  .nav-trigger-wrap > a {
    min-height: 54px;
    padding: 0;
  }
  .nav-trigger-wrap {
    display: flex;
    justify-content: space-between;
  }
  .submenu {
    position: static;
    min-width: 0;
    box-shadow: none;
    padding: 0 0 12px 14px;
    border-radius: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-item--has-submenu.is-open > .submenu {
    display: block;
  }
  .site-header--overlay:not(.is-scrolled) .menu-toggle {
    color: #fff;
  }
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-layout,
  .content-grid,
  .split-media,
  .contact-layout,
  .certification-layout {
    grid-template-columns: 1fr;
  }
  .split-media--reverse > div:first-child {
    order: 0;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 24px 36px;
  }
  .footer-col:first-child {
    padding-left: 24px;
  }
  .footer-col:last-child {
    padding-right: 24px;
  }
  .copyright {
    white-space: normal;
  }
  .dialog-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .brand img {
    width: 205px;
  }
  .hero-slideshow {
    min-height: 720px;
    height: 100svh;
  }
  .hero-copy {
    padding-top: 170px;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 300px;
  }
  .hero-controls {
    right: 16px;
    bottom: 92px;
  }
  .scroll-cue {
    left: 32px;
    transform: none;
    bottom: 26px;
  }
  .scroll-cue span {
    writing-mode: vertical-rl;
  }
  .scroll-cue i {
    height: 52px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section {
    padding: 72px 0;
  }
  .sector-grid {
    grid-template-columns: 1fr;
  }
  .sector-grid article {
    min-height: 210px;
  }
  .feature-cards {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 360px;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .certificate-teaser-inner {
    display: block;
  }
  .iso-mark {
    display: none;
  }
  .inner-hero {
    min-height: 400px;
  }
  .inner-hero-content {
    padding-bottom: 56px;
  }
  .timeline li {
    grid-template-columns: 90px 1fr;
  }
  .check-grid,
  .site-cards {
    grid-template-columns: 1fr;
  }
  .category-card button {
    grid-template-columns: 1fr;
  }
  .category-image {
    height: 230px;
  }
  .dialog-shell {
    padding: 20px;
  }
  .dialog-shell > header {
    gap: 12px;
  }
  .dialog-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .certificate-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col,
  .footer-col:first-child,
  .footer-col:last-child {
    text-align: center;
    padding: 0 16px 34px;
    margin-bottom: 34px;
  }
  .footer-logo-image--monochrome {
    margin-inline: auto;
  }
  .footer-identity p {
    margin-inline: auto;
  }
  .footer-contact-list {
    justify-items: center;
  }
  .footer-contact-item {
    text-align: left;
  }
  .complaints-badge img {
    margin-inline: auto;
  }
  .copyright-partner {
    display: block;
    margin-top: 5px;
  }
  .cta-panel-bg {
    background-attachment: scroll;
  }
  .org-chart {
    padding: 14px;
    overflow: auto;
  }
  .org-chart img {
    min-width: 760px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide.is-active {
    animation: none;
  }
  .cta-panel-bg {
    background-attachment: scroll;
  }
}

/* MWA RC5 component contracts */
.legal-badge,
.legal-badge__image {
  background: transparent;
}

.legal-badge {
  display: inline-flex;
  align-items: center;
}

.legal-badge__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer-contact-item a[href^="tel:"] {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.62);
}

body.no-scroll {
  overflow: hidden;
}

.mwa-gallery-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.mwa-gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 24, 18, 0.16);
  color: #5e675d;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.mwa-collection-card {
  appearance: none;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f5f6f2;
  color: #101510;
  text-align: left;
  cursor: zoom-in;
}

.mwa-collection-cover {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.mwa-collection-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.mwa-collection-card:hover .mwa-collection-cover img,
.mwa-collection-card:focus-visible .mwa-collection-cover img {
  transform: scale(1.055);
}

.mwa-collection-copy {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
  padding: 20px 21px 22px;
}

.mwa-collection-copy strong {
  font-size: 1.02rem;
}

.mwa-collection-copy small {
  flex: none;
  color: #667064;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mwa-gallery-dialog {
  z-index: 3000;
  width: min(1240px, calc(100vw - 40px));
  max-width: none;
  height: min(900px, calc(100vh - 40px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f7f8f4;
  color: #101510;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.48);
}

.mwa-gallery-dialog::backdrop {
  background: rgba(4, 8, 4, 0.82);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mwa-gallery-dialog[open] {
  display: block;
}

.mwa-gallery-dialog-shell {
  position: relative;
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
}

.mwa-gallery-dialog-close {
  position: sticky;
  z-index: 8;
  top: 18px;
  right: 18px;
  float: right;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 21, 16, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #101510;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.mwa-gallery-dialog-close:hover,
.mwa-gallery-dialog-close:focus-visible {
  background: #101510;
  color: #fff;
}

.mwa-gallery-collection-view {
  padding: 64px 56px 58px;
}

.mwa-dialog-heading {
  max-width: 780px;
  margin-bottom: 34px;
  padding-right: 64px;
}

.mwa-dialog-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4.3rem);
}

.mwa-dialog-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mwa-dialog-thumb {
  appearance: none;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e8ebe4;
  cursor: zoom-in;
}

.mwa-dialog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mwa-dialog-thumb:hover img,
.mwa-dialog-thumb:focus-visible img {
  transform: scale(1.045);
}

.mwa-gallery-image-view {
  position: relative;
  min-height: 100%;
  padding: 30px 82px 42px;
}

.mwa-gallery-image-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 52px;
  padding-right: 52px;
}

.mwa-gallery-back {
  border: 0;
  background: transparent;
  color: #101510;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.mwa-gallery-figure {
  display: grid;
  place-items: center;
  min-height: calc(100% - 78px);
  margin: 0;
}

.mwa-gallery-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.mwa-gallery-figure figcaption {
  min-height: 1.5em;
  margin-top: 16px;
  color: #5e675d;
  text-align: center;
}

.mwa-gallery-nav {
  position: fixed;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(4, 8, 4, 0.66);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.mwa-gallery-prev {
  left: max(12px, calc((100vw - 1240px) / 2 - 64px));
}
.mwa-gallery-next {
  right: max(12px, calc((100vw - 1240px) / 2 - 64px));
}

@media (max-width: 1000px) {
  .mwa-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mwa-dialog-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mwa-gallery-collection-view {
    padding: 58px 38px 45px;
  }
}

@media (max-width: 700px) {
  .mwa-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mwa-collection-copy {
    display: block;
  }
  .mwa-collection-copy small {
    display: block;
    margin-top: 7px;
  }

  .mwa-gallery-dialog {
    width: 100vw;
    height: 100dvh;
    margin: 0;
  }

  .mwa-gallery-dialog-close {
    position: fixed;
    top: 12px;
    right: 12px;
  }

  .mwa-gallery-collection-view {
    padding: 72px 18px 30px;
  }
  .mwa-dialog-thumb-grid {
    grid-template-columns: 1fr;
  }
  .mwa-gallery-image-view {
    padding: 70px 18px 30px;
  }
  .mwa-gallery-image-toolbar {
    padding-right: 50px;
  }
  .mwa-gallery-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .mwa-gallery-prev {
    left: 18px;
  }
  .mwa-gallery-next {
    right: 18px;
  }
}

@media (max-width: 440px) {
  .mwa-collection-grid {
    grid-template-columns: 1fr;
  }
}

.evolution-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 720px;
  height: 100svh;
  color: #fff;
  background: #071726;
  --slide-duration: 6500ms;
  --crossfade-duration: 1300ms;
  --ken-burns-duration: 7800ms;
}

.evolution-hero .hero-slides,
.evolution-hero .hero-slide,
.evolution-hero .hero-slide img,
.evolution-hero .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.evolution-hero .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  visibility: visible;
  opacity: 0;
  background: none;
  pointer-events: none;
  transform: none;
  animation: none;
  transition: opacity var(--crossfade-duration) ease-in-out;
}

.evolution-hero .hero-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}

.evolution-hero .hero-slide.is-leaving {
  z-index: 3;
  opacity: 0;
}

.evolution-hero .hero-slide img {
  object-fit: cover;
  backface-visibility: hidden;
  transform: scale(1.03) translate3d(0, 0, 0);
  transform-origin: center;
  will-change: transform;
}

.evolution-hero.is-ready .hero-slide.is-active img {
  animation-duration: var(--ken-burns-duration);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.evolution-hero.is-ready .hero-slide.kb-dir-1.is-active img {
  animation-name: mzKenBurns1;
}
.evolution-hero.is-ready .hero-slide.kb-dir-2.is-active img {
  animation-name: mzKenBurns2;
}
.evolution-hero.is-ready .hero-slide.kb-dir-3.is-active img {
  animation-name: mzKenBurns3;
}
.evolution-hero.is-ready .hero-slide.kb-dir-4.is-active img {
  animation-name: mzKenBurns4;
}
.evolution-hero.is-ready .hero-slide.kb-dir-5.is-active img {
  animation-name: mzKenBurns5;
}
.evolution-hero.is-ready .hero-slide.kb-dir-6.is-active img {
  animation-name: mzKenBurns6;
}

@keyframes mzKenBurns1 {
  from {
    transform: scale(1.03) translate3d(-1.4%, 0.8%, 0);
  }
  to {
    transform: scale(1.2) translate3d(2.8%, -2.2%, 0);
  }
}

@keyframes mzKenBurns2 {
  from {
    transform: scale(1.04) translate3d(1.8%, -0.8%, 0);
  }
  to {
    transform: scale(1.19) translate3d(-2.8%, 2.1%, 0);
  }
}

@keyframes mzKenBurns3 {
  from {
    transform: scale(1.03) translate3d(0, 1.4%, 0);
  }
  to {
    transform: scale(1.2) translate3d(2.2%, -2.8%, 0);
  }
}

@keyframes mzKenBurns4 {
  from {
    transform: scale(1.04) translate3d(-1.8%, -1%, 0);
  }
  to {
    transform: scale(1.19) translate3d(2.9%, 2.2%, 0);
  }
}

@keyframes mzKenBurns5 {
  from {
    transform: scale(1.03) translate3d(1.2%, 1.2%, 0);
  }
  to {
    transform: scale(1.2) translate3d(-2.5%, -2.6%, 0);
  }
}

@keyframes mzKenBurns6 {
  from {
    transform: scale(1.04) translate3d(0, -1.3%, 0);
  }
  to {
    transform: scale(1.19) translate3d(-2.4%, 2.7%, 0);
  }
}

.evolution-hero .hero-shade {
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(7, 23, 38, 0.8),
      rgba(7, 23, 38, 0.28),
      rgba(7, 23, 38, 0.48)
    ),
    linear-gradient(0deg, rgba(7, 23, 38, 0.48), transparent 45%);
  pointer-events: none;
}

.evolution-hero .hero-content {
  position: relative;
  z-index: 4;
  width: min(1180px, 92%);
  margin: auto;
  padding-top: var(--header-clearance, 84px);
}

.evolution-hero .hero-controls {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.evolution-hero .slide-dots {
  display: flex;
  gap: 9px;
}

.evolution-hero .slide-dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}

.evolution-hero .slide-dots button.is-active {
  width: 55px;
  background: #fff;
}

.evolution-hero .slide-pause {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  cursor: pointer;
}

.evolution-hero .scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  padding: 8px 14px 0;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transform: translateX(-50%);
  animation: mzScrollCueFloat 2.2s ease-in-out infinite;
}

.evolution-hero .scroll-cue__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.evolution-hero .scroll-cue__line {
  position: relative;
  display: block;
  width: 2px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.38);
}

.evolution-hero .scroll-cue__runner {
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.85);
  animation: mzScrollCueRunner 1.55s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.evolution-hero .scroll-cue:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 5px;
}

@keyframes mzScrollCueRunner {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    transform: translateY(72px);
    opacity: 0;
  }
}

@keyframes mzScrollCueFloat {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 5px);
  }
}

@media (max-width: 850px) {
  .evolution-hero {
    min-height: 650px;
  }
  .evolution-hero .hero-controls {
    right: 20px;
    bottom: 30px;
  }
  .evolution-hero .scroll-cue {
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evolution-hero .hero-slide,
  .evolution-hero .hero-slide.is-active {
    transition-duration: 0.35s;
  }

  .evolution-hero .hero-slide img,
  .evolution-hero.is-ready .hero-slide.is-active img {
    animation: none !important;
    transform: scale(1.03) !important;
  }

  .evolution-hero .scroll-cue {
    animation: none;
  }
  .evolution-hero .scroll-cue__runner {
    animation: none;
    top: 17px;
    opacity: 1;
  }
}

/* Branding, navegação e heros interiores */
.brand-logo--transparent {
  opacity: 1;
}
.brand-logo--scrolled {
  display: block;
  opacity: 0;
}
.site-header--overlay.is-scrolled .brand-logo--transparent,
.site-header--solid .brand-logo--transparent {
  opacity: 0;
}
.site-header--overlay.is-scrolled .brand-logo--scrolled,
.site-header--solid .brand-logo--scrolled {
  opacity: 1;
}
.primary-nav > ul > li > a,
.submenu-toggle {
  box-sizing: border-box;
}
.submenu-toggle > span {
  display: block;
  font: inherit;
}
.submenu-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.submenu-toggle:hover::after,
.submenu-toggle:focus-visible::after,
.submenu-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
}
.submenu-toggle[aria-expanded="true"] .submenu-chevron {
  transform: rotate(180deg);
}
.submenu[hidden] {
  display: none;
}
.inner-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
}
.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  transform: scale(1.015);
}

/* Contraste, contactos e formulário */
.contact-form-card .eyebrow--red {
  color: var(--red-on-dark);
}
.form-handoff-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}
.phone-list,
.contact-phone-list {
  display: grid;
  gap: 10px;
}
.phone-list > span {
  display: block;
}
.contact-phone-list p {
  margin: 0;
}
.category-card [data-gallery-collection-open] {
  cursor: pointer;
}

@media (min-width: 1021px) {
  .primary-nav .nav-home {
    display: none;
  }
}

@media (max-width: 1020px) {
  .brand {
    width: 235px;
    height: 61px;
  }
  .submenu-toggle {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0;
  }
  .submenu-toggle::after {
    display: none;
  }
  .primary-nav .nav-home {
    display: block;
  }
  .primary-nav .submenu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .primary-nav .submenu[hidden] {
    display: none;
  }
}

@media (max-width: 700px) {
  .brand {
    width: 205px;
    height: 53px;
  }
  .evolution-hero .hero-controls {
    bottom: 80px;
  }
  .evolution-hero .scroll-cue {
    left: 28px;
    transform: none;
    animation: none;
  }
  .evolution-hero .scroll-cue__label {
    writing-mode: vertical-rl;
  }
}

@media (prefers-reduced-motion: reduce) {
  .submenu-toggle svg {
    transition: none;
  }
}

/* Mocabel v1.3.1 — tornar interativas as CTA do slideshow */
.evolution-hero .hero-slide.is-active {
  pointer-events: auto;
}
.evolution-hero .hero-slide.is-active.is-leaving {
  pointer-events: none;
}
.evolution-hero .hero-copy {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}
.evolution-hero .hero-actions,
.evolution-hero .hero-actions .button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
