body {
  margin: 0;
  padding: 0;
  font-family: 'Fira Sans', sans-serif;
}

.banner__wrapper-content {
  display: flex;
  align-items: center;
  width: 87vw;
  max-width: 1330px;
  /* width: 940px; */
  height: 100%;
  margin: 0 auto;
}

.banner__box-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 540px;
  margin: 64px 0 0 0;
  padding: 24px;
  border-radius: 30px;
  background-color: #007f47db;
}

.banner__box-content::after {
  content: "";
  position: absolute;
  top: -45px;
  right: clamp(-13vw, 100vw, -9em);
  background-image: url('../assets/oil-machine.png');
  background-size: contain;
  width: 125%;
  height: 125%;
  background-position: center;
  max-width: 190px;
  background-repeat: no-repeat;
}

.banner__box-content h1 {
  line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: clamp(24px, 5vw, 36px);
  text-align: center;
  color: #ffffff;
}

.banner__box-content h1 span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.banner__box-content h2 {
  text-align: left !important;
  line-height: 1.15;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: clamp(16px, 5vw, 18px);
  text-align: center;
  color: #ffffff;
}

.banner__box-content h2 mark {
  display: flex;
  font-weight: 900;
  font-size: clamp(54px, 10vw, 160px);
  align-items: start;
  line-height: 1;
  background-color: transparent;
  color: #fff;
}

.banner__box-content h2 span {
  font-weight: 400;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.95;
}

.banner__cta {
  position: absolute;
  bottom: -20px;  
  transition: all .4s;
}

.banner__cta:hover {
  color: #fff;
  background-color: #0E6439;
}

#marketing {
  padding: 24px 0;
  background-color: #ffc800;
}

#marketing p {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.alert-header {
  position: relative;
}

.alert-header::after {
  content: url('../assets/alert-icon.png');
  position: absolute;
  right: -42px;
}

.alert-header::before {
  content: url('../assets/alert-icon.png');
  position: absolute;
  left: -42px;
}

#advantages .splide {
  visibility: visible;
}

#brands-slider.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}

#testimonials-slider {
  max-width: 700px;
  margin: 0 auto;
}

.--alert-input-active {
  display: block;
}

.input-message-alert {
  display: none;
}

.sent-message, .sent-message-car-info {
  display: none;
}

.--sent-message-active {
  display: block;
}

/* Float Form */

.main__float-form {
  position: fixed;
  bottom: 10px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 5;
  pointer-events: none;
}

.float-form {
  max-width: 250px;
  margin-right: 30px;
  background-color: #ebe5de;
  border-radius: 5px;
  overflow: hidden;
  pointer-events: all;
}

.--form-inactive {
  opacity: 0;
  transform: translateY(80px);
  visibility: hidden;
  transition: all .4s;
}

.--form-active {
  opacity: 1;
  transform: translateY(-10px);
  visibility: visible;
  transition: all .4s;
}

.float-form__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  background-color: #053a33;
}

.float-form__header__perfil {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__perfil__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  background-color: #007f47;
}

.header__perfil__text h2 {
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #fff;
}

.header__perfil__text p {
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #fff;
}

.float-form__header__button-close {
  display: flex;
  align-items: center;
  cursor: pointer;
  pointer-events: all;
}

.float-form__wrapper-fields {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #e8e2db;
}

.float-form__wrapper-fields legend {
  float: left;
  max-width: 196px;
  padding: 9px;
  background-color: rgb(247, 247, 247);
  border: 1px solid rgb(229, 231, 235);
  border-radius: 7px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.float-form__wrapper-fields__alert {
  float: right;
  width: 196px;
  max-height: 0px;
  padding: 0px;
  margin-top: 0px;
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  background: rgb(232, 255, 231);
  border-radius: 7px;
  transition: all .4s;
  transform: translateX(-200%);
  overflow: hidden;
}

.--alert-active {
  max-height: 80px;
  margin-top: 12px;
  padding: 9px;
  transform: translateX(0px);
}

.--alert-active span {
  font-size: 16px;
}

.float-form__wrapper-fields__wrapper-input {
  float: right;
}

.float-form__wrapper-fields__wrapper-input label {
  display: block;
  max-height: 0px;
  max-width: 0px;
  overflow: hidden;
}

.float-form__wrapper-fields__wrapper-input input {
  float: right;
  width: 196px;
  padding: 9px;
  margin-top: 12px;
  font-size: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  background: rgb(232, 255, 231);
  border-radius: 7px;
}

.float-form__button-submit {
  position: relative;
  width: 100%;
  margin-top: 12px;
  padding: 9px;
  background-color: rgb(5, 58, 51);
  border-radius: 7px;
  font-size: clamp(12px, 5vw, 14px);
  font-family: 'Sora', sans-serif;
  font-weight: normal;
  color: #fff;
}

/* Float form - WhatsApp Button */

.whatsapp-button {
  display: block;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  overflow: hidden;
  transition: all .4s;
  box-shadow: 0px 6px 11px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: all;
  z-index: 6;
}

.whatsapp-button img {
  pointer-events: none;
}

@media(max-width: 1024px) {
  #logo {
    margin: 6px 0;
  }

  #logo img {
    width: 180px;
  }

  #banner {
    background-size: cover;
    height: 70vh;
    min-height: 420px;
    aspect-ratio: 3/1;
    background-position: right;
  }

  .banner__box-content {
    align-items: start;
  }

  .banner__box-content h1 {
    text-align: left;
  }

  .banner__cta {
    position: absolute;
    bottom: -24px;
    transition: all .4s;
    left: 0;
    right: 0;
    width: max-content;
    margin: auto;
  }

  .alert-header {
    position: relative;
    padding: 10px 16px !important;
  }

  .alert-header h1 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .alert-header::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -19px;
    left: -6px;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    background-image: url('../assets/alert-icon.png');
  }

  .alert-header::before {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -8px;
    right: -6px;
    left: initial;
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
    background-image: url('../assets/alert-icon.png');
  }

  .alert-span {
    background-color: transparent !important;
    color: #000 !important;
  }
}

@media(max-width: 768px) {

  .banner__box-content h1 {
    line-height: 1.15;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: clamp(24px, 5vw, 36px);
    max-width: 55vw;
    text-align: left;
    color: #ffffff;
  }

  .banner__box-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    bottom: 0;
    width: 36vw;
    min-width: 120px;
    max-width: 190px;
    height: 36vw;
    min-height: 120px;
    background-position: center;
    background-size: contain;
    background-image: url('../assets/oil-machine.png');
    background-repeat: no-repeat;
    margin: auto;
  }

  .discount-message {
    max-width: 156px;
    margin-top: 6px;
    line-height: 1.2 !important;
  }

  #brands-slider ul {
    display: flex !important;
    gap: 0;
  }

  #brands-slider ul li img {
    height: 70px;
  }

  .brand-slider__wrapper-icon {
    height: 7rem !important;
  }

  #marketing p {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 0 16px;
  }



  #address p, h2 {
	text-align: center;
	margin: 6px 0;
}

}

@media(max-width: 320px) {
  .banner__box-content::after {
    display: none;
  }

  .banner__box-content {
    align-items: center;
  }

  .banner__box-content h1 {
    max-width: 100%;
    text-align: center;
  }
}