@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}

:root {
  --primaryColor: #13303d;
  --secondaryColor: #3bafa9;
}

a:hover {
  color: #000000;
}

/* Header */
.header {
  min-height: 750px;
  position: relative;
  overflow: hidden;
}

/* Make the video fill the header */
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.header-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#header-content {
  z-index: 2;
  position: relative;
  padding: 50px 0;
}

/* Overlay */
.header-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.header-txt {
  color: #fff;
}

.header-txt img {
  position: relative;
  filter: brightness(0) invert(1);
  border-radius: 15px;
  max-width: 200px;
  top: 0;
}

.header-txt h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 100px;
  max-width: 80%;
}

.header-txt p {
  font-size: 20px;
  font-weight: 400;
  font-weight: 700;
  position: relative;
  padding-left: 65px;
  max-width: 80%;
}

.header-txt p:before {
  content: "";
  background-color: var(--secondaryColor);
  position: absolute;
  width: 50px;
  height: 15px;
  border-radius: 50px;
  left: 0px;
  top: 5px;
}

/* Form */
#contactform {
  width: 100%;
  border-radius: 20px;
  background: rgba(241, 247, 255, 0.85);
  text-align: center;
  padding: 30px 20px;
  position: relative;
  min-height: 510px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#contactform:before {
  content: "";
  background-image: url('/img/cards.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: 110px;
  position: absolute;
  top: -15px;
  left: -40px;
}

#contactform h3 {
  color: var(--primaryColor);
  font-size: 25px;
  font-weight: 700;
  text-wrap: balance;
  margin: 0 auto 30px auto;
  max-width: 90%;
}

.form-sub-btn {
  margin: 30px auto 0 auto;
  border-radius: 70px;
  background: var(--secondaryColor);
  width: 250px;
  height: 45px;
  border: none;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}

label.labels-buttons {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 5px;
  border: 1px solid #fff;
  margin: 10px 5px;
  width: 170px;
  height: 125px;
  vertical-align: bottom;
}

#veiculos label.labels-buttons,
#step-3 label.labels-buttons {
  width: 135px;
}

#no-img-label {
  padding: 43px 0 0 0;
  font-size: 25px;
  color: #BFDBF7;
}

.labels-buttons img {
  width: 70px;
}

.labels-buttons {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

label.labels-buttons:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

label.labels-buttons:hover,
input[type="radio"]:checked+label.labels-buttons {
  background: #fbf3e5;
  border: 1px solid #BFDBF7;
}

.input-container {
  width: calc(50% - 10px);
  margin-bottom: 10px;
}

input[type="radio"] {
  margin-right: 10px;
  appearance: none;
  border: 1px solid var(--primaryColor);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  outline: none;
  cursor: pointer;
  top: 1px;
}

input[type="radio"]:checked::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primaryColor);
  position: absolute;
  top: 1px;
  left: 1px;
}

.dropdown-content label:hover,
.dropdown-content2 label:hover {
  background: #f1f7ff;
  border-radius: 5px;
}

.radio-dropdown.open .dropdown-content,
.radio-dropdown2.open .dropdown-content2 {
  display: block;
}

.dropdown-button span,
.dropdown-button2 span {
  margin-left: 5px;
}

.form-input {
  margin: 5px 0;
}

.form-control {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: none;
  -webkit-appearance: none;
  background: #fff;
  padding-left: 10px;
  color: #6D7787;
  background-color: #ffffff;
  background-position: 7px 9px !important;
  background-repeat: no-repeat !important;
  background-size: 22px !important;
  padding-left: 35px;
  font-size: 16px !important;
}

.btn-light:hover {
  background-color: var(--primaryColor);
  color: #fff;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #6D7787;
  font-size: 16px !important;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6D7787;
  opacity: 1;
  font-size: 16px !important;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6D7787;
  opacity: 1;
  font-size: 16px !important;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6D7787;
  font-size: 16px !important;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6D7787;
  font-size: 16px !important;
}

::placeholder {
  /* Most modern browsers support this now. */
  color: #6D7787;
  font-size: 16px !important;
}

.form-input input#name,
.form-input input#surname {
  background-image: url('/img/form/form-name.svg');
}

.form-input input#company {
  background-image: url('/img/form/form-buiding.svg');
}

.form-input input#email {
  background-image: url('/img/form/form-email.svg');
}

.form-input input#phone {
  background-image: url('/img/form/form-phone.svg');
}

.form-input input#vat {
  background-image: url('/img/form/form-vat.svg');
}

