*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

body {
    font-family: "Public Sans", sans-serif;
}

/* button {
    border:none;
    background: none;
    cursor: pointer;
    font-family: inherit;
} */

/*header*/
/* .header {
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.header__title {
    font-size: 1.5rem;
    text-transform: uppercase;
    flex: 1;
}

.header__menu {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.header__link {
    text-decoration: none;
    color: #000;
}

.header__btn-container {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
} */

/*hero section */
.hero {
    text-align: center;
    display: flex;
    align-items: center;
}

.hero__bg{
    height: 100vh;
    background-image: linear-gradient(rgba(30, 107, 201, 0.7), rgba(3, 0, 105, 0.7)), url('../imgs/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero__title {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -0.05em;
    max-width: 15ch;
    margin-inline: auto;
    color: #fff;
}

.hero__description {
    font-size: 1.2rem; 
    max-width: 50ch;
    margin: 1rem auto;
    color: #fff;
}

.hero__leftBlock{
    justify-content: center;
    flex: 1;
    align-items: center;
}

.hero__rightBlock{
    justify-content: flex-end!important;
    height: 60%!important;
    min-width: 40%!important;
    flex:1!important;
}

.header__bars{
    display: none;
}



/*services*/

.heroServices__bg{
    height: 60vh;
    background-image: linear-gradient(rgba(30, 107, 201, 0.7), rgba(3, 0, 105, 0.7)), url('../imgs/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* simulador */

.hero__simulador {
    text-align: start!important;
    color: white!important;
    display: flex!important;
    flex-direction: column!important;
    background-color: rgb(72, 72, 212)!important;
    padding: 2rem 3rem!important;
    border-radius: 1rem!important;
}





/*main simulator */

.main__simulador {
    display: none;
}

/*---*/


/*pagina simulador*/

.simulador__icon {
    height: 4rem;
    margin: 0;
    padding: 0;
}

.simulador__row{
    flex-wrap: wrap;
    display: flex;
    gap:5rem;
    margin-inline: auto;
    align-items: center;
}

.simulador__leftBlock {
    /* padding: 1rem 1rem; */
    /* height: 80vh; */
}

.simulador__rightBlock {
    /* height: 80vh; */
    background-color: rgb(228, 228, 228);
    border-radius: 1rem;
}

.simulador__slider {
    width: 100%;
}

.simulador__parcela {
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.simulador__container {
        display: flex;
    }

.simulador__financiamento{
    background-color: rgb(72, 72, 212);
    border-radius: 1rem;
}

.simulador__financiamento-title {
    color: white;
}

.simulador__title {
    color: blue;
}

.simulador__frame {
    border-radius: 1rem;
    border: solid white 4px;
}


.financ__totalValue {
    color: rgb(230, 104, 104);
    font-weight: 700;
}

/*motocicletas.php bg*/
.heroMotorbike__bg{
    height: 60vh;
    background-image: url('../imgs/motos.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*carros.php bg*/
.heroCar__bg{
    height: 60vh;
    background-image: url('../imgs/carros.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*imoveis.php bg*/
.heroHouse__bg{
    height: 60vh;
    background-image: url('../imgs/imoveis.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*nauticos.php bg*/
.heroBoat__bg{
    height: 60vh;
    background-image: url('../imgs/nauticos.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*pesados.php bg*/
.heroTruck__bg{
    height: 60vh;
    background-image: url('../imgs/pesados.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}





/*Accordion*/

.accordion {
  /* border: 1px solid #ccc;
  border-radius: 4px; */
  width: 100%;
}

.accordion__item {
  border-bottom: 1px solid #ddd;
}

.accordion__header {
  margin: 0;
}

.accordion__button {
  background: #f8f9fa;
  border: none;
  outline: none;
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
  padding-inline: 0.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
  color: #4d4d4d;
}

.accordion__button:hover {
  background: #e9ecef;
}

.accordion__content {
  display: none;
  padding: 1rem;
  background: #fff;
}

.accordion__content.show {
  display: block;
}



@media(max-width: 1200px) {
    .hero__simuladorResp {
        display: none!important;
    }

    .main__simulador {
    display: block;
    text-align: start;
    color: white;
    display: flex;
    flex-direction: column;
    background-color: rgb(72, 72, 212);
    }
}


@media (max-width: 709px){
    .header{
        justify-content: space-between;
    }

    .header__title {
        font-size: 1.2rem;
        flex: 0 1 auto;
    }

    .header__link {
        font-size: 0.8rem;
    }

    .hero__title{
        font-size: 3.8rem;
    }

    .header__btn{
        font-size: 0.8rem;
    }


    .simulador__financiamento{
        margin-top: 1rem;
    }


    .heroMotorbike__bg{
        height: 535px;
        background-image: url('../imgs/motos-mob.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .heroCar__bg{
        height: 535px;
        background-image: url('../imgs/carros-mob.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .heroHouse__bg{
        height: 535px;
        background-image: url('../imgs/imoveis-mob.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .heroBoat__bg{
        height: 535px;
        background-image: url('../imgs/nauticos-mob.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .heroTruck__bg{
        height: 535px;
        background-image: url('../imgs/pesados-mob.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }





}

@media (max-width: 674px){


    /* .header__title {
        font-size: 1.2rem;
    }

    .header__link {
        font-size: 0.8rem;
    }

    .hero__title{
        font-size: 3.6rem;
    }

    .header__btn{
        font-size: 0.8rem;
    }

    .header__menu{
        display: none;
    }

    .header__btn-container {
        display: none;
    }

    .header__bars{
        display: block;
        width:1.5rem;
        height: 1.5rem;
    } */
}

@media (max-width: 434px) {
    .hero__title{
        font-size: 2.5rem;
    }

    .hero__description{
        font-size: 1rem;
    }
}


/*utility class*/
.btn {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

/* .flex {
    flex: 1;
    margin-inline: 0.1rem;
}*/

/* .flexCustom {
    flex: 2;
    margin-inline: 0.1rem;
}  */

/* .row{
    flex-wrap: wrap;
    display: flex;
    } */


.py-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pt-1 {
    margin-top: 1rem;
}

.simulador__parcela-select{
    width: 100%;
    padding: 0.3rem;
    border-radius: 0.5rem;
    margin: 0.4rem 0;
    font-size: 1rem;
}

.justify-content-spacebetween {
    justify-content: space-between;
}

/* .p-1{
    padding: 1rem;
}

.p-2{
    padding: 2rem;
}

.p-3{
    padding: 3rem;
}

.p-4{
    padding: 4rem;
} */


.ms-1{
    margin-left: 1rem;
}
.ms-2{
    margin-left: 2rem;
}
.ms-3{
    margin-left: 3rem;
}
.ms-4{
    margin-left: 4rem;
}
.ms-5{
    margin-left: 5rem;
}


.me-1{
    margin-right: 1rem;
}
.me-2{
    margin-right: 2rem;
}
.me-3{
    margin-right: 3rem;
}
.me-4{
    margin-right: 4rem;
}
.me-5{
    margin-right: 5rem;
}

.lineDivisor{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: solid rgb(172, 172, 172) 1px;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mb-0 {
    margin-bottom: none;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}
.mb-3 {
    margin-bottom: 1rem;
}
.mb-4 {
    margin-bottom: 1.5rem;
}
.mb-5 {
    margin-bottom: 3rem;
}


/* .text-end {
    text-align: end;
} */


.strongBL{
    font-weight: 700;
    color: rgb(61, 92, 230);
}

.text-bold{
    font-weight: 700;
}

.text-secondary{
    font-weight: 700;
    color: rgb(143, 143, 143);
}

.text-light{
    color: white;
}

/*Loading icon*/

.loadingArea{
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: rgba(255, 255, 255, 0.8);
    position: none; 
}

.loadingArea_active{
    position: fixed; 
    display: flex;
}


.loader {
    color: #000;
    width: 4px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
    transform: translateX(-38px);
    animation: l21 .5s infinite alternate linear;
  }
  
  @keyframes l21 {
    50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
    100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
  }





