:root {
  --brand-teal: #00a994;
  --brand-teal-dark: #007e71;
  --brand-orange: #fdbf57;
  --brand-gold: #edc470;
  --link-blue: #0088cc;
  --action-blue: #357fc1;
  --text: #202020;
  --text-secondary: #404040;
  --muted: #6d6d6d;
  --surface: #fff;
  --canvas: #eeecec;
  --surface-soft: #ebebeb;
  --surface-warm: #fcf6f6;
  --footer: #d1d3d4;
  --border: #d2d2d2;
  --page-max: 1140px;
  --content-max: 1040px;
  --reading-max: 760px;
  --gutter: clamp(1rem, 4vw, 3.125rem);
  --shadow: 0 2px 6px rgba(70, 70, 70, 0.28);
  --focus: 3px solid #005fcc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--canvas) url("../images/background-pattern.gif") center top / max(100vw, 1500px) auto no-repeat;
  font-family: Oxygen, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--brand-teal-dark);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7em;
  color: var(--brand-teal-dark);
  line-height: 1.25;
}

h1 { font-size: clamp(1.75rem, 3vw, 2rem); }
h2 { font-size: clamp(1.375rem, 2.4vw, 1.625rem); }
h3 { font-size: clamp(1.1875rem, 2vw, 1.375rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9375rem; }

p,
ul,
ol,
table,
blockquote {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.5rem;
  left: 0.5rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: #fff;
  background: var(--brand-teal-dark);
}

.site-frame {
  width: min(100%, var(--page-max));
  min-height: auto;
  margin: clamp(0rem, 3vw, 3.5rem) auto 0;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--surface);
}

.site-header__top {
  min-height: 190px;
  padding: 2.4rem var(--gutter) 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding__logo {
  display: block;
  width: min(368px, 100%);
  height: auto;
}

.site-header__utilities {
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  padding-top: 0.3rem;
}

.language-switcher ul,
.primary-menu,
.primary-menu ul,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-switcher ul {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
}

.language-switcher a {
  color: var(--text);
  text-decoration: none;
}

.language-switcher .is-current a {
  color: var(--brand-teal-dark);
  font-weight: 600;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(190px, 100%);
}

.search-field {
  width: 100%;
  min-height: 42px;
  padding: 0.4rem 2.5rem 0.4rem 0.9rem;
  border: 3px solid var(--brand-orange);
  border-radius: 999px;
  background: #fff;
}

.search-submit {
  position: absolute;
  right: 0.25rem;
  width: 38px;
  height: 38px;
  border: 0;
  color: var(--brand-teal-dark);
  background: transparent;
  cursor: pointer;
}

.primary-navigation {
  padding: 1.1rem var(--gutter) 2.2rem;
}

.primary-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.2em;
  background: var(--brand-teal);
  transform: translateY(-50%);
}

.primary-menu a {
  display: block;
  padding: 0.65rem 1.55rem;
  color: var(--brand-teal-dark);
  font-size: 1.18rem;
  text-decoration: none;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-ancestor > a {
  font-weight: 700;
}

.primary-menu .sub-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  display: none;
  min-width: 240px;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  display: block;
}

.primary-menu .sub-menu a {
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
}

.menu-toggle,
.primary-navigation__mobile-utilities {
  display: none;
}

.page-hero,
.home-static-hero,
.home-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1140 / 450;
  overflow: hidden;
  background: var(--surface-soft);
}

.page-hero__image,
.home-static-hero img,
.home-slide__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: auto auto 2rem 2.5rem;
  max-width: min(34rem, calc(100% - 5rem));
  padding: 0.6rem 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.2;
}

.home-slide {
  position: absolute;
  inset: 0;
}

.home-slide[hidden] {
  display: none;
}