/* Autofill style */
input:-webkit-autofill,
input:-internal-autofill-selected {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #6D7787;
}

input:-webkit-autofill:focus {
  -webkit-text-fill-color: #6D7787;
}

.form-check {
  text-align: left;
}

.form-check label {
  margin: 10px 0 0 -10px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--primaryColor);
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #fff;
  border: 1px solid var(--primaryColor);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--primaryColor);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0.5px;
  margin-top: -0px;
  font-size: 10px;
}

#politica-link {
  color: var(--primaryColor);
}

#politica-link:hover {
  color: var(--primaryColor);
}

#disc {
  font-size: 8.5px;
}

.form-button {
  margin: 30px auto 0 auto;
  border-radius: 70px;
  background: var(--secondaryColor);
  width: 250px;
  height: 45px;
  border: none;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}

.form-button:hover {
  background: var(--primaryColor);
  color: #fff;
  transform: scale(1.05);
}

.error,
#termos-error {
  font-size: 12px;
  line-height: 1;
  color: red;
  font-style: normal;
}

#termos-error {
  width: 95%;
  text-align: center;
}

/* Message */
.message-box {
  width: 450px;
  height: auto;
  border-radius: 20px;
  background: rgba(241, 247, 255, 0.85);
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 20px;
  justify-content: center;
  flex-direction: column;
}

.message-box h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--primaryColor);
  line-height: 1.1;
  margin-bottom: 10px;
}

.message-box p {
  font-size: 18px;
  line-height: 1.2;
  max-width: 80%;
  margin: 0 auto;
}

.message-box h5 {
  font-size: 25px;
  font-weight: 700;
  color: var(--primaryColor);
  margin-top: 20px;
  line-height: 1;
}

