@import url(https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&display=swap);
@charset "UTF-8";
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 0px;
  color: #f6f8fb;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 0;
  cursor: pointer;
}
.btn--red {
  background: #c63741;
}
.btn--whats {
  background: #22c55e;
}
.btn--default {
  background: #1f4a7f;
}
.btn--cta {
  background: #22c55e;
}
.btn--outline {
  background: none;
  border: solid 2px #f6f8fb;
}
.btn--outline:hover {
  background-color: #f6f8fb;
}

.banner {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.banner .background {
  position: absolute;
  inset: 0;
  background: var(--banner-bg, url("/img/default/bg-banner-1.png")) right center/cover no-repeat;
  z-index: 0;
}
.banner .background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.banner .row {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.banner .breadcrumb a {
  color: #e3eaf2;
  text-decoration: none;
}
.banner .breadcrumb a:hover {
  text-decoration: underline;
}
.banner .breadcrumb a:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: #bbb;
}
.banner .title {
  font-size: 2rem;
  font-weight: 700;
}

.padding-footer {
  content: "";
  background: #f6f8fb;
  left: 0;
  right: 0;
  height: 380px;
  bottom: -380px;
  z-index: -1;
  pointer-events: none;
}

.border-debug {
  border: solid 2px red;
}

.border-debug-blue {
  border: solid 2px blue;
}

.has-error {
  border-color: red !important;
}

@media (min-width: 991px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

.container {
  max-width: 1300px;
}
.container.small {
  max-width: 1035px;
}
.container.big {
  max-width: 1600px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/*  Validação   */
.ng-invalid-required.ng-touched,
.campo-invalido {
  border-color: #dc3545 !important;
}

input,
textarea {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: #fff;
  color: #002e4e;
  padding: 10px 12px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(99, 99, 99, 0.75);
}
input::placeholder,
textarea::placeholder {
  color: rgba(99, 99, 99, 0.75);
}
input:focus,
textarea:focus {
  border: 4px solid #2192fc;
  color: #002e4e;
}

textarea {
  resize: vertical;
}

body {
  font-size: 1em;
  font-family: "Urbanist", sans-serif;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
  margin: auto;
  overflow-x: hidden;
}
body header .container {
  margin: 0 auto;
  padding: 0 16px;
}
body header .topbar {
  background: linear-gradient(180deg, #002e4e 0%, #0f456c 100%);
  color: #f6f8fb;
  font-size: 14px;
  min-height: 90px;
  display: flex;
  align-items: center;
}
body header .topbar .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 12px;
}
body header .topbar__left, body header .topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
body header .topbar__hint {
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
}
body header .topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6f8fb;
  text-decoration: none;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
body header .topbar__item:hover {
  opacity: 1;
}
body header .topbar .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 12px;
}
body header .social {
  display: inline-flex;
  gap: 10px;
}
body header .social__link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}
body header .social__link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
}
body header .navbar {
  background: #f6f8fb;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  min-height: 160px;
  top: 0;
  z-index: 80;
}
body header .navbar .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 70px;
}
body header .brand img {
  display: flex;
}
body header .search {
  width: 210px;
}
body header .search input {
  border-radius: 10px;
}
body header .search-icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
body header .nav {
  margin-left: 12px;
}
body header .nav__list {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
body header .nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 400;
}
body header .nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  background: #1f4a7f;
}
body header .nav__link:hover:after {
  transform: scaleX(1);
}
body header .nav__link.is-current {
  color: #1f4a7f;
}
body header .nav__link.is-current:after {
  transform: scaleX(1);
}
body header .nav-toggle {
  display: none;
}
body header .nav-toggle-btn {
  display: none;
  width: 40px;
  height: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
body header .nav-toggle-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1f2937;
}
@media (max-width: 992px) {
  body header .topbar .container {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 8px 16px;
  }
  body header .topbar__right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  body header .navbar .container {
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }
  body header .nav-toggle-btn {
    display: inline-flex;
  }
  body header .nav {
    order: 3;
    grid-column: 1/-1;
    width: 100%;
  }
  body header .nav__list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #f6f8fb;
    border: 1px solid #e5e7eb;
    border-radius: 0px;
    overflow: hidden;
  }
  body header .nav__link {
    padding: 14px 16px;
  }
  body header .nav__link:after {
    display: none;
  }
  body header .nav__link {
    border-bottom: 1px solid #e5e7eb;
  }
  body header .nav__list li:last-child .nav__link {
    border-bottom: 0;
  }
  body header .nav-toggle:checked ~ .nav .nav__list {
    display: flex;
  }
  body header .search {
    order: 2;
    justify-self: end;
  }
  body header .search input {
    width: 160px;
  }
}
@media (max-width: 560px) {
  body header .btn--quote {
    display: none;
  }
  body header .search {
    display: none;
  }
}
body header .icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
body header {
  /* WhatsApp */
}
body header .icon--whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.91 11.91 0 0 0 12.01 0C5.4 0 .02 5.37.02 11.98c0 2.11.55 4.17 1.6 5.99L0 24l6.2-1.6a12 12 0 0 0 5.81 1.48h.01c6.61 0 11.99-5.37 11.99-11.98 0-3.2-1.25-6.2-3.49-8.42ZM12 21.3a9.29 9.29 0 0 1-4.74-1.3l-.34-.2-3.68.95.98-3.59-.22-.37A9.25 9.25 0 0 1 2.7 12 9.3 9.3 0 1 1 12 21.3Zm5.4-6.95c-.3-.15-1.78-.88-2.05-.98-.27-.1-.47-.15-.67.15-.2.3-.77.98-.95 1.18-.18.2-.35.23-.64.08-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.48-1.74-1.65-2.04-.17-.3-.02-.47.13-.62.14-.14.3-.35.46-.53.15-.18.2-.3.3-.5.1-.2.05-.38-.02-.53-.08-.15-.67-1.62-.92-2.22-.24-.58-.5-.5-.67-.5h-.57c-.2 0-.52.08-.8.38-.27.3-1.05 1.03-1.05 2.5 0 1.47 1.07 2.9 1.22 3.1.15.2 2.12 3.25 5.12 4.43.72.31 1.28.5 1.72.64.72.23 1.38.2 1.9.12.58-.09 1.78-.73 2.04-1.43.25-.7.25-1.3.17-1.43-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}
body header {
  /* Phone */
}
body header .icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8a15.53 15.53 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1 .4 2 .6 3.1.6.7 0 1.3.6 1.3 1.3V20c0 .7-.6 1.3-1.3 1.3C9.8 21.3 2.7 14.2 2.7 5.3 2.7 4.6 3.3 4 4 4h2.1c.7 0 1.3.6 1.3 1.3 0 1.1.2 2.1.6 3.1.1.4 0 .9-.3 1.2l-2.1 2.2Z'/%3E%3C/svg%3E");
}
body header {
  /* Search */
}
body header .icon--search {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 18a8 8 0 1 1 5.3-14.1A8 8 0 0 1 10 18zm11.7 2.3-5.3-5.3' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
body header {
  /* Instagram / Facebook / YouTube – ícones simples */
}
body header .icon--ig {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm6.5-.8a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E");
}
body header .icon--fb {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 9h3V6h-3c-1.7 0-3 1.3-3 3v2H7v3h3v7h3v-7h3l1-3h-4V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
}
body header .icon--yt {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 7.5s-.2-1.7-.8-2.5c-.7-.8-1.5-.8-1.9-.9C17.7 3.8 12 3.8 12 3.8h0s-5.7 0-8.8.3c-.4 0-1.2 0-1.9.9-.6.8-.8 2.5-.8 2.5S0 9.5 0 11.5v1c0 2 .2 4 0 4s.2 1.7.8 2.5c.7.8 1.7.8 2.1.9 1.5.1 6.7.3 9.1.3s7.6-.1 9.1-.3c.4 0 1.4 0 2.1-.9.6-.8.8-2.5.8-2.5s.2-2 .2-4v-1c0-2-.2-4-.2-4ZM9.6 14.9V8.9l6.1 3-6.1 3Z'/%3E%3C/svg%3E");
}
body main {
  overflow: hidden;
}
body main .hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
body main .hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
body main .hero .hero-bg img,
body main .hero .hero-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
body main .hero .container {
  position: relative;
  z-index: 2;
}
body main .hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 992px) {
  body main .hero .hero-title {
    font-size: 48px;
  }
}
body main .hero .hero-brand {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  text-align: right;
  font-size: 0.85rem;
  opacity: 0.9;
}
body main .hero .hero-brand img {
  max-height: 32px;
}
body main .info {
  /* bloco branco */
}
body main .info .info-top {
  background: #fff;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 36px);
  margin-top: clamp(-30px, -6vw, -60px);
}
body main .info .info-title {
  color: #112233;
  font-weight: 400;
  line-height: 1.25;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}
