:root {
  color-scheme: light;
  --blue: #183c86;
  --blue-dark: #102a60;
  --red: #c3191f;
  --red-dark: #9f1016;
  --orange: #f0a11b;
  --white: #ffffff;
  --text: #202020;
  --muted: #666666;
  --line: #e5e5e5;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --container: min(2100px, calc(100% - 40px));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  padding-top: 86px;
}

img {
  max-width: 100%;
  display: block;
}

.mobile-only-selo {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding-inline: 16px;

}

.section {
  padding: 0px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.left {
  margin-top: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.section.expertise .section-heading {
  margin-top: 10rem;
}

.section-heading {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.section-heading.left h2 {
  font-size: 3rem;
  line-height: 1.2;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
}

.section-heading.left h2 strong {
  color: #7a7a7a;
  font-weight: 800;
}

.section-heading.left p {
  width: 100%;
  margin-left: 115px;
  font-size: 1.15rem;
  color: #7a7a7a;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading p {
  margin-top: -15px;
  width: 100%;
  margin-left: 115px;
  font-size: 2.15rem;
  color: #7a7a7a;
  font-weight: 500;
  text-transform: uppercase;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-accent {
  height: 100px;
  font-size: 1.3rem;
  background: var(--orange);
  color: var(--white);
}

.btn-accent:hover {
  filter: brightness(0.95);
}

.btn-full {
  margin-left: -4rem;
  margin-top: 2rem;
  width: 1030px;
  border-radius: 5px 5px 5px 5px;
  height: 110px;
  font-size: 2rem;
  font-weight: 500;
  background: #B01A1C;
}

/* HEADER */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header::before {
  display: none !important;
}

.nav-wrapper {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-wrapper h1,
.nav-h1-replacement {
  font-size: 0.5rem;
  margin-left: -18.5rem;
  margin-top: 5.5rem;
  margin-bottom: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-image {
  width: 300px;
  height: auto;
}

.brand-logo {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -1px;
}

.brand-logo span {
  color: var(--red);
}

.brand small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav {
  margin-left: -25rem;
  display: flex;
  align-items: center;
  gap: 70px;
}

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

.nav a {
  position: relative;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2e2e2e;
}

.nav .divider {
  width: 7px;
  /* Espessura da barra */
  height: 35px;
  /* Altura da barra */
  background: #B01A1C;
  transform: rotate(10deg);
}

.nav a:hover {
  color: var(--red);
  /* Cor do link ao passar o mouse */
}

.nav .nav-home {
  margin-left: 20rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.lang-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.lang-btn img {
  width: 40px;
  height: 25px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue);
  margin: 5px auto;
  border-radius: 999px;
}

.hero {
  width: 100%;
  max-width: 100vw;
  position: relative;
  min-height: 800px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../img/opt/background6.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #6e84b1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 45, 110, 0.18);
  z-index: 1;
}

.hero-shape,
.hero-shape-red,
.hero-shape-blue {
  display: none !important;
}

.hero-overlay-circle {
  position: absolute;
  right: 4%;
  top: 14%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(520px, 720px) 1fr;
  gap: 72px;
  align-items: center;
  padding: 70px 0;
}

.hero-logo,
.hero-subtitle {
  display: none;
}

.hero-logo-image {
  width: 460px;
  height: auto;
  margin-bottom: 18px;
}

.hero-text {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 15rem;
}

.hero-text h1 {
  width: 100%;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.3;
  font-weight: 600;
  max-width: 900px;
  margin-bottom: 0;
}

.hero-text h1 span {
  color: rgb(230, 0, 0);
}

.hero-text p,
.hero-actions {
  display: none;
}

.hero-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-image {
  max-width: 1200px;
  height: auto;
  object-fit: contain;
}

/* Fallback bloco antigo */
.hero-devices {
  position: relative;
  min-height: 470px;
}

.device {
  position: absolute;
  background: #101010;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.device .screen {
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f4f4, #dcdcdc);
}

.screen-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: #5d5d5d;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(24, 60, 134, 0.12), rgba(195, 25, 31, 0.08)),
    repeating-linear-gradient(45deg,
      #ececec,
      #ececec 10px,
      #e5e5e5 10px,
      #e5e5e5 20px);
}

.screen-placeholder.small {
  font-size: 0.72rem;
  line-height: 1.2;
}

.laptop {
  width: min(100%, 520px);
  aspect-ratio: 16 / 10;
  left: 0;
  bottom: 18px;
}

.laptop::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -16px;
  height: 22px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #e6e6e6, #b7b7b7);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.15);
}

.tablet {
  width: 180px;
  aspect-ratio: 3 / 4;
  right: 18px;
  bottom: 82px;
}

.mobile {
  width: 86px;
  aspect-ratio: 9 / 18;
  right: 145px;
  bottom: 52px;
  border-radius: 16px;
}

.about-image {
  justify-self: center;
  margin-left: -15rem;
  margin-top: -2rem;
  max-width: 162rem;
  display: block;
}

.about-video-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 420px;
  /* aumenta a altura */
}

/* vídeo ocupa toda a área */
.about-video {
  width: 100%;
  display: block;
  object-fit: cover;
  /* evita ficar achatado */
  cursor: pointer;
}

/* camada escura quando pausado */
.about-video-wrapper.paused::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* botão play */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 124px;
  height: 124px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* triângulo */
.video-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 34px solid #c5161d;
}

/* escondido quando estiver tocando */
.about-video-wrapper.playing .video-play-button {
  display: none;
}

.about-grid {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 40px;
}

.about-text {
  justify-self: center;
  width: 33%;
  margin-left: -70rem;
  margin-top: 5rem;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}

.icones {
  max-width: 900px;
  margin-left: 68rem;
  margin-top: -49rem;
}

.insumos {
  font-size: 1.5rem;
  margin-left: 68.5rem;
  margin-bottom: 18rem;
  margin-top: -27rem;
}

.fornecedor {
  font-size: 1.5rem;
  margin-left: 89.8rem;
  margin-bottom: 18rem;
  margin-top: -19.5rem;
}

.manufatura {
  font-size: 1.5rem;
  margin-left: 113.5rem;
  margin-bottom: 18rem;
  margin-top: -19.5rem;
}

.consumidor {
  font-size: 1.5rem;
  margin-left: 66.5rem;
  margin-top: 26rem;
  margin-bottom: -3rem;
}

.cliente {
  font-size: 1.5rem;
  margin-left: 92rem;
  margin-top: 1.5rem;
}

.distribuicao {
  font-size: 1.5rem;
  margin-left: 114rem;
  margin-top: -2rem;
}

.about-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.flow-item {
  text-align: center;
}

.flow-item .icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.flow-item .arrow {
  font-size: 30px;
  color: #8a8a8a;
}

.about-banner {
  justify-self: center;
  background-color: #B01A1C;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 31px;
  font-weight: bold;
  margin-top: 5rem;
  width: 950px;
  margin-left: 60rem;
}

.section-heading.left h2 {
  font-size: 3rem;
  color: #7f7f7f;
}

.section-heading h2 {
  font-size: 40px;
  color: #b01a1c;
}

.section-heading .highlight {
  color: #b01a1c;
  font-weight: bold;
}

.about-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4f4f4f;
  font-weight: 500;
}

.about-text .highlight {
  color: #b01a1c;
  font-weight: bold;
}

.about-text .highlight2 {
  font-weight: 700;
}

.section-heading {
  display: flex;
  align-items: center;
}

.section-mark {
  height: 30px;
  width: 100px;
}

.separator {
  border: 0;
  /* Remove as bordas padrões do <hr> */
  height: 3px;
  /* Define a altura da linha */
  background-color: #ccc;
  /* Cor cinza para a linha */
}

.expertise {
  background: var(--white);
  margin-bottom: 6rem;
}

.cards-3 {
  margin-left: 5rem;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 100px;
  width: 100%;
}

.service-card {
  height: 700px;
  padding: 20px;
  width: 30%;
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.service-card h3 {
  width: 570px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 45px 30px;
  color: white;
  background-color: inherit;
  margin-top: -15px;
  z-index: 2;
  position: relative;
  background-size: cover;
  background-position: center;
}

.titleCard1 {
  background-image: url('../img/tittleCard.png');
}

.titleCard2 {
  background-image: url('../img/tittleCard2.png');
}

.titleCard3 {
  background-image: url('../img/tittleCard.png');
}


.card-body {
  position: relative;
  padding-right: 30px;
  padding-left: 10px;
}

.service-card.red .card-body {
  height: 500px;
}

.service-card.blue .card-body {
  height: 300px;
}

.service-card ul {
  padding-left: 20px;
  font-size: 14px;
}

.service-card ul li {
  margin-left: 1rem;
  width: 370px;
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 1.8rem;
  font-size: 1.1rem;
}

.card-body,
.card-body-blue {
  position: relative;
}

.card-body,
.card-body-primary {
  position: relative;
}

.card-body-primary::after {
  margin-top: -2rem;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 425px;
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
}

.card-body-blue::after {
  margin-top: -2rem;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 350px;
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
}

.card-body::after {
  margin-top: -2rem;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 510px;
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
}

.image3 {
  display: flex;
  justify-self: anchor-center;
  max-width: 2560px;
  margin-top: -6rem;
  width: 100%;
  transform: translateY(10rem);
}

.image4 {
  max-width: 2560px;
  display: flex;
  justify-self: anchor-center;
  width: 100%;
  margin-top: 10rem;
}

.background3 {
  display: flex;
  justify-self: anchor-center;
  max-width: 2560px;
  margin-top: -25rem;
}

.platform-grid {
  margin-top: -58rem;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: center;
}

.platform-badge {
  display: inline-block;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--blue);
}

.platform-text {
  margin-bottom: 4rem;
}

.platform-text h1 {
  font-size: 0.83rem;
  margin-top: -5rem;
  margin-bottom: 7rem;
}

.platform-text p {
  margin-bottom: 6px;
  color: #444;
  max-width: 37.5ch;
  font-size: 1.5rem;
}

.platform-slider {
  position: relative;
}

.logo-platform {
  width: 500px;
  margin-bottom: 5rem;
}

.slider-frame {
  background: var(--white);
  border-radius: 60px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slide-image {
  min-height: 420px;
  border-radius: 45px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #5d5d5d;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(24, 60, 134, 0.12), rgba(195, 25, 31, 0.07)),
    repeating-linear-gradient(-45deg,
      #efefef,
      #efefef 12px,
      #e6e6e6 12px,
      #e6e6e6 24px);
}

.slider-arrow {
  position: absolute;
  background-color: transparent;
  border: none;
  top: 48%;
  transform: translateY(-50%);
  width: 45px;
  /* Tamanho ajustado */
  height: 45px;
  /* Tamanho ajustado */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  /* Transição suave */
}

.slider-arrow svg {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.slider-arrow:hover svg {
  transform: scale(1.2);
}

.slider-arrow.prev {
  left: -60px;
}

.slider-arrow.next {
  right: -60px;
  transform: rotate(180deg);
  top: 47%;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: #cfd7e6;
  cursor: pointer;
}

.dot.active {
  background: var(--blue);
}

.benefits {
  margin-top: 7rem;
}

.benefits-box {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  background: #ececec;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-sizing: border-box;
  margin-top: 5rem;
}

.section-heading.left .redBenefits {
  color: #b01a1c;
}

.section-heading.left .redBenefits p {
  margin-left: 47.2rem;
  margin-top: -3.6rem;
  font-size: 3rem;
}

.verification {
  width: 50px;
}

.benefits-side-art {
  height: 650px;
  width: 420px;
  min-height: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(180deg, #578FCB 0%, #1C2544 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image5 {
  margin-inline-start: auto;
  width: 650px;
  max-width: 650px;
  margin-top: -14.8rem;
  z-index: 3;
}

.benefit-logo {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 900;
  text-align: center;
}

.benefits-list {
  width: 800px;
  margin-left: 15rem;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 26px;
  align-content: center;
}

.benefits-list .benefit-item span {
  color: #7f7f7f;
  font-weight: 600;
}

.benefit-item {
  align-items: center;
  display: flex;
  gap: 12px;
  color: #3f3f3f;
}

.benefit-item i {
  color: var(--blue-dark);
  font-size: 1.2rem;
  margin-top: 2px;
}

.logo3 {
  width: 250px;
  margin-top: -12rem;
}

.calculator {
  display: none;
  background: var(--white);
}

.calculator-box {
  display: grid;
  justify-self: center;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 100px;
  align-items: start;
  background: #f7f7f7;
  border-radius: 22px;
  padding: 40px;
  border: 1px solid var(--line);
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.calc-result-box .red {
  color: #b01a1c;
}

.options-right {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.field .options-right label {
  width: 150px;
  margin-top: -2rem;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  /* Mantém o tamanho da fonte mais uniforme */
  font-weight: 700;
  background-color: transparent;
  padding: 0;
  color: #152D4A;
  justify-content: left;
}

.options-right input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 18px;
  height: 18px;
  border: 2px solid #CCCCCC;
  border-radius: 3px;
  background-color: #f0f0f0;
  margin-right: 5px;
  transition: all 0.3s ease;
}

.options-right input[type="radio"]:checked {
  background-color: #152D4A;
  border-color: #152D4A;
  box-shadow: 0 0 5px hsla(211, 97%, 26%, 0.50);
}

.field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  width: 600px;
}

.field label {
  height: 0;
  background-color: #CECECE;
  border-radius: 15px;
  justify-content: left;
  align-items: center;
  display: flex;
  padding: 40px;
  margin-right: 20px;
  width: 250%;
  font-size: 0.85rem;
  font-weight: 700;
  color: #444;
}

.field p {
  width: 300px;
  margin-left: -12.2rem;
  margin-top: -12rem;
  margin-right: 4rem;
  display: inline-block;
  white-space: nowrap;
  color: #152D4A;
  font-weight: 900;
}

.section-heading.left .redCalculator {
  color: #b01a1c;
}

.section-heading.left .redCalculator p {
  margin-left: 25.3rem;
  margin-top: -3.6rem;
  font-size: 3rem;
}

.section-heading.left .calculator_intro {
  margin-left: 1rem;
  margin-top: 2rem;
}

.calc-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field select {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  background: var(--white);
  padding: 0 14px;
  color: #222;
}

.calc-result-box {
  margin-left: -10rem;
  width: 400px;
  display: flex;
  flex-flow: column;
  gap: 3rem;
  margin-top: 5rem;
  border-radius: 18px;
  padding: 24px;
}

.logo4 {
  margin-left: 4rem;
  width: 200px;
}

.calc-brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 12px;
}

.calc-brand span {
  color: var(--red);
}

.calc-result-box p {
  font-size: 1.3rem;
  width: 400px;
  color: #444;
  margin-bottom: 18px;
}

.calc-score {
  background: #f2f5fb;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
}

.calc-score small {
  display: block;
  color: #666;
  margin-bottom: 6px;
}

.calc-score strong {
  display: block;
  font-size: 2.2rem;
  color: var(--blue-dark);
}

.calc-level {
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--red);
}

.disclaimer {
  width: 1950px;
  position: relative;
  z-index: 10;
  margin-top: 40px;
  color: #444;
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 5rem;
}

.image6 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-self: anchor-center;
  margin-top: -20rem;
  max-width: 2560px;
}

.lead-section {
  display: flex;
  justify-self: center;
  margin-top: -2.2rem;
  width: 2600px;
  position: relative;
  height: 1440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("../img/opt/background4.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.lead-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}

.lead-card {
  height: 700px;
  width: min(100%, 1000px);
  margin: 5rem auto 0;
  background: rgba(255, 255, 255, 0.92);
  padding: 50px;
  border-radius: 20px 20px 0px 0px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  position: relative;
  border-bottom: 20px solid #0d2f5f;
  z-index: 1;
}

.lead-card input {
  width: 900px;
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
}

.lead-card small {
  margin-left: -4rem;
  margin-bottom: -2rem;
  font-size: 1.6rem;
  text-align: center;
  color: #999999;
}

.contact {
  display: flex;
  width: 100%;
  height: auto;
  padding: 100px 0;
  position: relative;
  color: var(--white);
  align-items: center;
  overflow: hidden;
  background-image: url(../img/opt/background5.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section.contact h2 {
  margin-right: 5rem;
  font-size: 4rem;
  color: white;
}



.logo5 {
  margin-top: 0;
  width: 500px;
}

.contact-header-box .section-heading {
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
}

.contact-header-box {
  grid-area: heading;
  align-self: start;
}

.contact-form-box {
  grid-area: form;
  align-self: start;
}

.contact-brand-box {
  grid-area: logo;
  align-self: start;
  padding-top: 30px;
}

.contact-info-box {
  grid-area: info;
  align-self: start;
  padding-top: 30px;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "heading form"
    "logo info";
  gap: 0 60px;
  align-items: start;
}

.contact-brand {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.contact-brand span {
  color: #dfe6ff;
}

.contact-tag {
  color: rgba(255, 255, 255, 0.85);
  /*max-width: 40ch;*/
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  text-align: left;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.contact-links span {
  font-size: 2.5rem;
}

.contact-links p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 1.5rem;
}

.whatsapp-link {
  position: relative;
  z-index: 10;
  display: inline-block;
}

.contact-email {
  position: relative;
  z-index: 20;
}

.contact-email a {
  position: relative;
  z-index: 21;
  pointer-events: auto;
  display: inline-block;
  cursor: pointer;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: 0.25s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-form {
  width: 80%;
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.contact-form .btn-full {
  width: fit-content;
  min-width: 280px;
  height: 60px;
  font-size: 1.25rem;
  margin-left: 0;
  justify-self: center;
  border-radius: 12px;
  padding: 0 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: 8px;
  padding: 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.site-footer {
  background: #061129;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: block;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-logo-img {
  max-width: 180px;
  margin-bottom: 0;
}

.footer-slogan {
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 30ch;
}

.footer-security img {
  max-height: 55px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-security img:hover {
  opacity: 1;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: white;
  padding-left: 5px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: white;
  color: #061129;
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.about {
  padding: 100px 0;
}

.about-grid {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}

.about-content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.1fr);
  gap: 1.5rem;
  align-items: start;
  justify-items: center;
}

.about-text {
  width: 78% !important;
  margin: 0 !important;
  justify-self: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.about-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #4f4f4f;
  font-weight: 500;
}

.about-text .highlight {
  color: #b01a1c;
  font-weight: bold;
}

.about-text .highlight2 {
  font-weight: 700;
}

.about-diagram {
  position: relative;
  width: 100%;
  max-width: 1000px;
  justify-self: end;
  min-width: 0;
}

.icones {
  display: block;
  width: 100% !important;
  max-width: 850px !important;
  height: auto;
  margin: 0 !important;
}

.text-icons {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}

.text-icons h1,
.insumos,
.fornecedor,
.manufatura,
.consumidor,
.cliente,
.distribuicao {
  position: absolute !important;
  margin: 0 !important;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
  color: #4f4f4f;
  font-weight: 700;
}

.insumos {
  top: 23%;
  left: 0;
}

.fornecedor {
  top: 23%;
  left: 33%;
}

.manufatura {
  top: 23%;
  left: 68%;
}

.consumidor {
  top: 89%;
  left: -3%;
}

.cliente {
  top: 89%;
  left: 37%;
}

.distribuicao {
  top: 89%;
  left: 69%;
}

.about-banner {
  width: 970px;
  right: 5rem;
  max-width: none;
  box-sizing: border-box;
  padding: 20px 30px;
  background-color: #B01A1C;
  color: white;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  top: 5rem;
  margin: 1.5rem auto 0 !important;
}

.benefits-box {
  height: 700px;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  background: #ececec;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-sizing: border-box;
  margin-top: 5rem;
}

.logo3 {
  width: 250px;
  margin-top: -18rem;
}

.image5 {
  margin-inline-start: auto;
  width: 750px;
  max-width: 750px;
  margin-top: -20rem;
  z-index: 3;
}

.benefit-item {
  gap: 20px;
}

.benefits-side-art {
  height: 750px;
  width: 500px;
  min-height: 320px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%), linear-gradient(180deg, #578FCB 0%, #1C2544 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-list {
  margin-top: -3rem;
  width: 1250px;
  margin-left: 21rem;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 20px;
  align-content: center;
  padding-top: 0;
  height: auto;
}

.benefits-list .benefit-item span {
  color: #7f7f7f;
  font-weight: 600;
  font-size: 1.5rem;
}

.verification {
  width: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  padding-right: 20px;
  /* Adiciona um pequeno espaço à direita */
}

.footer-logos {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.footer-logo-img {
  max-height: 50px;
  width: auto;
}

.footer-text {
  flex: 2;
  place-items: start;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (min-width: 2560px) {
  .lang-btn img {
    width: 65px;
    height: 40px;
  }

  .image6 {
    position: relative;
    z-index: 1;
    display: flex;
    justify-self: anchor-center;
    margin-top: -24rem;
    max-width: 2560px;
  }

  .lead-section {
    margin-top: -0.3rem;
  }

  .nav a {
    font-weight: 500;
    font-size: 1.5rem;
  }

  .nav .divider {
    margin-right: 2rem;
    margin-left: 2rem;
    width: 8px;
    height: 40px;
  }

  .platform-text {
    margin-left: 8rem;
  }

  .contact-form {
    width: 100%;
    display: grid;
    gap: 12px;
    margin-top: 0;
  }

  .about-image-wrapper {
    margin-left: 15rem;
  }

  .footer-text {
    margin-left: -8rem;
  }
}

@media (max-width: 2552px) {
  .image6 {
    margin-left: 18.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-self: anchor-center;
    margin-top: -20rem;
    max-width: 2850px;
  }

  .footer-text {
    margin-left: -7rem;
  }
}

@media (max-width: 2512px) {
  .about-image {
    margin-left: 0rem;
  }

  .lead-section {
    margin-top: -0.3rem;
  }

  .image6 {
    margin-top: -24rem;
    margin-left: 15.7rem;
  }

  .footer-text {
    margin-left: -8rem;
  }
}

@media (max-width: 2298px) {

  .hero {
    height: 1150px;
    width: 2300px;
  }

  .about-image {
    width: 2370px;
    margin-left: 0rem;
  }

}

@media (max-width: 1920px) {
  :root {
    --container: min(1440px, calc(100% - 120px));
  }

  .nav {
    gap: 60px;
    margin-left: 0;
  }

  .nav a {
    font-size: 0.8rem
  }

  .nav .nav-home {
    margin-left: -1rem;
  }

  .options-right input[type="radio"] {
    margin-right: 26px;
  }

  .hero {
    width: 2000px;
    height: 950px;
  }

  .hero-overlay-circle {
    width: 0px;
    height: 0px;
  }

  .background3 {
    max-width: 1920px;
    margin-top: -15.5rem;
  }

  .calc-grid {
    margin-left: -2rem;
  }

  .platform-grid {
    margin-top: -42rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4f4f4f;
    font-weight: 500;
  }

  .about-text {
    justify-self: center;
    width: 33%;
    margin-left: -45rem;
    margin-top: 5rem;
    display: flex;
    flex-flow: column;
    gap: 1.5rem;
  }

  .field label {
    width: 200%;
    min-width: 65%;
  }

  .calculator-box {
    margin-left: -2rem;
    width: 93rem;
  }

  .image3 {
    margin-top: -7rem;
  }

  .image6 {
    width: 2400px;
    max-width: 149rem;
    place-self: start;
    margin-top: -21rem;
  }

  .lead-section {
    max-width: 1920px;
    width: 1920px;
    height: 1080px;
  }

  .insumos {
    font-size: 1rem;
    margin-left: 50.2rem;
    margin-bottom: 18rem;
    margin-top: -18rem;
  }

  .fornecedor {
    font-size: 1rem;
    margin-left: 64.5rem;
    margin-bottom: 18rem;
    margin-top: -19.5rem;
  }

  .manufatura {
    font-size: 1rem;
    margin-left: 80.5rem;
    margin-bottom: 18rem;
    margin-top: -18.9rem;
  }

  .consumidor {
    font-size: 1rem;
    margin-left: 48.8rem;
    margin-top: 2rem;
    margin-bottom: -3rem;
  }

  .logo-platform {
    width: 400px;
  }

  .platform-text h1 {
    font-size: 0.67rem;
    margin-top: -5rem;
    margin-bottom: 7rem;
  }

  .platform-text p {
    margin-bottom: 6px;
    color: #444;
    max-width: 37.5ch;
    font-size: 1.3rem;
  }

  .cliente {
    font-size: 1rem;
    margin-left: 66rem;
    margin-top: 1.7rem;
  }

  .distribuicao {
    font-size: 1rem;
    margin-left: 80.4rem;
    margin-top: -1.2rem;
  }

  .about-banner {
    justify-self: center;
    background-color: #B01A1C;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    margin-top: 3.5rem;
    width: 700px;
    margin-left: 46rem;
  }

  .section-heading.left h2 {
    font-size: 2.3rem;
  }

  .section-heading.left .redCalculator p {
    font-size: 2.3rem;
    margin-left: 19.7rem;
    margin-top: -2.75rem;
  }

  .section-heading.left:not(.contact-header-box .section-heading) {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section.expertise .section-heading {
    margin-top: 5rem;
  }

  .disclaimer {
    width: 1400px;
    position: relative;
    z-index: 10;
    margin-top: 40px;
    color: #444;
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 0;
  }

  .section-heading h2 {
    font-size: 2.3rem;
  }

  .section-heading p {
    font-size: 2.3rem;
  }

  .lead-card {
    margin-top: 10rem;
  }

  .contact {
    width: 100%;
    height: auto;
    padding: 100px 0;
  }

  .contact-links span {
    font-size: 1.5rem;
  }

  .logo5 {
    margin-top: 0;
    width: 400px;
  }

  .section.contact .section-heading.left.light img {
    width: 200px;
    margin-top: 0;
  }

  .contact-tag {
    color: rgba(255, 255, 255, 0.85);
    /*max-width: 40ch;*/
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    margin-top: 1rem;
  }

  .section-heading.left .redBenefits p {
    margin-left: 36.1rem;
    margin-top: -2.75rem;
    font-size: 2.3rem;
  }

  .socials {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
  }

  .btn-accent {
    margin-left: -1.5rem;
    width: 230px;
  }

  .logo4 {
    width: 150px;
    margin-left: 0;
    margin-right: 4rem;
  }

  .calc-result-box {
    align-items: center;
    justify-content: center;
    margin-left: -11.5rem;
  }

  .calc-result-box p {
    font-size: 0.8rem;
    width: 250px;
  }

  .about-image-wrapper {
    margin-top: -2rem;
    margin-left: -0.5rem;
    width: 101%;
    overflow: hidden;
    border-bottom-right-radius: 70px;
  }

  .about-image {
    display: block;
    width: 101%;
    height: auto;
    max-width: none;
    margin: 0;
    transform: none;
    position: static;
    object-fit: contain;
    object-position: top center;
  }

  .benefits {
    margin-top: 1rem;
  }

  .icones {
    margin-top: -35rem;
    width: 600px;
    margin-left: 50rem;
  }

  .hero-text h1 {
    width: 600px;
    font-size: 3rem;
    line-height: 1.3;
    font-weight: 600;
  }

  .service-card h3 {
    width: 400px;
    height: 90px;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 30px 20px;
    color: white;
    background-color: inherit;
    margin-top: -15px;
    z-index: 2;
    position: relative;
    background-size: cover;
    background-position: center;
  }

  .hero-main-image {
    width: 800px;
    max-width: 900px;
    margin-right: 20rem;
  }

  .hero-grid {
    grid-template-columns: minmax(480px, 680px) 1fr;
    gap: 60px;
  }

  .hero-text {
    margin-bottom: 12rem;
  }

  .about-content {
    grid-template-columns: minmax(300px, 1fr) minmax(380px, 760px);
    gap: 2rem;
  }

  .about-text {
    left: 3rem;
    width: 80% !important;
    margin: 0 !important;
    position: relative;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-diagram {
    max-width: 760px;
  }

  .icones {
    position: relative;
    max-width: 600px !important;
    left: 6rem;
  }

  .text-icons h1,
  .insumos,
  .fornecedor,
  .manufatura,
  .consumidor,
  .cliente,
  .distribuicao {
    font-size: 1rem;
  }

  .insumos {
    top: 22%;
    left: 13%;
  }

  .fornecedor {
    top: 22%;
    left: 43%;
  }

  .manufatura {
    top: 22%;
    left: 77%;
  }

  .consumidor {
    top: 85%;
    left: 10%;
  }

  .cliente {
    top: 85%;
    left: 46%;
  }

  .distribuicao {
    top: 85%;
    left: 77%;
  }

  .about-banner {
    font-size: 22px;
    padding: 18px 24px;
    left: 1rem;
  }

  .service-card ul li {
    width: 340px;
  }

  .benefits-list {
    margin-top: 1rem;
    width: 860px;
    margin-top: 1rem;
    margin-left: 15rem;
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 16px;
    align-content: center;
  }

  .benefits-box {
    width: 100%;
    height: auto;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    background: #ececec;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-sizing: border-box;
    margin-top: 5rem;
  }

  .benefit-item {
    gap: 12px;
  }

  .verification {
    width: 45px;
  }

  .benefits-list .benefit-item span {
    font-size: 1rem;
  }

  .benefits-side-art {
    height: 650px;
    width: 470px;
    min-height: 320px;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 38%), linear-gradient(180deg, #578FCB 0%, #1C2544 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image5 {
    margin-inline-start: auto;
    width: 650px;
    max-width: 650px;
    margin-top: -15rem;
    z-index: 3;
  }

  .logo3 {
    width: 250px;
    margin-top: -12rem;
  }
}

@media (min-width: 1540px) and (max-width: 1751px) {

  :root {
    --container: min(90% - 90px, 100%);
  }

  .about-image-wrapper {
    margin-top: -2rem;
    margin-left: -1.1rem;
    width: 102%;
    overflow: hidden;
    border-bottom-right-radius: 70px;
  }

  .about-image {
    max-width: 113rem;
    display: block;
    margin-left: 0rem;
  }

  .hero {
    width: 1810px;
    height: 880px;
  }

  .background3 {
    max-width: 1750px;
  }

  .platform-text p {
    max-width: 34ch;
    font-size: 1.2rem;
  }

  .platform-slider {
    width: 800px;
    margin-right: -0.98rem;
    margin-left: -2.5rem;
  }

  .lead-section {
    max-width: 1750px;
    height: 1016px;
  }

  .contact {
    max-width: 100%;
    height: auto;
    padding: 80px 0;
  }

  .section.contact .section-heading.left.light img {
    width: 150px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }

  .section.contact h2 {
    margin-right: 2.5rem;
    font-size: 3rem;
    color: white;
  }

  .logo5 {
    margin-top: 0;
    width: 300px;
  }

  .cards-3 {
    margin-left: 1rem;
    justify-content: center;
    gap: 60px;
  }

  .contact-tag {
    margin-left: 0;
    max-width: 40ch;
    font-size: 0.85rem;
  }

  .contact-form {
    margin-top: 0;
    width: 100%;
    margin-left: 0;
  }

  .contact-links {
    margin-top: 0;
  }

  .socials {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
  }

  .nav .nav-home {
    margin-left: -0.5rem;
  }

  /* .site-footer p {
    margin-left: 5rem;
  } */

  .platform-text h1 {
    font-size: 0.58rem;
    margin-top: -4.7rem;
    margin-bottom: 4rem;
  }

  .platform-text {
    margin-left: 5rem;
  }

  .lead-card input {
    width: 800px;
  }

  .service-card h3 {
    width: 400px;
    border-radius: 0px;
  }

  .service-card ul li {
    width: 330px;
  }

  .lead-card {
    width: 900px;
    height: 530px;
    margin-top: 7rem;
  }

  .btn-full {
    margin-left: -4rem;
    margin-top: 2rem;
    width: 930px;
    border-radius: 5px 5px 5px 5px;
    height: 110px;
    font-size: 2rem;
    font-weight: 500;
    background: #B01A1C;
  }

  .lead-card small {
    font-size: 1.2rem;
  }

  .calculator-box {
    width: 90rem;
    margin-left: 1rem;
  }

  .calc-result-box {
    margin-top: 10rem;
    margin-left: -9rem;
  }

  .section-heading.left .calculator_intro {
    font-size: 1rem;
  }

  .disclaimer {
    width: 1200px;
    margin-left: 7rem;
    font-size: 1.1rem;
  }

  .field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    width: 500px;
  }

  .hero-text {
    margin-left: 7rem;
    margin-top: 5rem;
    margin-bottom: 10rem;
  }

  .icones {
    margin-left: 50rem;
  }

  .logo4 {
    width: 150px;
    margin-left: 0;
    margin-right: 1.5rem;
  }

  .about-banner {
    left: -2rem;
    top: 4rem;
  }

  .logo-platform {
    width: 350px;
    margin-bottom: 5rem;
  }

  .insumos {
    left: 1%;
  }

  .fornecedor {
    left: 37%
  }

  .manufatura {
    left: 76%;
  }

  .consumidor {
    left: -2%;
  }

  .cliente {
    left: 40%;
  }

  .distribuicao {
    left: 76%;
  }

  .hero-text h1 {
    width: 450px;
    font-size: 2.3rem;
  }

  .image6 {
    margin-left: -3.9rem;
    margin-top: -20rem;
  }

  .card-body::after {
    margin-top: -2rem;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 525px;
    box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
  }

  .card-body-blue::after {
    margin-top: -2rem;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 365px;
    box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
  }

  .card-body-primary::after {
    margin-top: -2rem;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 465px;
    box-shadow: -8px 0 15px rgba(0, 0, 0, 0.10);
  }

  .calc-grid {
    gap: 50px;
    margin-left: 1rem;
  }

  .about-text {
    width: 75% !important;
    margin: 0 !important;
  }

  .about-content {
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 700px);
    gap: 5rem;
  }

  .about-diagram {
    max-width: 700px;
  }

  .icones {
    max-width: 650px !important;
    left: 0;
  }

  .text-icons h1,
  .insumos,
  .fornecedor,
  .manufatura,
  .consumidor,
  .cliente,
  .distribuicao {
    font-size: 1rem;
  }

  .footer-text {
    margin-left: -3rem;
  }
}

@media (max-width: 1600px) {
  .contact {
    max-width: 100%;
    height: auto;
  }

  .nav {
    gap: 40px;
  }

  .lead-section {
    max-width: 1600px;
    height: 900px;
  }

  .image6 {
    margin-left: -3rem;
    margin-top: -17rem;
  }

  .hero {
    width: 1650px;
    height: 800px;
  }

  .disclaimer {
    font-size: 1rem;
  }

  .hero-text {
    margin-left: 2rem;
  }

  .about-image {
    margin-left: 0.3rem;
    max-width: 113.5rem;
    display: block;
  }

  .about-image-wrapper {
    margin-top: -2rem;
    margin-left: -1.2rem;
    width: 104%;
    overflow: hidden;
    border-bottom-right-radius: 70px;
  }

  .about-image-wrapper {
    margin-top: -2rem;
    margin-left: -1.2rem;
    width: 102%;
    overflow: hidden;
    border-bottom-right-radius: 70px;
  }

  .service-card h3 {
    width: 370px;
  }

  .service-card .titleCard3 {
    padding: 35px 20px;
  }

  .service-card .titleCard2 {
    padding: 35px 20px;
  }

  .service-card ul li {
    font-size: 1rem;
    width: 290px;
  }

  .platform-text {
    margin-left: 0;
  }

  .calculator-box {
    margin-left: 2rem;
    width: 85rem;
  }

  .about-banner {
    margin-left: 38rem;
  }

  .about-text {
    left: 0;
    width: 100% !important;
    margin: 0 !important;
  }

  .icones {
    margin-left: 43rem;
  }

  .calc-result-box {
    margin-top: 10rem;
  }

  .calc-grid {
    gap: 30px;
    margin-left: 1rem;
  }

  .calc-result-box {
    margin-left: -11rem;
  }

  .logo5 {
    margin-left: 0;
  }

  .contact-tag {
    margin-left: 0;
  }

  .image3 {
    margin-top: -10rem;
  }

  .benefits-list {
    width: 800px;
    margin-left: 15rem;
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 16px;
    align-content: center;
  }

  .benefits-list .benefit-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 1536px) {
  .about-text {
    width: 35%;
  }

  .hero {
    width: 1600px;
    height: 781px;
  }

  .about-image-wrapper {
    margin-top: -2rem;
    margin-left: -4.2rem;
    width: 105%;
    overflow: hidden;
    border-bottom-right-radius: 70px;
  }

  .about-image {
    width: 101rem;
    margin-top: 0;
    margin-left: 3.5rem;
    max-width: 100.5rem;
  }

  .service-card h3 {
    width: 365px;
    font-size: 0.9rem;
    height: auto;
    padding: 25px 20px;
  }

  .image3 {
    margin-top: -10rem;
  }

  .slider-frame {
    width: 650px;
  }

  .slider-arrow.next {
    right: 80px;
    margin-top: -1.5rem;
  }

  .slider-dots {
    margin-right: 10rem;
  }

  .platform-slider {
    margin-right: -2.5rem;
  }

  .icones {
    left: 5%;
  }

  .image6 {
    margin-left: -5.1rem;
    margin-top: -20rem;
  }

  .about-banner {
    left: 1%;
  }

  .insumos {
    left: 5%;
  }

  .fornecedor {
    left: 36%;
  }

  .manufatura {
    left: 70%;
  }

  .consumidor {
    left: 3%;
  }

  .cliente {
    left: 39%;
  }

  .distribuicao {
    left: 69%;
  }

  .contact-grid {
    margin-top: 10rem;
  }

  .contact-form {
    width: 100%;
    display: grid;
    gap: 12px;
    margin-top: 0;
  }

  .cards-3 {
    margin-left: 0rem;
  }

  .btn-accent {
    margin-top: -1rem;
    margin-left: 0rem;
    width: 200px;
  }

  .card-body::after {
    height: 500px;
  }

  .card-body-blue::after {
    height: 350px;
  }

  .card-body-primary::after {
    height: 430px;
  }

  .service-card ul li {
    font-size: 1rem;
    width: 280px;
  }

  .calc-result-box p {
    font-size: 0.8rem;
    width: 150px;
  }

  .disclaimer {
    width: 1300px;
    place-self: center;
  }

  .calculator-box {
    margin-left: 0rem;
    width: 88rem;
  }

  .calc-result-box {
    margin-left: -16rem;
  }

  .logo4 {
    margin-right: 0rem;
  }

  .calc-grid {
    gap: 30px;
    margin-left: -2rem;
  }

  .lead-card {
    height: 600px;
    margin-top: 7rem;
  }

  .socials {
    margin-top: 1rem;
  }

  .contact-links {
    margin-top: 0;
  }

  .footer-text {
    margin-left: -2rem;
  }
}

@media (max-width: 1530px) {

  .image6 {
    margin-left: -7rem;
    margin-top: -20rem;
  }

}

@media (max-width: 1100px) {

  .hero-grid,
  .about-grid,
  .platform-grid,
  .contact-grid,
  .calculator-box,
  .benefits-box {
    grid-template-columns: 1fr;
  }

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

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

  .hero-text h1 {
    max-width: 100%;
  }

  .hero-image-box {
    margin-top: 10px;
  }

  .hero-main-image {
    max-width: 520px;
  }

  .hero-devices {
    min-height: 390px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .platform-text p {
    max-width: 100%;
  }

  .benefits-side-art {
    min-height: 220px;
  }

  .contact-info {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .footer-text {
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container: calc(100% - 24px);
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-top: 72px;
  }

  .container {
    width: var(--container);
  }

  .section {
    padding: 42px 0;
  }

  .nav-wrapper {
    min-height: 72px;
    gap: 12px;
  }

  .nav-wrapper h1 {
    display: none;
  }

  .brand-image {
    width: 140px;
  }

  .menu-toggle {
    display: block;
  }

  .lang-flags {
    gap: 6px;
  }

  .lang-btn img {
    width: 24px;
    height: 16px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0 !important;
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 9999;
  }

  .nav.open {
    display: flex;
  }

  .nav .divider {
    display: none;
  }

  .nav .nav-home {
    margin-left: 0 !important;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .hero,
  .lead-section,
  .contact,
  .image3 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .image6 {
    width: 0;
  }

  .hero {
    height: auto !important;
    min-height: auto;
    padding: 0 0 28px;
    background-position: center;
    background-size: cover;
  }

  .hero-overlay-circle {
    display: none;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    padding: 18px 0 10px;
  }

  .hero-text {
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    gap: 1rem;
  }

  .hero-text h1 {
    width: 100% !important;
    max-width: 100%;
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .hero-image-box {
    margin-top: 0;
    justify-content: center;
  }

  .hero-main-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto !important;
  }

  .section-heading,
  .section-heading.left {
    margin-top: 2rem !important;
    margin-bottom: 1rem;
    gap: 10px;
  }

  .section-heading p,
  .section-heading.left p,
  .section-heading.left .redBenefits p,
  .section-heading.left .redCalculator p,
  .section-heading.left .calculator_intro {
    width: 100%;
    margin: 0 !important;
    font-size: 1rem;
  }

  .section-heading h2,
  .section-heading.left h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .about-grid {
    position: relative;
  }

  .platform-grid,
  .contact-grid,
  .calculator-box,
  .benefits-box {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
    gap: 24px;
  }

  .about-image {
    margin: 0 !important;
    max-width: 0px;
    width: 0px;
  }

  .about-text {
    width: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .text-icons {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .icones {
    display: block;
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 1rem 0 0 !important;
    z-index: 1;
  }

  .insumos,
  .fornecedor,
  .manufatura,
  .consumidor,
  .cliente,
  .distribuicao {
    position: absolute;
    margin: 0 !important;
    z-index: 10;
    line-height: 1.1;
    white-space: nowrap;
    color: inherit;
  }

  .insumos {
    left: 9%;
    transform: translate(-50%, -1800%);
    font-size: clamp(0.55rem, 1.5vw, 0.75rem);
  }

  .fornecedor {
    left: 48%;
    transform: translate(-50%, -1850%);
    font-size: clamp(0.55rem, 1.5vw, 0.75rem);
  }

  .manufatura {
    left: 83%;
    transform: translate(-15%, -2150%);
    font-size: clamp(0.46rem, 1.2vw, 0.62rem);
  }

  .consumidor {
    left: 12%;
    transform: translate(-50%, 50%);
    font-size: clamp(0.55rem, 1.5vw, 0.75rem);
    text-align: center;
  }

  .cliente {
    left: 48%;
    transform: translate(-50%, 50%);
    font-size: clamp(0.55rem, 1.5vw, 0.75rem);
    text-align: center;
  }

  .distribuicao {
    left: 88%;
    transform: translate(-50%, 50%);
    font-size: clamp(0.55rem, 1.5vw, 0.75rem);
    text-align: center;
  }

  .about-banner {
    width: 100%;
    margin: 1.5rem 0 0 !important;
    padding: 16px;
    font-size: 1rem;
  }

  .cards-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .service-card {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .service-card h3 {
    font-size: 1rem;
    padding: 18px 16px;
    margin-top: 0;
  }

  .service-card.red .card-body,
  .service-card.blue .card-body {
    height: auto;
  }

  .card-body {
    padding: 14px 14px 18px 8px;
  }

  .service-card ul {
    padding-left: 18px;
  }

  .service-card ul li {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    margin-bottom: 10px;
  }

  .image3 {
    transform: none !important;
    margin-top: 0 !important;
    display: block;
  }

  .image4 {
    margin-top: -7.293rem;
  }

  .platform-grid {
    margin-top: 0 !important;
  }

  .platform-text {
    margin-top: 15rem;
    margin-bottom: 0;
    margin-left: 0;
  }

  .platform-text h1 {
    font-size: 0.9rem;
    margin: 0 5rem 2rem !important;
  }

  .platform-text p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .logo-platform {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
  }

  .platform-slider {
    width: 100%;
    margin: 0 !important;
  }

  .slider-frame {
    border-radius: 24px;
  }

  .slide-image {
    min-height: 220px;
    font-size: 0.9rem;
  }

  .slider-arrow.prev {
    left: 6px;
  }

  .slider-arrow.next {
    right: 6px;
  }

  .benefits {
    margin-top: 2rem;
  }

  .benefits-box {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .benefits-side-art {
    width: 100%;
    min-height: 180px;
    height: auto;
  }

  .image5 {
    width: 100%;
    max-width: 280px;
    margin: 0 auto !important;
  }

  .benefits-list {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-item {
    align-items: flex-start;
  }

  .calculator-box {
    width: 365px;
    margin-left: 0 !important;
    gap: 24px;
  }

  .calc-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field {
    width: 100% !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
  }

  .field label {
    height: auto;
    margin-right: 0;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
  }

  .field p {
    margin: 0 !important;
    white-space: normal;
    font-size: 0;
  }

  .options-right {
    display: flex;
    flex-wrap: nowrap;
    margin-left: 2rem;
    justify-content: center;
    gap: 5px;
    margin-right: -0.5rem;
  }

  .field .options-right label {
    margin-right: -10rem;
    margin-bottom: -1.9rem;
    margin-left: 0;
    font-size: 0.82rem;
  }

  .calc-result-box {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    gap: 1.25rem;
  }

  .logo4 {
    width: 120px;
    margin: 0;
  }

  .calc-brand {
    font-size: 1.5rem;
  }

  .calc-result-box p {
    width: 100%;
    font-size: 0.92rem;
  }

  .calc-score {
    padding: 14px;
  }

  .calc-score strong {
    font-size: 1.7rem;
  }

  .disclaimer {
    width: 100% !important;
    margin: 20px 0 0 !important;
    font-size: 0.88rem;
  }

  .lead-section {
    height: auto !important;
    padding: 48px 0;
  }

  .lead-card {
    width: 300px;
    height: 400px;
    margin-top: 10rem;
    padding: 20px;
    border-bottom-width: 10px;
  }

  .lead-card input {
    width: 100% !important;
  }

  .lead-card small {
    margin: 0 !important;
    font-size: 0.95rem;
    text-align: left;
  }

  .section.calculator .container {
    margin-bottom: 15rem;
  }

  .section.lead-section .container {
    margin-bottom: 10rem;
  }

  .btn-accent {
    width: 100% !important;
    height: auto;
    min-height: 54px;
    margin-left: 0 !important;
    font-size: 1rem;
  }

  .btn-full {
    width: fit-content !important;
    min-width: 240px;
    height: auto;
    min-height: 54px;
    margin-left: 0 !important;
    font-size: 1rem;
    justify-self: center;
  }

  .contact {
    height: auto !important;
    padding: 48px 0;
  }

  .section.contact h2 {
    margin: 0 !important;
    font-size: 2rem;
  }

  .site-header {
    background: #ffffff !important;
  }

  .nav-wrapper {
    min-height: 70px;
    padding: 0 15px;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }

  .nav-wrapper h1 {
    display: none;
  }

  .brand-image {
    width: 140px;
  }

  .nav {
    display: none;
    /* Mobile menu should be controlled by a class like 'active' if js is present, or just hidden for now if it pushes overflow */
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    margin: 0;
    gap: 20px;
  }

  .nav.active {
    display: flex;
  }

  .nav .nav-home {
    margin-left: 0;
  }

  .section.contact .contact-info {
    margin: 0;
    padding: 20px;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .logo5 {
    width: 100% !important;
    max-width: 150px !important;
    margin: 1rem auto !important;
    display: block;
  }

  .contact-tag {
    margin: 1rem 0;
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .contact-links {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .contact-links span {
    font-size: 1.2rem;
  }

  .socials {
    margin: 1.5rem auto;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .background3 {
    display: none;
  }

  .row-2 {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand-logos {
    justify-content: center;
    margin-bottom: 25px;
  }

  .footer-logo-img {
    margin: 0;
  }

  .footer-slogan {
    margin: 0 auto 25px;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.78rem;
    padding: 24px 0;
  }
}

/* Feedback do Formulário - Agência Taruga */
.form-message {
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 600;
  display: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
}

.form-message.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.btn-full {
  width: 100%;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#calculadora {
  display: none !important;
}