.img-slider {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-slider img {
  position: absolute;
  width: 180px;
  height: auto;
  opacity: 0;
  animation: fade 7s infinite;
  margin: 0 auto;
}

.img-slider img:nth-child(1) {
  animation-delay: 0s;
}

.img-slider img:nth-child(2) {
  animation-delay: 3s;
}

@keyframes fade {

  0%,
  20% {
    opacity: 1;
  }

  40%,
  100% {
    opacity: 0;
  }
}

/* Section 1 */
.section1 {
  text-align: left;
  padding: 60px 0 0;
  background: #ffffff;
}

.sec1-txt { 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    text-wrap: balance;
}

.sec1-txt h3 {
  color: var(--primaryColor);
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 45px;
}

.sec1-txt h4 {
  color: var(--secondaryColor);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sec1-cards p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto;  
}

.cards-sec1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards-sec1 img {
  width: 220px;
  margin: 0 20px;
  transition: all 0.3s ease;
}

.cards-sec1 img:hover,
.circle-center img:hover {
  transform: scale(1.1);
}

/* section2 */
.section2 {
  background: rgb(255, 255, 255); 
  margin-top: 0;
  padding-bottom: 60px;
}

.section2-inner {
  background: #FFF; 
  width: 100% !important;
  padding: 10px 0 40px;
}

.circle-center {
  width: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle-center img {
  transition: all 0.3s ease;
}

.list-txt h6 {
  color: var(--primaryColor);
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin-bottom: 10px;
}

.list-txt p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0;
  padding: 0;
}

.circle-container {
  position: relative;
  width: 375px;
  height: 375px;
  border: 3px dotted #444;
  border-radius: 50%;
  margin: 50px auto;
}

.list {
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: rotate(calc(90deg * var(--i))) translate(170px) rotate(calc(-90deg * var(--i))) translate(-50%, -50%);
  text-align: center;
}


.list img {
  width: 80px;
  display: block;
  height: 80px;
  padding: 15px;
  cursor: pointer;
  border-radius: 20px;
  background-color: #f1f7ff;
}

.list-txt {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 10;
}

.vants .list .list-txt {
  display: block;
}

.vants div {
  min-height: 100px;
}

.vants div h6 {
  color: var(--primaryColor);
  font-size: 24px;
  text-align: center;
  margin-top: auto;
}

.vants img {
  display: none;
}

.vants div p {
  text-align: center;
  text-wrap: balance;
  margin-bottom: auto;
}

.list:hover .list-txt {
  display: block;
}

.sec2-img {
  background: url('/img/img1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 850px;
  height: 750px;
  position: absolute;
  right: 0;
  border-radius: 500px 0 0 500px;
}

.slick-dots {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid var(--primaryColor);
  text-indent: -9999px;
}

.slick-dots li.slick-active button {
  background-color: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

/* Section 3 */
.section3 {
  background: linear-gradient(0deg, rgb(233, 233, 233) 10%, #F1F7FF 10%, #F1F7FF 90%, rgb(255, 255, 255) 90%);
  padding: 60px 0;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.section3 video {
  border-radius: 0 500px 500px 0;
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 700px;
}

.vant-list-title {
  text-wrap: balance;
  font-size: 30px;
  font-weight: 700;
  color: var(--primaryColor);
  padding-left: 30px;
  margin-bottom: 20px;
}

.vant-list {
  margin: 10px 0 20px 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.vant-list img {
  height: 45px;
  margin-right: 20px;
}

.vant-list p {
  font-size: 16px;
  line-height: 1.1;
  margin: 0;
}

.vant-list p b {
  font-size: 18px;
  color: var(--secondaryColor);
}

.vant-list-title {
  text-align: center;
}

/* footer */
.footer {
  background: #E9E9E9;
}

.footer-inner {
  background: #ffffff;
  padding: 10px 0;
  border-radius: 200px 0 0 200px;
}

.footer-card {
  text-align: center;
}

.footer-card img {
  max-width: 100%;
}

.footer-txt h3 {
  color: var(--primaryColor);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 90%;
}

.footer-txt h3 span {
  color: var(--primaryColor);
}

.footer-cta {
  width: 320px;
  height: 60px;
  border: none;
  border-radius: 50px;
  background: var(--secondaryColor);
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-cta:hover {
  background: var(--primaryColor);
  color: #fff;
  transform: scale(1.05);
}

/* Adstartegy */
#section-ads {
  text-align: center;
  padding: 30px 0;
  background: #E9E9E9;
}

/* Media Queries */
@media only screen and (max-width: 1650px) {
  .sec2-img {
    width: 800px;
  }
}

@media only screen and (max-width: 1650px) {
  .sec2-img {
    width: 750px;
  }
}

@media only screen and (max-width: 1500px) {
  .list-box {
    margin-left: -120px;
  }
}

@media only screen and (max-width: 1400px) {
  #contactform h3 {
    font-size: 22px;
  }

  #contactform:before {
    left: -55px;
  }

  .drop {
    margin-left: 35px !important;
  }

  .section2-inner {
    width: 75%;
  }

  .sec2-img {
    width: 650px;
    height: 650px;
  }

  .sec1-cards p {
    font-size: 16px;
    max-width: 90%;
  }

  .sec1-txt h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1300px) {
  .sec2-img {
    width: 550px;
    height: 650px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 27px;
  }

  .header-txt p {
    font-size: 18px;
    max-width: 90%;
  }

  #contactform {
    width: 545px;
  }

  .sec1-cards img {
    width: 100%;
  }

  .sec1-cards p {
    max-width: 100%;
  }

  .list-box {
    margin-left: -80px;
  }

  .sec2-img {
    width: 500px;
    height: 600px;
  }

  .section2-inner {
    width: 82%;
  }
}

@media only screen and (max-width: 1080px) {
  #contactform {
    width: 530px;
  }

  .drop {
    margin-left: 25px !important;
  }

  .list-box {
    margin-left: -150px;
  }
}

@media only screen and (max-width: 1020px) {
  .list-box {
    margin-left: -220px;
  }

  #contactform {
    width: 520px;
  }
}

@media only screen and (max-width: 991px) {
    .sec1-txt{
        text-align: center;
    }
  #contactform,
  .message-box {
    width: 420px;
  }

  #contactform h3 {
    font-size: 20px;
  }

  #contactform:before {
    width: 100px;
    height: 100px;
  }

  .drop {
    display: none;
  }

  .header-txt img {
    width: 250px;
  }

  .header-txt h1 {
    font-size: 25px;
  }

  .header-txt p {
    font-size: 16px;
    max-width: 95%;
  }

  .sec1-txt h3 {
    max-width: 100%;
    font-size: 20px;
  }

  .section3 video {
    min-height: unset;
    max-width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 100px 100px 100px 100px;
  }

  .section3 {
    background: linear-gradient(0deg, rgb(233, 233, 233) 10%, #F1F7FF 10%, #F1F7FF 100%, rgb(233, 233, 233) 100%);
  }

  .footer {
    padding-top: 80px;
  }

  .circle-container {
    margin-bottom: 70px;
  }

  .list:hover .list-txt {
    display: none;
  }

  .section2-inner {
    padding: 60px 0;
    width: 100%;
  }

  .circle-container .list img.active {
    border: 3px solid var(--primaryColor);
    transform: scale(1.2);
    transition: all 0.3s ease;
  }

  .slick-dots {
    justify-content: center;
  }

  .sec2-img {
    width: 400px;
    height: 350px;
  }

  .slick-mobile {
    width: 100%;
  }

  .list {
    margin: 5px 0;
  }

  .list img {
    margin: 0 0 10px 0;
  }

  .list-txt p {
    max-width: 75%;
  }

  .section2 {
    padding-bottom: 100px;
  }

  .footer {
    text-align: center;
  }

  .footer-inner {
    width: 85%;
    margin: 0 auto;
    border-radius: 500px 500px 0 0;
    padding-bottom: 50px;
  }

  .footer-txt h3 {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }

  .footer-card img {
    margin-top: -100px;
  }
}

