@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");

:root {
  --blue: #114484;
  --gray: #666666;
  --darkBlue: #160c91;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto";
}

.container {
  width: 1280px;
  margin: 0 auto;
}

.mobile {
  display: none;
}

.mobile3 {
  display: none !important;
}

.row {
  display: flex;
  align-items: center;
}

.s-b {
  justify-content: space-between;
}

#header {
  width: 100%;
  height: 80px;
  background-color: white;
  box-shadow: 0px 4px 10px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
}

#backArrow {
  margin-right: 5px;
}

#backTo {
  cursor: pointer;
  padding: 8px 8px 8px 0;
  width: fit-content;
  color: var(--blue);
  font-weight: 500;
  font-size: 16px;
  position: absolute;
}

#logoImg {
  width: 160px;
  justify-self: center;
  margin: 0 auto;
}

.title {
  color: var(--blue);
  font-weight: 500;
}

.description {
  font-weight: 400;
  color: var(--gray);
}

#welcome {
  width: 45%;
  /* margin-top: 94px; */
}

#welcome-title {
  font-size: 42px;
}

#welcome-description {
  margin-top: 32px;
  line-height: 23px;
}

.img-topo {
  width: 50%;
  overflow: hidden;
}

.container-form {
  width: 100%;
  padding: 110px 0 64px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#formPrivacy {
  width: 540px;
  margin: 0 auto;
}

#form-title {
  font-size: 48px;
  width: 540px;
}

#form-desc {
  margin-top: 16px;
  width: 540px;
}

.form-sub {
  font-weight: 700;
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 4px;
}

#dealership-desktop {
  width: 100%;
}

#dealership-mobile {
  width: 100%;
  display: none;
}

.row-dealership {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
}

.dealerships {
  width: 32%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background-color: #F6F6F6;
  box-sizing: border-box;
  border-radius: 3px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealerships img {
  width: 114px;
}

.dealerships:hover {
  transition: all 0.4s;
  transform: scale(1.05);
  background-color: #fff;
}

.active-dealership {
  background-color: var(--blue);
  box-shadow: 0px 0px 5px 5px rgba(123, 3, 3, 0.04);
}

.active-dealership:hover {
  background-color: var(--blue);
  transform: none;
  transition: none;
}

.card-info {
  background-color: #114484;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.info-lgpd {
  height: 405px;
  width: 1280px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.info-lgpd-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 423px;
  text-align: center;
}

.info-lgpd-content-title {
  background-color: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  gap: 10px;
  border-radius: 8px 8px 0 0;
}

.whom-applies {
  width: 435px;
}

.info-lgpd-content-text {
  height: 252px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px 24px 16px;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
}

.info-lgpd-content h2 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans";
  line-height: 25px;
  color: #5a90d1;
  text-transform: uppercase;
}

.info-lgpd-content p {
  font-size: 16px;
  font-family: "Open Sans";
  line-height: 24px;
  color: #2d2d2d;
  font-weight: 400;
}

.common-questions {
  display: flex;
  justify-content: center;
  background-color: #F6F6F6;
  min-height: 490px;
}

.common-questions-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 12px;
}

.common-questions-content-title h2 {
  text-align: center;
  color: #5A90D1;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

.common-questions-content-options {
  display: flex;
  gap: 24px;
}

.common-questions-content-options-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.common-questions-content-options-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.common-questions-content-option1, .common-questions-content-option2, .common-questions-content-option3, .common-questions-content-option4, .common-questions-content-option5, .common-questions-content-option6 {
  width: 436px;
  padding: 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  cursor: pointer;
  transition: gap .3s ease;
}

.common-questions-content-option4 > .question > p {
  padding-right: 12px;
}

.opt1, .opt2, .opt3, .opt4, .opt5, .opt6 {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}

.question {
  display: flex;
  justify-content: space-between;
}

#vector1, #vector2, #vector3, #vector4, #vector5, #vector6 {
  transition: transform .3s ease;
}

.question p {
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 700;
  line-height: 20px;
  color: #2D2D2D;
}

label {
  color: var(--gray);
}

.marcas{
  background-color: #F9F9F9
}

.title-and-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select {
  padding: 0 2%;
  margin-top: 4px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--gray);
  color: var(--gray);
  font-size: 16px;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0px 0px 3px 0px var(--blue);
}

#btn-submit {
  all: unset;
  background-color: var(--blue);
  color: white;
  width: 120px;
  height: 44px;
  margin-top: 24px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

#btn-submit:hover {
  transition: all 0.4s;
  background-color: var(--darkBlue);
}

#privacies {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

.privacy {
  width: 32%;
}

#important-title {
  font-size: 32px;
}

