@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;500;600;700&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: Roboto;
}

html {
  scroll-behavior: smooth;
}

.gray {
  background: #efefef;
}

.card-container {
  display: grid;
  padding: 64px 128px;
  gap: 24px;
}
.card-container .title {
  justify-self: center;
  display: flex;
  gap: 32px;
  align-items: center;
}
.card-container .title img {
  width: 48px;
  height: 48px;
}
.card-container .title p {
  font-size: 50px;
  font-weight: 600;
  line-height: 64px;
}
.card-container .subtitle {
  justify-self: center;
  color: #4f4f4f;
  font-size: 24px;
  font-weight: 600;
  line-height: 44.8px;
}
.card-container .tertiary-title {
  justify-self: center;
  color: #606060;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.card-list-wrapper {
  width: 100%;
  max-width: 1920px;
  overflow-x: auto;
  display: flex;
  justify-content: flex-start;
  justify-self: center;
}

.card-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card-list-v2 {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  overflow-x: auto;
}

.card {
  display: flex;
  padding: 24px 24px 32px 24px;
  flex-direction: column;
  gap: 36px;
  width: 280px;
  border-radius: 12px;
  background: #FFF;
  border: 1px solid #c7c7c7;
  font-weight: 500;
  font-style: normal;
  line-height: 22.4px;
}
.card .card-content {
  gap: 36px;
  display: flex;
  flex-direction: column;
}
.card .card-content .title-content {
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.card .card-content .main-title {
  font-size: 20px;
  line-height: 28px;
}
.card .card-content .card-date {
  border-radius: 360px;
  background: #EDEDED;
  color: #4C4C4C;
  font-size: 16px;
  padding: 0 8px;
  align-self: flex-start;
}
.card .card-buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.card .card-buttons a, .card .card-buttons button {
  text-align: center;
  border: none;
  padding: 16px 24px;
  cursor: pointer;
}
.card .card-buttons .primary-buttons {
  text-decoration: none;
  border-radius: 4px;
  background: var(--Brand, #0A2D81);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
}
.card .card-buttons .secondary-buttons {
  border-radius: 4px;
  border: 1px solid var(--Brand, #0A2D81);
  color: var(--Brand, #0A2D81);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
}

.secondary-card {
  display: flex;
  width: 316px;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  border-radius: 8px;
  padding-bottom: 40px;
  border: 1px solid var(--200, #efefef);
  background: var(--100, #f9f9f9);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}
.secondary-card h2 {
  padding: 20px;
  gap: 10px;
  color: var(--Black, #212121);
  font-size: 20px;
  font-weight: 500;
  line-height: 20.837px;
}
.secondary-card img {
  max-height: 266px;
  height: 100%;
  align-self: stretch;
  margin: 20px;
}
.secondary-card .card-buttons {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-self: stretch;
  width: 90%;
  margin: 0 auto;
}
.secondary-card .card-buttons a {
  text-align: center;
  border: none;
  padding: 16px 24px;
  cursor: pointer;
}
.secondary-card .card-buttons .primary-buttons {
  text-decoration: none;
  border-radius: 4px;
  background: var(--Brand, #0A2D81);
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
}
.secondary-card .card-buttons .secondary-buttons {
  border-radius: 4px;
  border: 1px solid var(--Brand, #0A2D81);
  color: var(--Brand, #0A2D81);
  font-family: Roboto;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .card-container {
    padding: 64px 48px;
  }
  .card-container .title {
    gap: 20px;
  }
  .card-container .title img {
    width: 32px;
    height: 32px;
  }
  .card-container .title p {
    font-size: 32px;
  }
  .card-container .subtitle {
    font-size: 18px;
  }
  .card-container .tertiary-title {
    font-size: 14px;
  }
  .card-container .card-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}
@media screen and (max-width: 680px) {
  .card-container {
    padding: 64px 16px;
    gap: 16px;
  }
  .card-container .title {
    gap: 12px;
  }
  .card-container .title img {
    width: 24px;
    height: 24px;
  }
  .card-container .title p {
    font-size: 28px;
  }
  .card-container .subtitle {
    font-size: 16px;
  }
  .card-container .tertiary-title {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .card-container .card-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  padding: 16px 58px;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 2;
}
.header-container .pic-logo {
  height: 100%;
}
.header-container .pic-logo img {
  width: 132px;
}
.header-container .nav-container {
  display: flex;
  align-items: center;
  height: 68px;
}
.header-container .nav-container a {
  text-decoration: none;
  padding: 16px;
  text-transform: uppercase;
  color: #606060;
  font-size: 16px;
  cursor: pointer;
}
.header-container .menu-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.header-container .menu-container .button-layout {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  width: 130px;
  background-color: #0A2D81;
  border-radius: 8px;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  border: none;
}
.header-container .menu-container #menu-toggle {
  display: none;
}
.header-container .menu-container #menu-icon {
  display: none;
  padding-top: 5px;
}
.header-container .menu-container #menu-icon ion-icon {
  width: 30px;
  height: 40px;
  color: #0A2D81;
}

.menu-dropdown {
  background-color: #fff;
  display: none;
}
.menu-dropdown .menu {
  display: none;
  list-style-type: none;
  position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 16px 0px;
  border-top: 1px solid #7b7b7b;
  background-color: #fff;
  width: 100%;
  top: 100px;
  right: 0px;
  transition: left 0.3s ease;
  gap: 20px;
}
.menu-dropdown .menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 90%;
}
.menu-dropdown .menu li a {
  display: block;
  color: #0A2D81;
  text-decoration: none;
  padding: 15px 20px;
  background: #e4e4e4;
  border-radius: 4px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.2px;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: stretch;
  height: 600px;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%), center/cover no-repeat url(../assets/Banner/FrontImagePR2.png), lightgray 50%;
}
.image-container .text-container {
  width: 50%;
  margin-left: 58px;
}
.image-container .text-container h1 {
  font-size: 36px;
  margin-bottom: 16px;
}
.image-container .text-container p {
  font-size: 18px;
  font-weight: 200;
  line-height: 33.6px;
  margin-bottom: 48px;
}
.image-container .text-container button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #0A2D81;
  border-radius: 8px;
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  border: none;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .header-container .menu-container #menu-toggle {
    display: block;
    z-index: 2;
    position: absolute;
    height: 50px;
    width: 50px;
    opacity: 0;
    cursor: pointer;
    outline: none;
  }
  .image-container .text-container {
    padding: 0 48px;
    margin: 0;
    width: 100%;
  }
  .nav-container {
    bottom: 2000px;
    overflow: hidden;
    position: relative;
    width: 0px;
  }
  .header-container {
    padding: 16px 26px 16px 46px;
  }
  .header-container .menu-container .button-layout {
    text-align: center;
    padding: 12px 16px;
    width: 130px;
  }
  .header-container .menu-container #menu-icon {
    display: block;
  }
  .header-container .menu-container .menu-dropdown .menu {
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 16px 0px;
  }
  .header-container .menu-container .menu-dropdown .menu li {
    width: 90%;
  }
}
@media screen and (max-width: 680px) {
  .header-container .menu-container #menu-toggle {
    display: block;
    z-index: 2;
    position: absolute;
    height: 50px;
    width: 50px;
    opacity: 0;
    cursor: pointer;
    outline: none;
  }
  .image-container .text-container {
    padding: 0 48px;
    width: 100%;
    margin: 0;
  }
  .image-container .text-container h1 {
    font-size: 28px;
  }
  .image-container .text-container p {
    font-size: 16px;
    line-height: 24px;
  }
  .image-container .text-container button {
    padding: 16px 15px;
  }
  .nav-container {
    bottom: 2000px;
    overflow: hidden;
    position: relative;
    width: 0px;
  }
  .header-container {
    padding: 16px 10px 16px 20px;
  }
  .header-container .menu-container .button-layout {
    text-align: center;
    padding: 12px 16px;
    width: 130px;
  }
  .header-container .menu-container #menu-icon {
    display: block;
  }
  .header-container .pic-logo img {
    width: 100px;
  }
  .header-container .button-layout {
    text-align: center;
    padding: 12px 16px;
    width: 130px;
  }
}
.info-inverted {
  flex-direction: row-reverse;
}

.info-consorcio {
  display: flex;
  gap: 48px;
}
.info-consorcio img {
  width: 100%;
  max-width: 650px;
  height: auto;
}
.info-consorcio .accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  height: auto;
}
.info-consorcio .accordion p {
  padding-bottom: 24px;
  color: #606060;
  font-size: 16px;
  line-height: 30px;
}
.info-consorcio .accordion a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #0A2D81;
  border-radius: 8px;
  color: #fff;
  text-transform: capitalize;
  font-size: 16px;
  border: none;
  text-decoration: none;
}
.info-consorcio .accordion a:hover {
  cursor: pointer;
}

