* {
  font-family: "Montserrat";
}

:root {
  --ff-preto: #121212;
  --ff-cinza: #e2e2e2;
  --ff-vermelho: #db050b;
  --ff-vermelho-degrade: linear-gardient(to right, #db050b, #ff2d33);
  --ff-branco: #fff;

  --ff-titulo: 2.25rem;
  --ff-subtitulo: 1.25rem;
  --ff-corpo: 1rem;
  --ff-categorias: 0.75rem;
  --ff-background-color: #111111;
}

body {
  font-family: Montserrat;
  margin: 0;
  padding: 0;
  background-color: var(--ff-background-color);
  position: relative;
  overflow-x: visible;
}

.banner {
  background-image: url(./assets/desktop/BANNERDESKTOP.png);
  height: 1000px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-size: cover;
  background-position: center;
  padding-left: 17.25rem;
}

.banner-image {
  height: 200px;
}

.banner-title {
  font-family: "Special Gothic Expanded One";
  font-size: 3.25rem;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  background: linear-gradient(90deg, #db050b 0%, #ff2d33 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-text {
  color: #fff;
  font-family: Montserrat;
  font-size: var(--ff-subtitulo);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 43rem;
}

.ff-button {
  color: #fff;
  font-family: Montserrat;
  font-size: var(--ff-corpo);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 27.5px;
  padding: 1.0625rem 2.375rem;
  border: 1px solid #a8ffbf;
  background: linear-gradient(90deg, #24a847 0%, #26cd52 100%);
  cursor: pointer;
}

.ff-button a {
  text-decoration: none;
  color: #fff;
}
.ff-button:hover {
  background: linear-gradient(90deg, #30de5e 0%, #33f867 100%);
  box-shadow: 0 0 20px 0 rgba(168, 255, 191, 0.5);
}

@media (max-width: 1440px) {
  .banner {
    height: 800px;
    padding-left: 11.25rem;
  }

  .banner-image {
    height: 175px;
  }

  .banner-title {
    font-size: 2.25rem;
  }

  .banner-text {
    font-size: 1rem;
    width: 27rem;
  }
}

@media (max-width: 768px) {
  .banner {
    background-image: url(./assets/mobile/BANNERMOBILE.png);

    width: 100%;
    display: flex;
    justify-content: start;
    background-size: cover;
    background-position: center;
    padding: 0;
    align-items: center;
  }

  .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .banner-image {
    height: 130px;
    padding-top: 2rem;
  }

  .banner-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .banner-text {
    font-size: 0.9rem;
    width: 19rem;
    text-align: center;
  }

  .ff-button {
    font-size: 0.75rem;
    padding: 0.75rem 1.5rem;
  }
}

.content {
  padding: 1rem;
}

@media (min-width: 768px) {
  .content {
    padding: 11.25rem;
  }
}

.apresentacao {
  background: url(assets/desktop/background-apresentacao.png) lightgray 50% /
    cover no-repeat;
  mix-blend-mode: lighten;
  height: 1000px;
  color: #fff;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.title-apresentacao span {
  color: var(--ff-vermelho);
  display: block;
}

.apresentacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 1200px;
  min-height: 100vh;
  padding: 3rem 1rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #111111;
  position: relative;
  overflow: hidden;
}

.apresentacao-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  z-index: 2;
  position: relative;
}

.apresentacao-logo {
  position: relative;
  z-index: 3;
  width: 50px;
  height: 50px;
  background-color: var(--ff-vermelho);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}

.video-wrapper {
  position: relative;
  width: clamp(300px, 80vw, 800px); /* Aumentei um pouco a largura máxima */
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 0 45px 5px rgba(219, 5, 11, 0.4);
  border: 2px solid rgba(219, 5, 11, 0.3);
  cursor: pointer;
  background: #000;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}

.video-wrapper:hover .play-button {
  background-color: rgba(219, 5, 11, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail,
.video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.video-player {
  display: none; /* Começa escondido */
}
.video-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 40px;
  background: radial-gradient(
      circle at 25% 50%,
      rgba(219, 5, 11, 0.7) 0%,
      transparent 70%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(219, 5, 11, 0.7) 0%,
      transparent 70%
    );
  filter: blur(15px);
  z-index: -1;
}

@media (max-width: 768px) {
  .sobre-nos div {
    padding: 1rem 1rem;
  }
}

.sobre-nos {
  gap: 3rem;
  align-items: center;
  color: var(--ff-branco);
  justify-content: space-between;
  width: 100%;
}

.btn-sobre-nos {
  color: #ff2d33;
  border: 1px solid #ff2d33;
  background: transparent;
  text-transform: uppercase;
  padding: 0.5rem 2rem;
}

.btn-sobre-nos:hover {
  background-color: #ff2d33;
  color: var(--ff-branco);
}

.text-sobre-nos {
  text-align: justify;
}

.title-sobre-nos {
  text-transform: uppercase;
}

.title-sobre-nos span {
  color: var(--ff-vermelho);
  display: block;
}

.container-sobre {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-sobre-nos {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 10px 10px 5px 0px var(--ff-vermelho);
  -moz-box-shadow: 10px 10px 5px 0px var(--ff-vermelho);
  display: block;
}

@media (max-width: 1366px) and (min-width: 768px) {
  .img-sobre-nos {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .title-sobre-nos {
    font-size: 2rem;
  }

  .desmanche-servicos {
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .sobre-nos {
    padding-left: 0;
  }

  .title-sobre-nos {
    font-size: 1.5rem;
    text-align: start;
  }

  .img-sobre-nos {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .local-sobre-nos {
    padding: 0;
    width: 80%;
    font-size: 0.8rem;
  }
}

main {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

.local-sobre-nos {
  border: 0.5px solid #e61b2099;
  position: absolute;
  bottom: 20px;
  background: #0000004d;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.servicos {
  border-radius: 40px;
  background-color: #fff;
  padding: 0 3rem 3rem 3rem;
  margin-top: 5rem;
}

.seta {
  display: block;
  display: flex;
  justify-content: center;
}

.servicos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 3rem;
}

.venda-servicos {
  justify-content: space-between;
  padding: 2rem;
  align-items: center;
}

.imgMotor {
  height: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.text-servicos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: justify;
}

.text-servicos h5 {
  color: var(--ff-vermelho);
}

.title-servicos {
  text-transform: uppercase;
  padding-bottom: 5rem;
}

.img-desmanche {
  width: 100%;
}

.desmanche-servicos {
  justify-content: space-around;
  align-items: center;
}

@media (max-width: 768px) {
  .imgMotor {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
  }

  .text-servicos {
    color: #333;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .desmanche-servicos {
    justify-content: start;
    padding: 0;
  }

  .venda-servicos {
    justify-content: start;
    padding: 0;
    margin-bottom: 2rem;
  }

  .text-servicos h5 {
    color: #db050b;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .img-desmanche {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .servicos {
    padding: 0 2rem 1rem;
  }
}

.title-servicos span {
  color: var(--ff-vermelho);
}

.cards-servicos {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.card-servicos {
  border: 2px solid #ff2d33;
  border-radius: 8px;
}

@media (min-width: 768px) {
}

.beneficios-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 3rem;
}

.title-beneficios {
  text-transform: uppercase;
  padding-bottom: 5rem;
  color: var(--ff-branco);
}

.title-beneficios span {
  color: var(--ff-vermelho);
}

.cards-beneficios {
  justify-content: space-between;
}

.card-beneficios {
  background: #1e1e1e;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 22%;
}

.card-beneficios h5 {
  color: #fff;
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.card-beneficios p {
  font-size: 1rem;
  color: #e2e2e2;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.card-beneficios img {
  background: linear-gradient(180deg, #db050b, #ff2d33);
  padding: 1.2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  width: 60px;
  height: 60px;
  box-shadow: 0 0 25px rgba(219, 5, 11, 0.6);
}

.card-beneficios::before {
  content: "";
  position: absolute;
  top: 0;
  margin-left: 1.9rem;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, #db050b, #ff2d33);
}

.img-venda-servicos {
  order: 1;
  position: relative;
  overflow: hidden;
}

.text-venda-servicos {
  order: 2;
}

@media (max-width: 1366px) and (min-width: 768px) {
  .card-beneficios p {
    font-size: 0.7rem;
  }

  .card-beneficios h5 {
    font-size: 0.9rem;
  }

  .informacoes > div span {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .beneficios-content .btn-sobre-nos {
    margin-bottom: 1rem;
  }

  .beneficios-content {
    justify-content: center;
    align-items: center;
  }

  .card-beneficios {
    width: 100%;
    margin-bottom: 1rem;
    margin-left: 0;
  }

  .img-venda-servicos {
    order: 2;
  }

  .text-venda-servicos {
    order: 1;
  }
}

.fale-conosco {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--ff-branco);
}

.fale-conosco-text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.fale-conosco-text p {
}

.informacoes {
  border-bottom: 1px solid rgba(217, 217, 217, 0.1);
  border-top: 1px solid rgba(217, 217, 217, 0.1);
  padding: 1.5rem 0 0 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.informacoes > div {
  color: var(--ff-branco);
  margin-bottom: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid rgba(230, 27, 32, 0.3);
  background: #1e1e1e;
}

.info-item i {
  font-size: 2rem;
  color: white;
}
.fale-conosco > * {
  max-width: 100%;
}

.info-item {
  margin-right: 1rem;
  border-radius: 10px;
  background: var(--degrade, linear-gradient(90deg, #db050b 0%, #ff2d33 100%));
  box-shadow: 0 0 20px 0 rgba(230, 27, 32, 0.6);
  padding: 1rem;
}

.form-contact {
  border: 1px solid #535353;
  padding: 3rem;
}

@media (max-width: 768px) {
  .fale-conosco-text {
    border-right: none;
    padding: 0.5rem;
    margin: 0.5rem;
    margin-bottom: 2rem;
  }

  .info-item i {
    font-size: 1rem;
    color: white;
  }

  .form-contact {
    padding: 1rem;
    width: 90%;
  }

  .fale-conosco-text {
    width: 90%;
  }
}

input,
textarea {
  border: 1px solid #535353;
  background-color: transparent;
  margin-bottom: 2.5rem;
  width: 100%;
  padding: 1.5rem;
  color: #fff;
  font-size: 1.4rem;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2rem;
}

textarea {
  resize: none;
  height: 10rem;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #db050b 0%, #ff2d33 100%);
}

.info-item-text {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  width: 100%;
}
.img-mais-completa {
  position: relative;
  width: 100%;
  border-radius: 804px;
  z-index: 1;
  background: none;
  filter: none;
}

.mais-completa {
  position: relative;
  overflow: visible;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-ff-mais-completa {
  align-self: center;
}

.mais-completa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url(assets/desktop/carro-mais-completa.png) center/cover no-repeat;
  filter: blur(16px);

  z-index: -1;
}

.mais-completa-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mais-completa-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mais-completa-elements {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lista-mais-completa li {
  color: #e2e2e2;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
  text-align: start;
}

.lista-mais-completa li::marker {
  color: #db050b;
}

@media (max-width: 768px) {
  .mais-completa-text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 1.5rem;
    align-content: center;
    flex-wrap: wrap;
    padding: 0 1.5rem;
  }

  .lista-mais-completa {
    text-align: start;
  }

  .lista-mais-completa li {
    text-align: left;
    font-size: 0.9rem;
  }

  .footer {
    text-align: center;
    font-size: 0.7rem;
  }

  .mais-completa-conteudo div {
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .mais-completa-content ul {
    order: 1;
  }

  .mais-completa-content .ff-button {
    order: 2;
  }

  .mais-completa .div-img-mais-completa {
    order: 3;
  }

  .mais-completa-text .title-beneficios {
    font-size: 1.2rem;
  }

  .img-mais-completa {
    height: 100%;
  }

  .mais-completa-text .title-beneficios {
    padding: 1rem 0;
  }
}

.blur-vermelho {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 1345px;
  background: rgba(230, 27, 32, 0.08);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.mais-completa::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0%;
  width: 700px;
  height: 300px;
  border-radius: 1345px;
  background: rgba(230, 27, 32, 0.08);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.mais-completa {
  position: relative;
}

.footer {
  background-color: var(--ff-vermelho);
  color: #fff;
  padding: 1rem;
}