#important-desc {
  margin-top: 24px;
}

.title.politics {
  font-size: 24px;
}

.description.politics {
  font-size: 15px;
  margin-top: 16px;
}

.form-sub.description{
  margin-bottom: 7px
}

#footer {
  font-size: 14px;
  font-family: "Roboto";
  color: #fff;
  text-align: center;
  padding: 34px 0;
  background-color: #0D4D8A;
}

#footer a {
  color: #fff;
}

.mobile2 {
  display: none;
}

a {
  color: var(--blue);
  text-decoration: underline;
}

#mensagem {
  resize: none;
  height: auto;
  padding: 2%;
}

.background {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: none;
}

.modal {
  margin: 0 auto;
  width: 700px;
  height: 460px;
  background-color: white;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.modal-container {
  padding-top: 20px;
}

.modal-message {
  color: var(--blue);
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  margin-top: 20px;
}

.img-modal {
  width: 180px;
  margin: 0 auto;
}

.c-icon {
  filter: invert(56%) sepia(49%) saturate(486%) hue-rotate(71deg)
    brightness(91%) contrast(87%);
}

.close-modal {
  width: fit-content;
  margin: 0 20px 0 auto;
  text-align: center;
  background-color: var(--blue);
  color: white;
  border-radius: 50%;
  width: 34px;
  padding: 8px 0;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#close-modal:active {
  box-shadow: none;
}
#select-dealership{
  margin-left: 20px;
}
#dealership-desktop{
  margin: 0 auto;
  width: 80%;
}

#select-cities{
  display: none;
}
/* 
.form-aviso {
  margin-top: 20px;
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
} */

#aviso-label{
  font-color: #000000;
  font-weight: bold;
}

#aviso {
  resize: none;
  height: auto;
}

.form-aviso1 {
  margin-top:20px;
}
.form-aviso {
  margin-top: 4px;
  color: var(--gray);
  font-size: 12px;
}

@media (max-width: 1399px) {
  .container {
    width: 1000px;
  }
  .info-lgpd {
    width: 1000px;
  }
}

@media (max-width: 1099px) {
  .container {
    width: 900px;
  }

  .info-lgpd {
    width: 900px;
  }

  #welcome {
    padding: 40px 0;
  }

  .row.s-b {
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .container {
    width: 85%;
  }

  .info-lgpd {
    width: 85%;
  }

  #formPrivacy {
    width: 80%;
  }

  #welcome-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .desktop {
    display: none;
  }

  .desktop2 {
    display: none;
  }

  #form-desc {
    width: 360px;
  }

  .mobile3 {
    display: flex !important;
  }

  .common-questions-content-options {
    flex-direction: column;
  }

  .title-and-description {
    align-items: normal;
  }

  .common-questions-content-option1, .common-questions-content-option2, .common-questions-content-option3, .common-questions-content-option4, .common-questions-content-option5, .common-questions-content-option6 {
    width: 352px;
  }

  .info-lgpd {
    flex-direction: column;
    justify-content: center;
    width: 353px;
    gap: 8px;
    height: 1072px;
    padding: 32px 0;
  }

  .mobile {
    display: block;
  }

  #formPrivacy {
    width: 100%;
  }

  .row.s-b {
    display: block;
  }

  #logoImg {
    margin: 0 0 0 auto;
  }

  #welcome {
    width: 100%;
    padding: 0;
    padding-top: 40px;
  }

  #welcome-title {
    font-size: 32px;
  }

  .img-topo {
    width: 100%;
  }

  .desktop-tablet {
    display: none;
  }

  .mobile2 {
    display: block;
  }

  #privacies {
    display: block;
  }

  .privacy {
    width: 100%;
    margin: 40px 0;
  }

  .modal {
    width: 100%;
    height: 100%;
  }

  .modal-container {
    overflow: scroll;
  }
}


@media (max-width: 600px) {
  .privacy {
    width: 100%;
  }

  #form-title {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  #dealership-mobile {
    display: block;
  }

  #dealership-desktop {
    display: none;
  }

  .dealerships {
    width: 48%;
  }
}

@media (max-width: 380px) {
  #logoImg {
    width: 40%;
  }
}

@media (max-width: 340px) {
  .dealership-logo {
    width: 80%;
  }

  #rc-anchor-container {
    width: 250px;
  }

  .rc-anchor-normal.rc-anchor-content {
    width: auto;
  }

  .rc-anchor-normal.rc-anchor-checkbox-label {
    width: auto;
  }

  .rc-anchor-normal.rc-anchor-pt {
    width: auto;
    right: auto;
    padding-right: 0px;
    margin: 2px 0 0 10px;
  }
}