.home-slide__content {
  position: absolute;
  top: 3.5rem;
  left: var(--gutter);
  width: min(28rem, 48%);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.22;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.home-slide__link {
  position: absolute;
  inset: 0;
}

.home-slider__controls {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
}

.home-slider__controls button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.home-slider__controls [data-slider-pause] {
  width: auto;
  padding: 0 0.8rem;
  border-radius: 4px;
  font-size: 0.875rem;
}

.home-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.home-slider__dots button {
  min-width: 16px;
  min-height: 16px;
  width: 16px;
  height: 16px;
  border-color: #8a8a8a;
}

.home-slider__dots button[aria-current="true"] {
  border-color: var(--brand-teal);
  background: var(--brand-teal);
}

.content-container {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: 2rem var(--gutter) 4.5rem;
}

.breadcrumb {
  margin-bottom: 2.6rem;
  color: #111;
  font-size: 0.95rem;
  font-weight: 700;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 0.35rem;
}

.breadcrumb a,
.breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.entry-title,
.archive-header h1 {
  margin-bottom: 1.25rem;
}

.entry-content {
  margin-bottom: 2rem;
}

.rich-text {
  max-width: 100%;
}

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

.rich-text table {
  width: 100%;
  border-collapse: collapse;
}

.rich-text th,
.rich-text td {
  padding: 0.55rem 0.75rem;
  border: 2px solid #fff;
  text-align: left;
}

.rich-text th {
  background: var(--brand-gold);
}

.rich-text td {
  background: var(--surface-soft);
}


.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-topbar .breadcrumb {
  margin-bottom: 0;
}

.product-topbar__pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  padding: 0.75rem 1.2rem;
  border-radius: 4px;
  background: var(--brand-teal);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-topbar__pdf-button:hover,
.product-topbar__pdf-button:focus-visible {
  color: #fff;
  opacity: 0.9;
  transform: translateY(-1px);
}

.content-blocks {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.content-block {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.content-block.has-image {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.content-block--image-right .content-block__media {
  order: 2;
}

.content-block__media img {
  display: block;
  width: 100%;
}

.content-block__columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 0.25rem;
}

.content-block__columns--1 {
  grid-template-columns: minmax(0, 1fr);
}

.content-block__column {
  min-width: 0;
}

.content-block__column h3 {
  margin-top: 0;
}

.content-block__column-media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-calls {
  padding-top: 4.5rem;
}

.home-calls__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.25rem;
}

.home-call {
  position: relative;
  text-align: center;
}

.home-call__media img {
  display: block;
  width: 100%;
  aspect-ratio: 390 / 261;
  object-fit: cover;
}

.home-call h2 {
  margin: 0;
  padding: 0.2rem 0.75rem;
  color: #fff;
  background: var(--brand-teal);
  font-size: 1.25rem;
}

.home-call--1 h2 { background: #888; }
.home-call--2 h2 { background: var(--brand-orange); }
.home-call__text { padding: 0.7rem 0.5rem; color: var(--muted); }
.home-call__link { position: absolute; inset: 0; }
.home-editorial { padding-top: 0; }

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.5rem 5rem;
  margin-top: 3rem;
}

.page-card {
  min-width: 0;
}

.page-card__media,
.page-card__media img {
  display: block;
  width: 100%;
}

.page-card__media {
  border-bottom: 14px solid var(--brand-teal);
}

.page-card:nth-child(even) .page-card__media {
  border-color: var(--brand-orange);
}

.page-card__title {
  margin-top: 1rem;
  font-weight: 500;
}

.page-card__title a {
  text-decoration: none;
}

.page-card__body p {
  margin-bottom: 0.35rem;
}

.page-card--service {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1.5rem;
}

.page-card--service.page-card--without-icon {
  grid-template-columns: minmax(0, 1fr);
}

.page-card__icon,
.service-heading__icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  background: #8c8c8e;
}

.page-card:nth-child(n+3) .page-card__icon {
  background: var(--brand-orange);
}

.page-card__icon img,
.service-heading__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-card--service .page-card__title {
  margin-top: 0;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand-teal-dark);
  text-transform: uppercase;
  text-decoration: none;
}

.text-cta span {
  color: var(--brand-orange);
  font-size: 0.8em;
}

.editorial-calls {
  margin-top: 3.5rem;
}

.editorial-call {
  min-width: 0;
}

.editorial-call__media,
.editorial-call__media img {
  display: block;
  width: 100%;
}

.editorial-call__media {
  border-bottom: 12px solid var(--brand-teal);
}

.editorial-call:nth-child(even) .editorial-call__media {
  border-color: var(--brand-orange);
}

.editorial-call__body {
  padding-top: 1rem;
}