.consorcio-card {
  height: 380px;
}
.consorcio-card .card1 {
  background-image: url(../assets/porsche-car.png);
  background-repeat: no-repeat;
  height: 380px;
  color: #fff;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .info-consorcio {
    flex-direction: column;
    align-items: center;
  }
  .info-consorcio img {
    width: 100%;
    max-width: 100%;
  }
  .info-consorcio .accordion h1 {
    font-size: 21px;
  }
}
@media screen and (max-width: 680px) {
  .info-consorcio {
    flex-direction: column;
  }
  .info-consorcio .accordion h1 {
    font-size: 21px;
  }
  .info-consorcio .accordion p {
    font-size: 14px;
  }
  .info-consorcio .accordion button {
    padding: 12px 16px;
  }
}
.localization {
  display: flex;
  padding: 48px;
  align-items: center;
  margin: 0 auto;
  gap: 24px;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
.localization .address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
}
.localization .address h2 {
  font-size: 20px;
  font-weight: 700;
}
.localization .address p {
  color: #606060;
  font-size: 16px;
  line-height: 25px;
}
.localization .address .navigation-button {
  display: flex;
  text-decoration: none;
  align-items: center;
  color: #FFF;
  padding: 16px 24px;
  border-radius: 8px;
  background: var(--Brand, #0A2D81);
}
.localization .address .navigation-button p {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.4px;
  margin-right: 10px;
}
.localization .address .navigation-button ion-icon {
  font-size: 20px;
}
.localization iframe {
  max-width: 50%;
  height: auto;
  max-height: 280px;
  align-self: stretch;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .localization {
    padding: 32px 16px;
  }
}
@media screen and (max-width: 680px) {
  .localization {
    flex-direction: column;
  }
  .localization .address {
    align-self: stretch;
  }
  .localization iframe {
    max-width: 100%;
  }
}
.footer-container {
  background: var(--100, #F9F9F9);
}
.footer-container .about {
  display: flex;
  padding: 48px 128px 24px 128px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
.footer-container .about .cnpj {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-container .about .cnpj p {
  color: #606060;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.footer-container .about .navigation-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.footer-container .about .navigation-button ion-icon {
  color: #0A2D81;
  margin-right: 16px;
}
.footer-container .about .links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-container .direitos {
  width: 90%;
  border-top: 1px solid #D8D8D8;
  display: flex;
  margin: 0 auto;
  padding-bottom: 48px;
  padding-top: 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.footer-container .direitos p {
  color: #606060;
  font-size: 20px;
  font-weight: 400;
}
.footer-container .direitos span {
  color: var(--Brand, #0A2D81);
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-container .about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 0px 24px 48px;
    gap: 20px;
  }
  .footer-container .cnpj p {
    width: 60vmax;
  }
}
@media screen and (max-width: 680px) {
  .footer-container {
    display: flex;
    flex-direction: column;
  }
  .footer-container .about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 16px 48px 16px;
    gap: 18px;
  }
  .footer-container .direitos p,
  .footer-container .direitos span {
    font-size: 16px;
  }
}
.container_talktous {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.container_talktous .contactinfo {
  display: flex;
  flex-direction: column;
  width: 35%;
  padding: 48px;
  gap: 24px;
  margin-top: 50px;
}
.container_talktous .contactinfo .navigation-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.container_talktous .contactinfo .navigation-button ion-icon {
  color: #0A2D81;
  margin-right: 16px;
}
.container_talktous .talktous {
  display: flex;
  width: 65%;
  padding: 48px;
  margin: 50px 0px 0px 0px;
  gap: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
}
.container_talktous .talktous .form_talk {
  display: grid;
  width: 100%;
  grid-template-columns: 45% 55%;
  grid-template-rows: auto;
  gap: 20px;
}
.container_talktous .talktous .form_talk input {
  padding: 11px 11px;
  font-size: 16px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #999;
  background: #fff;
}
.container_talktous .talktous .form_talk #data_nascimento {
  padding: 10px 11px;
}
.container_talktous .talktous .form_talk .nome_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .email_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .cpf_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .year_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .phone_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .contato_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .contato_field label {
  width: 18em;
}
.container_talktous .talktous .form_talk .contato_field .option_contact {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice {
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;
}
.container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice span {
  padding: 11px 12px;
  display: flex;
  border-radius: 6px;
  border: 1px solid #999;
  background: #fff;
  color: #7b7b7b;
  justify-content: center;
  text-overflow: ellipsis;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 70%;
}
.container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice input:checked ~ span {
  background: var(--Brand, #0a2d81);
  color: #fff;
}
.container_talktous .talktous .form_talk .analise_field {
  gap: 4px;
  display: flex;
  flex-direction: column;
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .analise_field .option_credit {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.container_talktous .talktous .form_talk .analise_field .option_credit .analise_option {
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;
}
.container_talktous .talktous .form_talk .analise_field .option_credit .analise_option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container_talktous .talktous .form_talk .analise_field .option_credit .analise_option span {
  padding: 11px 12px;
  display: flex;
  border-radius: 6px;
  border: 1px solid #999;
  background: #fff;
  color: #7b7b7b;
  justify-content: center;
  text-overflow: ellipsis;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 80%;
}
.container_talktous .talktous .form_talk .analise_field .option_credit .analise_option input:checked ~ span {
  background: var(--Brand, #0a2d81);
  color: #fff;
}
.container_talktous .talktous .form_talk #mod_container {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  gap: 4px;
  display: none;
}
.container_talktous .talktous .form_talk #mod_container .modalidade_block {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
.container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option {
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 50%;
}
.container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option span {
  padding: 11px 12px;
  display: flex;
  border-radius: 6px;
  border: 1px solid #999;
  background: #fff;
  color: #7b7b7b;
  justify-content: center;
  text-overflow: ellipsis;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  width: 80%;
}
.container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option input:checked ~ span {
  background: var(--Brand, #0a2d81);
  color: #fff;
}
.container_talktous .talktous .form_talk #escolha {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  gap: 4px;
  display: none;
}
.container_talktous .talktous .form_talk #escolha #veiculos {
  background-color: white;
  border: 1px solid #000;
  border-radius: 0 0 5px 5px;
  border-top: none;
  font-family: roboto;
  padding: 5px;
  gap: 4px;
  overflow-y: auto;
}
.container_talktous .talktous .form_talk #escolha #veiculos option {
  background-color: white;
  padding: 4px;
  color: #000;
  margin-bottom: 1px;
  font-size: 18px;
  cursor: pointer;
}
.container_talktous .talktous .form_talk #escolha #veiculos option:hover {
  background-color: #0A2D81;
  color: white;
}
.container_talktous .talktous .form_talk #proposta {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  gap: 4px;
  display: none;
}
.container_talktous .talktous .form_talk .politica {
  grid-column: 1/span 2;
}
.container_talktous .talktous .form_talk .politica input {
  border-radius: var(--Brand, #0a2d81);
}
.container_talktous .talktous .form_talk .politica span {
  color: #7b7b7b;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .politica .link_blue {
  color: var(--Brand, #0a2d81);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.container_talktous .talktous .form_talk .button_field {
  grid-column: 1;
  padding: 8px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--Brand, #0a2d81);
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.4px;
}
.container_talktous .talktous .form_talk .button_field:hover {
  cursor: pointer;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .container_talktous .contactinfo {
    display: none;
  }
  .container_talktous .talktous {
    box-shadow: none;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .container_talktous .talktous .form_talk {
    margin: 22px 0px 22px 0px;
    grid-template-areas: "nome email . " "cpf nasc tel" "contato contato contato" "analise analise analise" "mod mod mod" "bem bem bem" "parcela parcela parcela" "privacidade privacidade ." "enviar enviar .";
    grid-template-columns: 10em 10em 10em;
    justify-content: center;
    gap: 20px;
  }
  .container_talktous .talktous .form_talk .nome_field {
    grid-area: nome;
    justify-content: center;
    width: 243px;
  }
  .container_talktous .talktous .form_talk .email_field {
    grid-area: email;
    justify-content: center;
    width: 243px;
    padding-left: 85px;
  }
  .container_talktous .talktous .form_talk .cpf_field {
    grid-area: cpf;
  }
  .container_talktous .talktous .form_talk .year_field {
    grid-area: nasc;
  }
  .container_talktous .talktous .form_talk .phone_field {
    grid-area: tel;
  }
  .container_talktous .talktous .form_talk .contato_field {
    grid-area: contato;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact {
    width: 100%;
    gap: 10px;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice {
    width: 100%;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice span {
    width: 85%;
  }
  .container_talktous .talktous .form_talk .analise_field {
    grid-area: analise;
  }
  .container_talktous .talktous .form_talk .analise_field .option_credit {
    gap: 20px;
  }
  .container_talktous .talktous .form_talk .analise_field .option_credit .analise_option {
    width: 100%;
  }
  .container_talktous .talktous .form_talk .analise_field .option_credit .analise_option span {
    width: 90%;
  }
  .container_talktous .talktous .form_talk #mod_container {
    grid-area: mod;
  }
  .container_talktous .talktous .form_talk #mod_container .modalidade_block {
    gap: 20px;
  }
  .container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option {
    width: 100%;
  }
  .container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option span {
    width: 90%;
  }
  .container_talktous .talktous .form_talk #escolha {
    grid-area: bem;
  }
  .container_talktous .talktous .form_talk #proposta {
    grid-area: parcela;
  }
  .container_talktous .talktous .form_talk .politica {
    grid-area: privacidade;
  }
  .container_talktous .talktous .form_talk .button_field {
    grid-area: enviar;
  }
}
@media screen and (max-width: 680px) {
  .container_talktous {
    align-items: center;
    justify-content: center;
    gap: 0px;
  }
  .container_talktous .contactinfo {
    display: none;
  }
  .container_talktous .talktous {
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    box-shadow: none;
    width: 100%;
    margin: 0;
  }
  .container_talktous .talktous .form_talk {
    display: flex;
    flex-direction: column;
  }
  .container_talktous .talktous .form_talk .email_field {
    padding-left: 0px;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice {
    width: 100%;
  }
  .container_talktous .talktous .form_talk .contato_field .option_contact .contato_choice span {
    width: auto;
  }
  .container_talktous .talktous .form_talk .analise_field .option_credit {
    gap: 16px;
  }
  .container_talktous .talktous .form_talk .analise_field .option_credit .analise_option span {
    width: auto;
  }
  .container_talktous .talktous .form_talk #mod_container .modalidade_block {
    gap: 16px;
  }
  .container_talktous .talktous .form_talk #mod_container .modalidade_block .modalidade_option span {
    width: auto;
  }
  .container_talktous .talktous .form_talk .button_field {
    width: 100%;
  }
}
@media screen and (max-width: 1270px) and (min-width: 1070px) {
  .container_talktous .talktous .form_talk .button_field {
    width: 40%;
  }
}
.ContainerDetails {
  display: flex;
  background-color: #efefef;
  align-items: center;
  justify-content: center;
  padding: 0px 40px 0px 40px;
}
.ContainerDetails .ContainerSeparator {
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}
.ContainerDetails .ContainerSeparator .navigation-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background-color: #0A2D81;
  color: white;
  gap: 10px;
  width: 80px;
  border-radius: 8px;
  text-decoration: none;
  font-family: Roboto;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo {
  display: flex;
  gap: 24px;
  padding-top: 64px;
  padding-bottom: 128px;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector img {
  height: 4vmax;
  width: 4vmax;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo img {
  border: 2px solid #d7d7d7;
  border-radius: 4px;
  height: 30vmax;
  width: 30vmax;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo {
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  color: #616161;
  width: auto;
  height: auto;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo ::marker {
  margin: 0;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo h1 {
  color: #000;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo p {
  color: #000;
  padding-bottom: 4px;
  line-height: 22px;
  font-size: 18px;
  font-weight: 400;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo li {
  line-height: 27px;
  font-weight: 400;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo button, .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo a {
  background-color: #0A2D81;
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 12px 32px 12px 32px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 20px;
  border: none;
  text-decoration: none;
}
.ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo button:hover, .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo a:hover {
  cursor: pointer;
}

@media screen and (min-width: 681px) and (max-width: 1270px) {
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo {
    padding-top: 40px;
    flex-direction: column;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector {
    flex-direction: row;
    order: 2;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector img {
    height: 6vmax;
    width: 6vmax;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo img {
    order: 1;
    height: 70vmax;
    width: 70vmax;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo {
    order: 3;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo h1 {
    font-size: 28px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo p {
    font-size: 24px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo button {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo {
    flex-direction: column;
    padding-top: 30px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector {
    flex-direction: row;
    order: 2;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector img {
    height: 6vmax;
    width: 6vmax;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo img {
    order: 1;
    height: 42vh;
    width: 42vh;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo {
    order: 3;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo h1 {
    font-size: 18px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo p {
    font-size: 14px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo li {
    font-size: 14px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo button {
    font-size: 18px;
  }
}
@media screen and (max-width: 1270px) and (min-width: 1070px) {
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo {
    flex-direction: column;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector {
    flex-direction: row;
    order: 2;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ImageSelector img {
    height: 6vmax;
    width: 6vmax;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo img {
    order: 1;
    height: 60vmax;
    width: 60vmax;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo {
    order: 3;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo h1 {
    font-size: 28px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo p {
    font-size: 24px;
  }
  .ContainerDetails .ContainerSeparator .ContainerDetailsInfo .ProductInfo button {
    font-size: 28px;
  }
}
.toast {
  position: fixed;
  background-color: #fff;
  max-width: 400px;
  height: 88px;
  top: 130px;
  right: 48px;
  border-radius: 8px;
  padding: 20px;
  z-index: 1000;
  border-left: 4px #289A3F solid;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  display: none;
  align-items: center;
  gap: 16px;
}
.toast .toast-icon {
  font-size: 32px;
  color: #289A3F;
}
.toast .toast-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast .toast-text .toast-title {
  color: var(--Black, #212121);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.toast .toast-text .toast-content {
  color: var(--Grey, #616161);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 680px) {
  .toast {
    right: 16px;
    max-width: 300px;
  }
}

/*# sourceMappingURL=index.css.map */
