@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Montserrat", sans-serif !important;
}


.container {
    max-width: 1400px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.containerlp {
  max-width: 1400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.banner {
  position: relative;
  background: url("assets/img/autopecasbanner.png") no-repeat center center;
  background-size: cover;
  width: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Escurecido */
  backdrop-filter: blur(5px); /* Blur */
  z-index: 0;
}

.logo {
  max-width: 300px;
  height: auto;
  padding-top: 20px;
}

.fundocinza {
  background: radial-gradient(#ffffff, #f5f5f5);
}


.inicio h1 {
  font-size: 46px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.inicio b {
  color: #1973a0;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.fa {
  color: #fff !important;
  background-color: #1973a0 !important;
  font-weight: 700 !important;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3) !important;
}

.espaco {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .espaco {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

iframe {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 10px;
}


.inicio h2 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .inicio h2 {
    font-size: 2.75em;
    font-weight: 700;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    color: white;
    text-transform: uppercase;
  }
}

.inicio p {
  font-size: 20px;
  color: white;
  font-weight: 500;
}

form {
  background-color: rgb(0, 83, 127, 0.5);
  padding: 30px;
  border-radius: 10px;
  max-width: 450px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

form div {
  margin-bottom: 20px;
}

label {
  color: #fff;
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 30px 10px;
  border-radius: 5px;
  border: none;
  font-size: 18px;
  color: white;
  background-color: transparent;
}

input::placeholder {
  color: #fff;
  border-bottom: 1px solid #ccc;
}

.formbutton {
  border: none;
  color: #1973a0;
  padding: 10px 20px;
  max-width: 200px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s ease-in;
}

.formbutton:hover {
  background-color: #f5f5f5;
  color: black;
}

.corpo h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.corpo p {
  font-size: 20px;
  font-weight: 500;
}

.corpo .card {
  padding: 10px 5px;
  border-radius: 10px;
  border: none;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
  min-height: 300px;
}

.corpo .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 340px;
}

.corpo .card i {
  margin-bottom: 15px;
  color: #1973a0;
  font-size: 32px;
  padding: 20px;
}

.corpo .card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.corpo .card p {
  font-size: 16px;
  font-weight: 500;
}

.mecanismo h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.mecanismo h3 {
  font-size: 30px;
  font-weight: 700;
}

.mecanismo b {
  color: #1973a0;
}

.mecanismo span {
  font-size: 20px;
  font-weight: 500;
}

.mecanismo {
  display: flex;
  align-items: center;
  padding: 0;
}

.imagem-container {
  flex-shrink: 0;
  padding-left: 300px;
}

.imagem-container img {
  max-height: 600px;
  width: auto;
  display: block;
}

.conteudo-container {
  flex-grow: 1;
  padding-left: 50px;
  padding-right: 50px;
  background: radial-gradient(#ffffff, #f5f5f5);
  max-width: 700px;
  height: 600px;
}

/* Estilos responsivos para tablets (768px e menores) */
@media (max-width: 768px) {
  .mecanismo {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .imagem-container {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .imagem-container img {
    max-height: 400px;
  }

  .conteudo-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    height: auto;
  }

  .conteudo-container h2 {
    font-size: 1.75rem;
  }

  .mecanismo span {
    font-size: 18px;
  }
}

/* Estilos responsivos para celulares (576px e menores) */
@media (max-width: 576px) {
  .mecanismo {
    padding: 10px;
  }

  .imagem-container img {
    max-height: 300px;
  }

  .conteudo-container {
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .conteudo-container h2 {
    font-size: 1.5rem;
  }

  .mecanismo span {
    font-size: 16px;
  }
}

.casoreal .caso {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.casoreal p {
  font-size: 20px;
  font-weight: 500;
}

.casoreal h3 {
  font-size: 30px;
  font-weight: 700;
}

.clientes p {
  font-size: 20px;
  font-weight: 500;
}

.clientes h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.clientes h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contatofinal .whatsappbotao {
  border: none;
  color: #ffffff;
  background-color: #2cd46d;
  padding: 10px 20px;
  max-width: 400px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.1s ease-in;
}

.contatofinal h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contatofinal p {
  font-size: 20px;
  font-weight: 500;
}

.whatsappbotao:hover {
  background-color: #4ee789;
  color: white;
}

.secao-titulo {
  font-size: 40px;
  font-weight: 700;
  color: #1973a0;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid #1973a0;
  padding-bottom: 10px;
}

h2.titulo {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, #1973a0, transparent 90%);
  color: #1973a0;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  position: relative;
}

.MultiCarousel .MultiCarousel-inner {
  display: flex;
  transition: 1s ease all;
  float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  flex: 0 0 auto;
}

.MultiCarousel .MultiCarousel-inner .item > div {
  text-align: center;
  padding: 5px;
  margin: 10px;
  background: #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.MultiCarousel img {
  max-height: 100px;
  object-fit: contain;
}

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50%;
  top: calc(50% - 20px);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
}

.MultiCarousel .leftLst {
  left: 10px;
}

.MultiCarousel .rightLst {
  right: 10px;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
  pointer-events: none;
  background: #ccc;
}

footer {
  background: #232424;
  color: #fff;
  padding: 20px 0;
}

footer h6 {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

footer a {
  text-decoration: none;
}

.whatsapp2 {
  margin-left: 10px;
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 4px 20px;
  cursor: pointer;
  transition: 0.2s;
}

.whatsapp2 i {
  font-size: 20px;
}

.whatsapp2:hover {
  transform: scale(1.1);
}


.chamada p{
    font-size: 20px;
    font-weight: 500;
}

.chamada .titulochamada {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.chamada .saibamais {
    border: none;
    color: #ffffff;
    background-color: #2cd46d;
    padding: 10px 20px;
    max-width: 400px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.1s ease-in;
}


.saibamais:hover{
    background-color: #4ee789;
    color: white;
}