.service-heading {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.service-heading--without-icon {
  grid-template-columns: minmax(0, 1fr);
}

.service-heading__content {
  min-width: 0;
}

.service-heading .entry-title {
  margin-bottom: 0.55rem;
  overflow-wrap: normal;
  word-break: normal;
}

.service-heading__summary > :last-child {
  margin-bottom: 0;
}

.service-heading__icon {
  width: 104px;
  height: 104px;
  padding: 0.55rem;
}

.form-section {
  margin-top: 3rem;
}

.notice-box {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 5px solid var(--brand-gold);
  background: #fafafa;
}

.notice-box > :last-child {
  margin-bottom: 0;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.module-card {
  padding: 1.5rem;
  border-top: 5px solid var(--brand-teal);
  background: var(--surface-soft);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.6rem 1.3rem;
  margin-top: 2.5rem;
}

.partner-grid__item,
.partner-grid__item a {
  min-width: 0;
  min-height: 112px;
  display: grid;
  place-items: center;
}

.partner-grid__item a {
  width: 100%;
  padding: 0.35rem;
}

.partner-grid__image {
  width: 100%;
  height: 92px;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 4rem;
  margin: 2.5rem 0;
}

.contact-layout__aside {
  padding: 1.75rem;
  background: var(--surface-warm);
}

.location-strip {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  background: var(--brand-teal);
}

.location-strip__map,
.location-strip__map a,
.location-strip__map img {
  display: block;
  width: 100%;
  height: 100%;
}

.location-strip__map img {
  min-height: 280px;
  object-fit: cover;
}

.location-strip__address {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: #fff;
  background: rgba(0, 169, 148, 0.92);
}

.location-strip__address h2,
.location-strip__address h3,
.location-strip__address a {
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.content-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.content-card__media,
.content-card__media img {
  display: block;
  width: 100%;
}

.content-card__title {
  margin-top: 1rem;
}

.content-card__title a {
  text-decoration: none;
}

.button,
.wp-block-button__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--action-blue);
  text-decoration: none;
}

.error-404 .search-form {
  margin: 1.5rem 0;
}

.site-footer {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  background: var(--footer);
}

.site-footer__mark img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
}

.footer-menu a {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-decoration: none;
}

.site-footer__social {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: #0875a5;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.nav-links .page-numbers {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
}