body main .info .info-title strong {
  font-weight: 700;
  color: #1f4a7f;
}
body main .info .info-lead {
  color: #334155;
  margin: 10px 0 18px;
}
body main .info {
  /* fotos sobrepostas */
}
body main .info .info-photos {
  position: relative;
  width: min(520px, 100%);
}
body main .info .info-photos .photo-main {
  width: 100%;
  border-radius: 18px;
  display: block;
}
body main .info .info-photos .photo-badge {
  border: #fff 10px solid;
  position: absolute;
  right: -14px;
  bottom: -16px;
  width: 48%;
  border-radius: 40px;
}
body main .info {
  /* faixa azul */
}
body main .info .info-band {
  background: #0f456c url("/img/default/bg-info.png") center/cover no-repeat;
  color: #e8eef4;
  margin-top: clamp(10px, 2.2vw, 20px);
}
body main .info .feature-ico {
  inline-size: 100px;
  aspect-ratio: 1/1;
  flex: 0 0 100px;
  line-height: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f6f8fb;
}
body main .info .feature-ico svg {
  width: 56%;
  height: 56%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .info .feature-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin: 0;
}
body main .info .feature-text {
  margin: 6px 0 0;
  color: #e3ebf2;
}
@media (max-width: 992px) {
  body main .info .info-photos .photo-badge {
    right: -8px;
    bottom: -10px;
  }
}
body main .segments {
  position: relative;
}
body main .segments .segments-subtext {
  color: #002e4e;
  font-size: 0.95rem;
}
body main .segments::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
}
body main .segments .segments-track {
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* esconde barra nativa */
  scrollbar-width: none;
}
body main .segments .segments-track::-webkit-scrollbar {
  display: none;
}
body main .segments .segment-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
}
body main .segments .segment-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
body main .segments .segment-card .segment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 80%);
  z-index: 1;
}
body main .segments .segment-card .segment-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
body main .segments .segment-card .segment-title {
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  font-size: 1.15rem;
}
body main .segments .segment-card .segment-btn {
  align-self: flex-start;
  border-radius: 10px;
  padding: 0.4rem 0.9rem;
}
body main .segments {
  /* setas (controlam scroll via JS simples – opcional) */
}
body main .segments .segments-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 3;
  backdrop-filter: blur(2px);
  cursor: pointer;
}
body main .segments .segments-prev {
  left: 8px;
}
body main .segments .segments-next {
  right: 8px;
}
body main .segments {
  /* responsivo */
}
@media (min-width: 992px) {
  body main .segments .segments-track {
    grid-auto-columns: 1fr;
  }
  body main .segments .segment-card {
    aspect-ratio: 4/5;
  }
}
body main .download-catalog {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #c63741 0%, #d6334c 100%);
}
body main .download-catalog .background {
  position: absolute;
  inset: 0;
  background: url("/img/default/vector.png") right center/35% no-repeat;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
body main .download-catalog > .container {
  position: relative;
  z-index: 1;
}
body main .download-catalog .contact-form {
  display: grid;
  gap: 12px;
}
body main .download-catalog .contact-form .form-row {
  margin: 0;
}
body main .download-catalog .download-icon {
  margin-top: 10px;
}
body main .download-catalog .form-label {
  font-weight: 600;
  font-size: 0.875rem;
}
body main .section-proeng {
  position: relative;
  background: #002e4e;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}
body main .section-proeng .background {
  position: absolute;
  inset: 0;
  background-image: url("/img/default/vector.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50%;
  pointer-events: none;
  opacity: 0.1;
  z-index: 0;
}
body main .section-proeng > * {
  position: relative;
  z-index: 10;
}
body main .section-proeng .text-block {
  flex: 1;
}
body main .section-proeng .text-block .logo {
  max-width: 500px;
  margin-bottom: 20px;
}
body main .section-proeng .text-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
body main .section-proeng .text-block p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #e3ebf2;
}
body main .section-proeng .text-block ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}
body main .section-proeng .text-block ul li {
  margin-bottom: 10px;
  position: relative;
  color: #e3ebf2;
}
body main .section-proeng .text-block ul li::before {
  content: "✔";
  color: #c63741;
  position: absolute;
  left: -20px;
}
body main .section-proeng .text-block .buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
body main .section-proeng .image-block {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
  border-radius: 10px;
}
body main .section-proeng .image-block .main-img {
  flex: 1;
}
body main .section-proeng .image-block .main-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}
body main .section-proeng .image-block .thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body main .section-proeng .image-block .thumbs img {
  width: 100px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
body main .section-proeng .image-block .thumbs img:hover {
  transform: scale(1.05);
}
body main .section-payments {
  padding: 32px 0;
  background: #ffffff;
}
body main .section-payments .payments-card {
  padding: 24px 18px 32px;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
}
body main .section-payments .payments-title {
  text-align: center;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
  color: #0b3a63;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}
body main .section-payments .payments-grid {
  row-gap: 18px;
  margin-bottom: 18px;
}
body main .section-payments .payments-grid .payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
body main .section-payments .payments-grid .payment-item .payment-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0b3a63;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
body main .section-payments .payments-grid .payment-item .payment-ico img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
body main .section-payments .payments-grid .payment-item .payment-label {
  font-size: 0.95rem;
  color: #08324f;
}
body main .section-payments .payments-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}
body main .section-contact {
  background: #fff;
  padding: clamp(28px, 4vw, 48px) 0;
}
body main .section-contact .container {
  max-width: 1180px;
}
body main .section-contact .contact-wrap {
  position: relative;
  display: flex;
  border-radius: 20px;
  padding-bottom: 50px;
  background: #002e4e;
}
@media (max-width: 992px) {
  body main .section-contact .contact-wrap {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 24px;
  }
}
body main .section-contact .contact-figure {
  position: relative;
  padding: 20px;
  background: #fff;
  border-bottom-right-radius: 300px;
  border-top: none;
  border-left: none;
  border-right: 20px solid #c63741;
  border-bottom: 20px solid #c63741;
}
body main .section-contact .contact-figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 500px;
  max-width: 520px;
}
body main .section-contact .contact-figure .figure-caption {
  border-left: 5px solid #002e4e;
  margin-top: 8px;
  padding-left: 10px;
  font-size: 0.95rem;
  color: #002e4e;
}
body main .section-contact .contact-card {
  margin-top: 20px;
  color: #fff;
  padding: clamp(18px, 3vw, 28px);
}
body main .section-contact .contact-title {
  margin: 0 0 6px 0;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
}
body main .section-contact .contact-sub {
  margin: 0 0 16px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
body main .section-contact .contact-form .form-row {
  margin-bottom: 10px;
}
body main .section-contact .contact-form .form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 576px) {
  body main .section-contact .contact-form .form-row.two {
    grid-template-columns: 1fr;
  }
}
body main .section-contact .contact-form .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
body main .section-why {
  padding: clamp(28px, 6vw, 64px) 0;
  background: #fff;
}
body main .section-why .why-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #002e4e;
  margin: 0 0 18px;
}
body main .section-why .why-title span {
  color: #0f456c;
}
body main .section-why .why-item {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: start;
  gap: 12px 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 32, 58, 0.08);
}
body main .section-why .why-item:last-child {
  border-bottom: 0;
}
body main .section-why .why-item .why-ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
}
body main .section-why .why-item .why-ico img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .section-why .why-item .why-text h3 {
  margin: 0 0 4px;
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  font-weight: 800;
  font-size: 24px;
  color: #0b2d4a;
}
body main .section-why .why-item .why-text h3 small {
  font-weight: 800;
  color: #0f456c;
}
body main .section-why .why-item .why-text p {
  margin: 0;
  color: #3b5265;
  line-height: 1.55;
  font-size: 0.96rem;
}
body main .section-why .why-photo {
  border-radius: 22px;
  overflow: hidden;
}
body main .section-why .why-photo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .section-steel {
  position: relative;
  background-image: url("/img/default/bg-quality-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(28px, 6vw, 64px) 0;
}
body main .section-steel .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}
body main .section-steel .steel-head {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 26px);
}
body main .section-steel .steel-head h3 {
  margin: 0;
  line-height: 1.2;
  color: #f6f8fb;
  font-weight: 800;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
}
body main .section-steel .steel-head h3 span {
  font-weight: 600;
  opacity: 0.95;
}
body main .section-steel .steel-head h3 strong {
  color: #fff;
}
body main .section-steel .steel-rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px) 1fr;
  grid-template-rows: auto auto;
  gap: 18px 24px;
  align-items: center;
  margin-bottom: clamp(18px, 3vw, 26px);
}
body main .section-steel .steel-rail .line {
  position: absolute;
  height: 2px;
  background: #fff;
  z-index: -1;
}
body main .section-steel .steel-rail .line-1 {
  top: 50%;
  left: 100px;
  width: 900px;
}
body main .section-steel .steel-rail .line-2 {
  top: 380px;
  left: 50%;
  width: 428px;
}
body main .section-steel .steel-rail .line-3 {
  top: 200px;
  right: 150px;
  height: 182px;
  width: 2px;
}
body main .section-steel .steel-media {
  border-radius: 14px;
}
body main .section-steel .steel-media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 5;
}
body main .section-steel .steel-media--left {
  grid-column: 1;
  grid-row: 1/span 2;
}
body main .section-steel .steel-media--right {
  grid-column: 3;
  grid-row: 2/span 2;
}
body main .section-steel .steel-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 520px;
  position: relative;
  padding-left: 16px;
}
body main .section-steel .steel-copy--top {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
  margin-top: 20px;
}
body main .section-steel .steel-copy--bottom {
  grid-column: 2;
  grid-row: 3;
  text-align: center;
  padding-left: 0;
  margin-bottom: 20px;
}
body main .section-steel .steel-copy--bottom::before {
  display: none;
}
body main .section-steel .steel-cta {
  display: flex;
  justify-content: center;
}
body main .section-steel {
  /* responsivo */
}
@media (max-width: 992px) {
  body main .section-steel .steel-rail {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }
  body main .section-steel .steel-rail::before {
    display: none;
  }
  body main .section-steel .steel-media--left {
    grid-column: 1;
    grid-row: auto;
  }
  body main .section-steel .steel-copy--top {
    grid-column: 1;
    grid-row: auto;
  }
  body main .section-steel .steel-media--right {
    grid-column: 1;
    grid-row: auto;
  }
  body main .section-steel .steel-copy--bottom {
    grid-column: 1;
    grid-row: auto;
  }
  body main .section-steel .line {
    display: none;
  }
}
body main .clients-title {
  font-size: 42px;
  color: #002e4e;
}
body main .section-infos {
  background: #002e4e;
  padding: clamp(28px, 5vw, 64px) 0;
}
body main .section-infos .infos-head {
  text-align: center;
  margin-bottom: clamp(18px, 3vw, 32px);
}
body main .section-infos .infos-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
body main .section-infos .infos-grid .info-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
body main .section-infos .infos-grid .info-card .info-thumb {
  width: 100%;
}
body main .section-infos .infos-grid .info-card .info-thumb img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body main .section-infos .infos-grid .info-card .info-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body main .section-infos .infos-grid .info-card .info-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #002e4e;
}
body main .section-infos .infos-grid .info-card .info-body p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  margin: 0 0 12px;
  flex-grow: 1;
}
body main .section-infos .infos-grid .info-card .info-body .info-link {
  font-weight: 600;
  color: #c63741;
  text-decoration: none;
  align-self: flex-start;
}
body main .section-infos .infos-grid .info-card .info-body .info-link:hover {
  text-decoration: underline;
}
body main .section-infos .infos-cta {
  margin-top: clamp(22px, 4vw, 40px);
  text-align: center;
}
body main .section-infos .infos-cta .btn-infos {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}
body main .section-infos .infos-cta .btn-infos:hover {
  background: rgba(255, 255, 255, 0.1);
}
body main .proeng-faq {
  position: relative;
  min-height: 1300px;
}
body main .proeng-faq .background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("/img/default/bg-faq.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
body main .faq-title {
  font-weight: 400;
  font-size: 48px;
  color: #002e4e;
}
body main .faq-item {
  background: #f6f8fb;
  margin-bottom: 0.6rem;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(2, 2, 2, 0.2);
}
body main .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  font-weight: 700;
  color: #2e3b47;
  position: relative;
}
body main .faq-item summary .ico {
  width: 20px;
  height: 20px;
  color: #f6f8fb;
  background: #002e4e;
  border-radius: 999px;
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
body main .faq-item summary::-webkit-details-marker {
  display: none;
}
body main .faq-item summary:hover {
  background: #eef3f7;
}
body main .faq-item .faq-content {
  padding: 0.8rem 1rem 1rem;
  color: #516171;
  line-height: 1.5;
  border-top: 1px solid #e6e9ee;
  background: #fff;
}
body main .faq-item[open] {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
body main .faq-item[open] summary .ico {
  transform: rotate(180deg);
}
body main .faq-item summary:focus {
  outline: 3px solid rgba(0, 46, 78, 0.35);
  outline-offset: 2px;
}
body main {
  /* CARD CONTATO */
}
body main .faq-contact {
  background: #002e4e;
  color: #fff;
  padding-top: 100px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 100px;
  border-radius: 20px;
  box-shadow: 15px 10px 0px #c63741;
}
body main .faq-contact .brand {
  margin-bottom: 10px;
}
body main .faq-contact .brand img {
  max-width: 190px;
  height: auto;
}
body main .faq-contact .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body main .faq-contact .contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
body main .faq-contact .contact-list .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  background: #fff;
  line-height: 0;
}
body main .faq-contact .contact-list strong {
  display: block;
  font-weight: 800;
}
body main .faq-contact .contact-list a,
body main .faq-contact .contact-list span {
  color: #e8f1f8;
  text-decoration: none;
}
body main .faq-contact .contact-list a:hover {
  text-decoration: underline;
}
body main {
  /* SOCIAL STRIP */
}
body main .faq-social {
  margin-top: clamp(20px, 4vw, 36px);
  background: #002e4e;
  color: #fff;
  border-radius: 12px;
  padding: 20px 0;
  box-shadow: 0 10px 24px rgba(11, 48, 77, 0.2);
}
body main .faq-social .social-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
body main .faq-social .social-head .ico {
  font-size: 28px;
  line-height: 1;
}
body main .faq-social .social-head strong {
  display: block;
  line-height: 1.2;
}
body main .faq-social .social-head span {
  font-size: 0.95rem;
  opacity: 0.9;
}
body main .faq-social .social-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
body main .faq-social .social-slider img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575.98px) {
  body main .faq-item summary {
    padding: 0.75rem 0.9rem;
  }
  body main .faq-item .faq-content {
    padding: 0.7rem 0.9rem 1rem;
  }
}
body main .about-page {
  position: relative;
  background: #002e4e;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
  z-index: -2;
}
body main .about-page .background {
  position: absolute;
  inset: 0;
  background-image: url("/img/default/vector.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 90%;
  opacity: 0.05;
  z-index: -1;
}
body main .about-page > * {
  position: relative;
  z-index: 10;
}
body main .about-page .thumb-230 {
  width: 230px;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  margin-inline: auto;
}
body main .about-page .thumb-230 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body main {
  /* ajuste as cores para suas variáveis se tiver ($primary, $red-300, etc.) */
}
body main .mv-section {
  background: #f7fafc;
}
body main .mv-card {
  background: #fff;
  border: 1.5px solid #c63741;
  border-radius: 14px;
  padding: 28px 18px 22px;
  box-shadow: 0 8px 22px rgba(10, 40, 80, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
body main .mv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 40, 80, 0.09);
}
body main .mv-card__icon {
  width: 65px;
  height: 65px;
  margin-inline: auto;
  margin-top: -44px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: #002e4e;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(13, 59, 95, 0.25);
}
body main .mv-card__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
body main .mv-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #002e4e;
  margin-bottom: 0.35rem;
}
body main .mv-card__text {
  color: #5b6b7a;
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0;
}
body main .mv-card__list {
  text-align: left;
  margin: 0.25rem auto 0;
  color: #5b6b7a;
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 360px;
}
body main .mv-card__list li {
  margin-bottom: 0.25rem;
}
body main {
  /* responsivo fino */
}
@media (max-width: 575.98px) {
  body main .mv-card {
    padding: 24px 16px 18px;
  }
  body main .mv-card__icon {
    width: 52px;
    height: 52px;
    margin-top: -40px;
  }
}
body main .clients {
  background: #f6f8fb;
  color: #0f456c;
}
@media (max-width: 768px) {
  body main .showcase__intro {
    padding: 10px 14px;
  }
  body main .showcase__intro p {
    font-size: 0.95rem;
  }
}
body main .gallery-marquee {
  width: 100%;
  overflow: hidden;
  background: #f5f8fc;
}
body main .gallery-marquee .container {
  margin: 0 auto;
  padding: 0 16px;
}
body main .gallery-marquee .container .title {
  color: #002e4e;
  margin-bottom: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
}
body main .gallery-marquee .marquee {
  width: 100%;
  position: relative;
}
body main .gallery-marquee .marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  margin: 0;
  list-style: none;
  animation: marquee-scroll 20s linear infinite;
}
body main .gallery-marquee .marquee__track:hover {
  animation-play-state: paused;
}
body main .gallery-marquee .marquee__item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 40, 80, 0.08);
  background: #e9f1f9;
}
body main .gallery-marquee .marquee__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (prefers-reduced-motion: reduce) {
  body main .gallery-marquee .marquee__track {
    animation: none;
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
body main .segments .segments__sidebar {
  position: sticky;
  top: 88px;
  overflow: hidden;
  border: none;
}
body main .segments .segments__sidebar .list-group-item {
  padding: 0.75rem 0.9rem;
  height: 50px;
  margin-bottom: 5px;
  font-weight: 500;
  border: none;
  border-left: 3px solid rgba(255, 87, 87, 0.3098039216);
}
body main .segments .segments__sidebar .list-group-item.active {
  background: none;
  color: #002e4e;
  font-weight: 800;
  border-left-color: #c63741;
}
body main .segments .segments__sidebar .list-group-item:hover:not(.active) {
  background: none;
}
body main .segments .segments__content {
  border: none;
}
body main .segments .segments__content .card-body img {
  box-shadow: none;
  border: none;
}
body main {
  /* Cores do tema (ajuste para suas variáveis) */
}
body main .services h2 {
  font-weight: 800;
  color: #0d4a7a;
}
body main .services .srv-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(10, 40, 80, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body main .services .srv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 40, 80, 0.1);
}
body main .services .srv-card__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
body main .services .srv-card__media img {
  display: block;
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .services .srv-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0d4a7a;
  margin: 0.25rem 0 0.35rem;
}
body main .services .srv-card__text {
  color: #495057;
  margin: 0 0 0.25rem;
  line-height: 1.45;
  font-size: 0.96rem;
}
body main .services .srv-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: #495057;
}
body main .services .srv-card__list li {
  margin-bottom: 0.25rem;
}
body main {
  /* Responsivo fino */
}
@media (max-width: 576px) {
  body main .services .srv-card__media img {
    height: 160px;
  }
}
body main .proeng {
  position: relative;
  background: #062c4d;
  color: #fff;
  padding: 60px 0;
  overflow: hidden;
}
body main .proeng .background {
  position: absolute;
  inset: 0;
  background-color: #c63741;
  background-image: url("/img/default/vector.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto;
  opacity: 0.1;
}
body main .proeng > * {
  position: relative;
  z-index: 10;
}
body main .proeng .container .text-block .logo {
  max-width: 500px;
  margin-bottom: 20px;
}
body main .proeng .container .text-block h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
body main .proeng .container .text-block p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #e3ebf2;
}
body main .proeng .container .text-block ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}
body main .proeng .container .text-block ul li {
  margin-bottom: 10px;
  position: relative;
  color: #e3ebf2;
}
body main .proeng .container .text-block ul li::before {
  content: "✔";
  color: #c63741;
  position: absolute;
  left: -20px;
}
body main .proeng .container .text-block .buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
body main .proeng .container .about-figure {
  position: relative;
  padding: 20px;
  background: #fff;
  border-bottom-right-radius: 300px;
  border-top: none;
  border-left: none;
  border-right: 20px solid #c63741;
  border-bottom: 20px solid #c63741;
}
body main .proeng .container .about-figure img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 500px;
  max-width: 520px;
}
body main .proeng .container .about-figure .figure-caption {
  border-left: 5px solid #002e4e;
  margin-top: 8px;
  padding-left: 10px;
  font-size: 0.95rem;
  color: #002e4e;
}
body main .informativos {
  background: #f6f8fb;
  /* filtros */
}
body main .informativos__filters {
  display: flex;
  justify-content: center;
}
body main .informativos .nav-link {
  background: none;
  padding: 0.35rem 0.75rem;
  font-size: 18px;
  color: #002e4e;
}
body main .informativos .nav-link.active {
  color: #002e4e;
  background: none;
  font-weight: 800;
}
body main .informativos {
  /* destaque */
}
body main .informativos .inf-hero {
  border-radius: 16px;
  overflow: hidden;
}
body main .informativos .inf-hero .object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
body main .informativos .inf-hero .card-body a {
  color: #c63741;
}
body main .informativos .inf-hero .card-title {
  font-weight: 800;
}
body main .informativos {
  /* cards */
}
body main .informativos .inf-card {
  border-radius: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
body main .informativos .inf-card .ratio {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
body main .informativos .inf-card .object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
body main .informativos .inf-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #103b5f;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
body main .informativos .inf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 59, 95, 0.12);
}
body main .informativos .inf-card a {
  color: #c63741;
}
body main .informativos {
  /* paginação estilo “bolinhas” */
}
body main .informativos .inf-pagination .page-link {
  width: 28px;
  height: 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #d5e2ef;
  background: #fff;
  color: #0d4370;
}
body main .informativos .inf-pagination .page-item.active .page-link {
  background: #0d4370;
  color: #fff;
  border-color: #0d4370;
}
body main .side-articles {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(10, 40, 80, 0.06);
  padding: 10px;
  width: 100%;
  max-width: 280px;
}
body main .side-articles__search {
  position: relative;
  margin-bottom: 8px;
}
body main .side-articles__search .form-control {
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e3e9f1;
  padding-right: 38px;
  padding-left: 14px;
  box-shadow: none;
}
body main .side-articles__search i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #7b8a9a;
  pointer-events: none;
}
body main .side-articles__label {
  font-size: 0.9rem;
  color: #6b7b8c;
  margin: 6px 6px 8px;
}
body main .side-articles__body {
  max-height: 340px;
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
body main .side-articles__body::-webkit-scrollbar {
  width: 6px;
}
body main .side-articles__body::-webkit-scrollbar-thumb {
  background: #d7e0ea;
  border-radius: 6px;
}
body main .side-articles__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 8px;
  padding: 9px 8px;
  border-radius: 10px;
}
body main .side-articles__item:hover {
  background: #f6f9fc;
}
body main .side-articles__item .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #002e4e;
  display: grid;
  place-items: center;
}
body main .side-articles__item .dot svg {
  height: auto;
  display: block;
}
body main .side-articles__item a {
  font-size: 0.95rem;
  color: #0f3b5f;
  text-decoration: none;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body main {
  /* Paleta: troque por suas variáveis ($blue-900, $red, etc.) */
}
body main .careers {
  background-color: #f6f8fb;
}
body main .careers .fw-800 {
  color: #002e4e;
  font-weight: 800;
}
body main .careers__card {
  background: #002e4e;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(4, 22, 35, 0.35);
  color: #fff;
  position: relative;
}
body main .careers__logo {
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
body main .careers__image {
  border-radius: 14px;
  height: 600px;
  box-shadow: 15px 15px 0px #c63741;
  overflow: hidden;
}
body main .careers__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body main .form-light .form-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
body main .form-light .text-light-70 {
  color: rgba(255, 255, 255, 0.7);
}
body main {
  /* Responsivo */
}
@media (max-width: 991.98px) {
  body main .careers__card {
    padding: 22px !important;
  }
}
body footer .site-footer {
  background: #002e4e;
  position: relative;
}
body footer .site-footer .map-footer {
  position: relative;
  z-index: 5;
  max-width: 980px;
  margin: 0 auto 50px;
  transform: translateY(-300px);
  text-align: center;
}
body footer .site-footer .footer-newsletter {
  margin-top: -300px;
}
body footer .site-footer .footer-newsletter .text-newsletter {
  font-size: 20px;
}
body footer .site-footer .footer-newsletter .nl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #d9d9d9;
  position: relative;
}
body footer .site-footer .footer-newsletter .nl-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 4h20v16H2V4Zm10 7L3.5 6h17L12 11Z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.9;
}
body footer .site-footer .footer-newsletter .footer-form .form-control {
  border-radius: 10px;
  background: rgb(196, 196, 196);
  border: 0;
  color: #002e4e;
}
body footer .site-footer .footer-newsletter .footer-form .form-control::-moz-placeholder {
  color: rgb(27, 27, 27);
}
body footer .site-footer .footer-newsletter .footer-form .form-control::placeholder {
  color: rgb(27, 27, 27);
}
body footer .site-footer .footer-newsletter .footer-form .form-control:focus {
  background: rgba(255, 255, 255, 0.897);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
body footer .site-footer .footer-newsletter .nl-send {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg fill='white' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 21 23 12 2 3v7l15 2-15 2v7Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
body footer .site-footer {
  /* --- Principal --- */
}
body footer .site-footer .footer-main {
  background: #002e4e;
  color: #f6f8fb;
}
body footer .site-footer .footer-main .footer-logo {
  width: 100%;
}
body footer .site-footer .footer-main .footer-infos li {
  display: flex;
  gap: 0.5rem;
  margin: 0.35rem 0;
}
body footer .site-footer .footer-main .footer-infos li a {
  color: #f6f8fb;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body footer .site-footer .footer-main .fi-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  margin-top: 0.55rem;
  flex: 0 0 6px;
}
body footer .site-footer .footer-main .footer-nav .nav-link {
  color: #e9edf2;
  font-weight: 400;
  padding: 0.25rem 10px;
  border-right: rgba(236, 55, 79, 0.3098039216) 1px solid;
  position: relative;
  text-decoration: none;
}
body footer .site-footer .footer-main .footer-nav li:last-child .nav-link {
  border-right: none;
}
body footer .site-footer .footer-main .footer-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.2s ease;
}
body footer .site-footer .footer-main .footer-nav .nav-link:hover {
  color: #fff;
}
body footer .site-footer .footer-main .footer-nav .nav-link:hover::after {
  transform: scaleX(1);
}
body footer .site-footer .footer-main .social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}
body footer .site-footer .footer-main .social:hover {
  background: rgba(255, 255, 255, 0.22);
}
body footer .site-footer .footer-main .ico-ig,
body footer .site-footer .footer-main .ico-fb,
body footer .site-footer .footer-main .ico-yt {
  width: 18px;
  height: 18px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
body footer .site-footer .footer-main .ico-ig {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10Zm6.5-.8a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'/%3E%3C/svg%3E");
}
body footer .site-footer .footer-main .ico-fb {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 9h3V6h-3c-1.7 0-3 1.3-3 3v2H7v3h3v7h3v-7h3l1-3h-4V9c0-.6.4-1 1-1Z'/%3E%3C/svg%3E");
}
body footer .site-footer .footer-main .ico-yt {
  background-image: url("data:image/svg+xml,%3Csvg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.5 7.5s-.2-1.7-.8-2.5c-.7-.8-1.5-.8-1.9-.9C17.7 3.8 12 3.8 12 3.8s-5.7 0-8.8.3c-.4 0-1.2 0-1.9.9-.6.8-.8 2.5-.8 2.5S0 9.5 0 11.5v1c0 2 .2 4 0 4s.2 1.7.8 2.5c.7.8 1.7.8 2.1.9 1.5.1 6.7.3 9.1.3s7.6-.1 9.1-.3c.4 0 1.4 0 2.1-.9.6-.8.8-2.5.8-2.5s.2-2 .2-4v-1c0-2-.2-4-.2-4ZM9.6 14.9V8.9l6.1 3-6.1 3Z'/%3E%3C/svg%3E");
}
body footer .site-footer .footer-main .footer-seals img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
body footer .site-footer {
  /* --- Legal --- */
}
body footer .site-footer .footer-legal {
  background: #002e4e;
  color: #f6f8fb;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
body footer .site-footer .footer-legal a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
body footer .site-footer {
  /* --- Botão flutuante (opcional) --- */
}
body footer .site-footer .float-cta {
  display: none;
  position: fixed;
  right: 12px;
  bottom: 1%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #ec3750;
  color: #fff;
  padding: 10px 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}