@media only screen and (max-width: 900px) {

  #contactform,
  .message-box {
    width: 400px;
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 850px) {

  #contactform,
  .message-box {
    width: 395px;
    padding: 30px 0px;
  }

  .sec1-txt h3 {
    font-size: 25px;
  }

  .sec2-img {
    width: 350px;
    height: 350px;
  }

  .section2-inner {
    width: 100%;
    border-radius: 0;
  }
}

@media only screen and (max-width: 768px) {

  #contactform,
  .message-box {
    width: 100%;
    padding: 30px 40px;
    margin-top: 60px;
  }

  #contactform h3 {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }

  #contactform:before {
    width: 120px;
    height: 120px;
  }

  .list-txt {
    max-width: 80%;
  }

  .list-txt p {
    max-width: 100%;
  }

  .section2-inner {
    padding: 40px 0;
  }

  .sec2-img {
    width: 300px;
    height: 350px;
  }

  .sec1-cards {
    margin-bottom: 40px;
  }

  .sec1-cards img {
    width: 200px;
  }

  .sec1-cards h4,
  .sec1-cards p {
    height: auto;
  }

  .sec1-cards h4 {
    margin-bottom: 10px;
  }

  .sec1-cards p {
    max-width: 80%;
    margin: 0 auto 20px auto;
  }

  .sec1-txt {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 700px) {
  .sec2-img {
    display: none;
  }


  .list-box {
    margin-left: 0;
  }

  .list-txt {
    max-width: 100%;
  }

  .list-txt p {
    max-width: 80%;
  }

  .section2 {
    margin-top: 0;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 580px) {

  .list-txt p {
    max-width: 90%;
  }

  .cards-sec1 {
    flex-direction: column;
  }

  .cards-sec1 img {
    margin: 20px 0;
  }
}

@media only screen and (max-width: 510px) {
  #contactform:before {
    display: none;
  }

  .circle-container {
    display: none;
  }

  .vants div img {
    display: flex;
    margin: 20px auto 40px;
    background-color: #fff;
    border-radius: 20px;
    width: 150px;
    height: 150px;
    padding: 20px;
  }

  .header-txt h1 {
    text-wrap: balance;
    max-width: 100%;
    margin-top: 30px;
  }

  #contactform,
  .message-box {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 450px) {
  .footer-inner {
    width: 95%;
  }

  .footer-cta {
    width: 100%;
  }

  .sec1-txt h3 {
    font-size: 22px;
  }

  .footer-txt h3 {
    width: 90%;
    font-size: 22px;
  }

  #contactform h3 {
    max-width: 95%;
  }

  .vant-list {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 375px) {
  .footer-txt h3 {
    width: 95%;
    font-size: 20px;
  }

  .sec1-txt h3 {
    font-size: 20px;
  }

  .sec1-cards p {
    max-width: 90%;
  }

  .form-button {
    width: 100%;
  }

  .vant-list {
    margin-left: 10px;
  }

  .vant-list p {
    font-size: 14px;
  }

  .section3 * {
    --bs-gutter-x: 0;
  }

  .section3 {
    padding: 30px 15px;
  }

  .vant-list {
    flex-direction: column;
  }

  .vant-list img {
    margin: 0 auto 20px;
  }
    .vant-list{
      margin-left: 0;
    }
  .vant-list p {
    text-align: center;
    text-wrap: balance;
  }

  .section3 .vant-list-title {
    padding: 0;
  }
}

@media only screen and (max-width: 320px) {
  .header-txt h1 {
    text-align: center;
  }

  #contactform {
    padding: 30px 25px;
  }

  #contactform h3 {
    max-width: 100%;
  }
}