@media (max-width: 1023px) {
  body {
    background-image: none;
  }

  .site-frame {
    margin-top: 0;
    box-shadow: none;
  }

  .site-header__top {
    min-height: 104px;
    align-items: center;
    padding-block: 1.25rem;
  }

  .site-branding__logo {
    width: min(260px, 62vw);
  }

  .site-header__utilities,
  .primary-navigation {
    display: none;
  }

  .menu-toggle {
    min-width: 48px;
    min-height: 48px;
    display: inline-grid;
    grid-template-columns: 24px auto;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--brand-teal);
    border-radius: 4px;
    color: var(--brand-teal-dark);
    background: #fff;
  }

  .menu-toggle__icon,
  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    width: 24px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .menu-toggle__icon {
    position: relative;
  }

  .menu-toggle__icon::before,
  .menu-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-toggle__icon::before { top: -7px; }
  .menu-toggle__icon::after { top: 7px; }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon { background: transparent; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

  .primary-navigation.is-open {
    position: fixed;
    z-index: 30;
    inset: 104px 0 0;
    display: block;
    padding: 1rem var(--gutter) 2rem;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--border);
  }

  .primary-menu {
    display: block;
  }

  .primary-menu > li:not(:last-child)::after {
    display: none;
  }

  .primary-menu a {
    min-height: 48px;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }

  .primary-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    box-shadow: none;
  }

  .primary-navigation__mobile-utilities {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .primary-navigation__mobile-utilities .language-switcher ul {
    flex-wrap: wrap;
  }

  .primary-navigation__mobile-utilities .search-form {
    width: min(100%, 28rem);
  }

  .partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-layout {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: clamp(1rem, 5vw, 1.5rem);
  }

  .site-header__top {
    min-height: 88px;
  }

  .primary-navigation.is-open {
    inset-block-start: 88px;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .page-hero,
  .home-static-hero,
  .home-slider__viewport {
    aspect-ratio: 16 / 8.5;
  }

  .page-hero__overlay {
    inset: auto 1rem 1rem;
    max-width: none;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .home-slide__content {
    top: 1.2rem;
    left: var(--gutter);
    width: min(76%, 24rem);
    font-size: clamp(1.4rem, 7vw, 2.4rem);
  }

  .content-container {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .product-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-topbar.has-product-pdf .breadcrumb {
    margin-bottom: 0;
  }

  .product-topbar__pdf-button {
    align-self: flex-start;
  }

  .breadcrumb {
    margin-bottom: 2rem;
  }

  .home-calls__grid,
  .page-card-grid,
  .content-grid,
  .module-grid,
  .contact-layout,
  .content-block.has-image,
  .content-block__columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-calls__grid {
    gap: 2.5rem;
  }

  .page-card-grid {
    gap: 3rem;
  }

  .content-block--image-right .content-block__media {
    order: initial;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .partner-grid__item,
  .partner-grid__item a {
    min-height: 100px;
  }

  .partner-grid__image {
    height: 80px;
  }

  .rich-text table {
    min-width: 640px;
  }

  .entry-content,
  .rich-text {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-menu {
    justify-content: center;
  }
}

@media (max-width: 479px) {
  .site-branding__logo {
    width: min(210px, 64vw);
  }

  .page-card--service,
  .service-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-card__icon,
  .service-heading__icon {
    width: 80px;
    height: 80px;
  }

  .home-slider__controls {
    flex-wrap: wrap;
    padding: 0.65rem;
  }
}

@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;
  }
}

/* Downloads / Suporte ------------------------------------------------------ */
.download-section {
  margin: 42px 0 0;
}

.download-section__title {
  margin: 0 0 18px;
  color: var(--color-primary, #009b8e);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  text-transform: uppercase;
}

.download-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.download-table {
  width: 100%;
  min-width: 720px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 2px 2px;
  font-size: 14px;
  line-height: 1.35;
}

.download-table th,
.download-table td {
  padding: 8px 10px;
  border: 0;
  vertical-align: middle;
}

.download-table thead th {
  background: #efc568;
  color: #111;
  font-weight: 700;
  text-align: center;
}

.download-table tbody td {
  background: #e7e7e7;
}

.download-table tbody tr:nth-child(even) td {
  background: #dedede;
}

.download-table td:first-child {
  width: 48%;
}

.download-table a {
  color: #159bd7;
  text-decoration: none;
}

.download-table a:hover,
.download-table a:focus-visible {
  text-decoration: underline;
}

.download-table__action,
.download-table__action-heading {
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 760px) {
  .download-section {
    margin-top: 34px;
  }

  .download-table {
    font-size: 13px;
  }
}

/* Ajustes de fidelidade visual — v1.0.15 ------------------------------- */

/* Parágrafos editoriais seguem a cor institucional solicitada. */
p,
.rich-text p,
.entry-content p,
.page-card__body p,
.home-call__text p,
.service-heading__summary p {
  color: rgb(51, 153, 153);
}

/* Slideshow da Home: transição automática suave, sem controle Pausar. */
.home-slide {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease-in-out, visibility 0s linear 0.9s;
}

.home-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.9s ease-in-out;
}

.home-slide[aria-hidden="true"] .home-slide__link {
  pointer-events: none;
}

.home-slider__controls {
  min-height: 68px;
}

/* Destaques da Home com presença visual próxima da referência desktop. */
.home-calls.content-container {
  width: min(100%, 1080px);
  padding-inline: 1.5rem;
}

.home-calls__grid {
  gap: 3rem;
}

.home-call__media img {
  aspect-ratio: 312 / 218;
}

.home-call h2 {
  font-size: 1.22rem;
  line-height: 1.25;
}

.home-call__text {
  padding: 0.75rem 0.35rem 0;
  font-size: 1rem;
  line-height: 1.55;
}

/* Busca: ícone SVG legível em desktop e mobile. */
.search-submit {
  right: 0.35rem;
  display: grid;
  place-items: center;
}

.search-submit__icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
}

/* Ícones de Serviço sem borda/contorno decorativo adicional. */
.page-card__icon,
.service-heading__icon,
.page-card__icon img,
.service-heading__icon img {
  border: 0 !important;
  outline: 0;
  box-shadow: none;
}

/* Base visual para formulários fornecidos pelo futuro módulo funcional. */
.informatec-form,
.form-section form {
  display: grid;
  gap: 1rem;
}

.informatec-form label,
.form-section form label {
  display: grid;
  gap: 0.35rem;
  color: var(--brand-teal-dark);
  font-weight: 600;
}

.informatec-form input:not([type="checkbox"]):not([type="radio"]),
.informatec-form select,
.informatec-form textarea,
.form-section form input:not([type="checkbox"]):not([type="radio"]),
.form-section form select,
.form-section form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fff;
}

.informatec-form textarea,
.form-section form textarea {
  min-height: 140px;
  resize: vertical;
}

.informatec-form button[type="submit"],
.form-section form button[type="submit"] {
  width: fit-content;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--action-blue);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .primary-navigation.is-open {
    inset: 104px 0 0;
    padding: 0;
    background: rgba(238, 236, 236, 0.98);
  }

  .primary-navigation.is-open > .primary-menu,
  .primary-navigation.is-open > .primary-navigation__mobile-utilities {
    width: min(100%, 620px);
    margin-inline: auto;
    background: #fff;
  }

  .primary-navigation.is-open > .primary-menu {
    padding: 1.25rem var(--gutter) 0;
  }

  .primary-menu a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    font-size: 1.08rem;
  }

  .primary-menu .sub-menu {
    margin: 0 0 0.5rem;
    padding: 0 0 0 1rem;
    border-left: 2px solid rgba(0, 169, 148, 0.22);
  }

  .primary-menu .sub-menu a {
    min-height: 44px;
    padding-block: 0.6rem;
    font-size: 0.98rem;
  }

  .primary-navigation__mobile-utilities {
    gap: 1.25rem;
    margin-top: 0;
    padding: 1.5rem var(--gutter) 2rem;
  }

  .primary-navigation__mobile-utilities .language-switcher ul {
    gap: 1.2rem;
  }

  .primary-navigation__mobile-utilities .search-form {
    width: 100%;
  }

  .primary-navigation__mobile-utilities .search-field {
    min-height: 46px;
    padding-right: 3.1rem;
  }

  .primary-navigation__mobile-utilities .search-submit {
    width: 44px;
    height: 44px;
  }

  .primary-navigation__mobile-utilities .search-submit__icon {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 767px) {
  .home-calls.content-container {
    padding-inline: var(--gutter);
  }

  .home-calls__grid {
    gap: 2.25rem;
  }
}


/* Ajustes de fidelidade visual — v1.0.16 ------------------------------- */

/* Texto editorial: cor do legado em parágrafos e listas. */
p,
.rich-text p,
.entry-content p,
.page-card__body p,
.home-call__text p,
.service-heading__summary p,
.rich-text ul,
.rich-text ol,
.rich-text li,
.entry-content ul,
.entry-content ol,
.entry-content li,
.content-block ul,
.content-block ol,
.content-block li {
  color: #404040;
}

/* O texto sobre o slideshow permanece branco, inclusive quando editado como p/lista. */
.home-slide__content,
.home-slide__content p,
.home-slide__content ul,
.home-slide__content ol,
.home-slide__content li,
.home-slide__content a {
  color: #fff;
}

/* Heroes internos usam a imagem inteira, sem recorte por cover. */
.page-hero__image {
  object-fit: fill;
}

/* Ícone do cabeçalho do detalhe de serviço sem respiro interno. */
.service-heading__icon {
  padding: 0;
}

/* Faixa de localização mais alta e tipografia branca como no legado. */
.location-strip__map img,
.location-strip__address {
  min-height: 420px;
}

.location-strip__address,
.location-strip__address p,
.location-strip__address ul,
.location-strip__address ol,
.location-strip__address li,
.location-strip__address strong,
.location-strip__address em,
.location-strip__address span,
.location-strip__address h1,
.location-strip__address h2,
.location-strip__address h3,
.location-strip__address h4,
.location-strip__address h5,
.location-strip__address h6,
.location-strip__address a {
  color: #fff;
}

.location-strip__address {
  padding: clamp(2.25rem, 5vw, 4rem);
  font-size: 1.08rem;
  line-height: 1.65;
}

.location-strip__address h2,
.location-strip__address h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  text-transform: uppercase;
}

/* Suporte: o primeiro bloco usa um ícone, não uma imagem editorial de meia página. */
.support-page .content-block.has-image {
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: start;
}

.support-page .content-block__media {
  width: 140px;
  max-width: 140px;
}

.support-page .content-block__media img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.support-page .content-block--image-right .content-block__media {
  order: initial;
}

@media (max-width: 767px) {
  .location-strip__map img,
  .location-strip__address {
    min-height: 300px;
  }

  .support-page .content-block.has-image {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.25rem;
  }

  .support-page .content-block__media,
  .support-page .content-block__media img {
    width: 96px;
    max-width: 96px;
    height: 96px;
  }
}

@media (max-width: 479px) {
  .support-page .content-block.has-image {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* 1.0.18 — Contatos: aproxima a composição do legado. */
.contact-layout {
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 1fr);
  gap: 3.25rem;
  margin: 2rem 0 3.25rem;
  align-items: start;
}

.contact-layout__aside {
  align-self: start;
  padding: 1.55rem 1.75rem;
  background: #fbf4f4;
  text-align: right;
  line-height: 1.55;
}

.contact-layout__aside > :first-child { margin-top: 0; }
.contact-layout__aside > :last-child { margin-bottom: 0; }

.location-strip {
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
}

.location-strip__map img,
.location-strip__address {
  min-height: 425px;
}

.location-strip__address {
  align-content: start;
  justify-items: start;
  padding: 3.55rem 3rem 2.5rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.6;
}

.location-strip__address h2,
.location-strip__address h3 {
  margin: 0 0 .35rem;
  font-size: 1.8rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.location-strip__address p { margin: 0 0 .45rem; }

@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-layout__aside { text-align: left; }
  .location-strip { grid-template-columns: 1fr; }
  .location-strip__map img,
  .location-strip__address { min-height: 300px; }
  .location-strip__address { padding: 2rem 1.5rem; }
}

/* 1.0.19 — refinamentos de formulário e faixa de localização. */
.informatec-form input:not([type="checkbox"]):not([type="radio"]),
.informatec-form select,
.informatec-form textarea,
.form-section form input:not([type="checkbox"]):not([type="radio"]),
.form-section form select,
.form-section form textarea {
  border-radius: 9px !important;
}

.informatec-form button[type="submit"],
.form-section form button[type="submit"] {
  border-radius: 7px !important;
}

/* O mapa funciona como fundo de toda a faixa; a metade direita recebe a camada verde. */
.location-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 420px;
  overflow: hidden;
  background: transparent;
}

.location-strip__map {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.location-strip__map a,
.location-strip__map img {
  display: block;
  width: 100%;
  height: 100%;
}

.location-strip__map img {
  min-height: 100%;
  object-fit: cover;
}

.location-strip__address {
  position: relative;
  z-index: 1;
  grid-column: 2;
  min-height: 420px;
  padding: 3.4rem 3rem 2.5rem;
  align-content: start;
  justify-items: start;
  background: rgba(0, 169, 148, 0.90);
  color: #fff;
  text-align: left;
  font-family: Oxygen, sans-serif;
  font-size: 19.2px;
  line-height: 1.5;
}

.location-strip__address h2,
.location-strip__address h3 {
  width: 100%;
  margin: 0 0 .3rem;
  color: #fff;
  font-family: Oxygen, sans-serif;
  font-size: 28.8px;
  line-height: 1.3337;
  font-weight: 400;
  text-transform: uppercase;
}

.location-strip__address p {
  margin: 0 0 .35rem;
  color: #fff;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 767px) {
  .location-strip {
    grid-template-columns: 1fr;
    min-height: 600px;
  }

  .location-strip__address {
    grid-column: 1;
    align-self: end;
    min-height: 300px;
    padding: 2rem 1.5rem;
    font-size: 17px;
  }

  .location-strip__address h2,
  .location-strip__address h3 {
    font-size: 25px;
  }
}

/* 1.0.20 — imagem oficial da faixa Onde Estamos. */
.location-strip {
  background-image: url('/wp-content/uploads/2026/08/mapa_onde_estamos.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.location-strip__map-link {
  position: absolute;
  inset: 0 50% 0 0;
  z-index: 1;
  display: block;
}

.location-strip__address {
  z-index: 2;
}

@media (max-width: 767px) {
  .location-strip__map-link {
    inset: 0;
    height: 50%;
  }
}

/* 1.0.21 — tipografia da faixa Onde Estamos conforme referência fornecida. */
.location-strip__address p {
    font-family: "Oxygen", sans-serif;
    font-size: 1.2em;
    line-height: 42px;
}

.location-strip__address p strong {
    font-size: 1.5em;
    font-weight: 500;
}

/* v1.0.22 — faixa de localização: fundo do bloco de endereço transparente */
.location-strip__address {
    background: transparent;
}
