@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
/* <weight>: Use a value from 100 to 1000
<uniquifier>: Use a unique and descriptive class name

.dm-sans-<uniquifier> {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
/* <weight>: Use a value from 400 to 700
<uniquifier>: Use a unique and descriptive class name

.arimo-<uniquifier> {
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/* Geral */
:root {
    --cor-primaria: #FFD600;
    --cor-secundaria: #FFB000;
    --cor-terciaria: #FF7E20;
    --font-primaria: "DM Sans", sans-serif;
    --font-secundaria: "Arimo", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #000000;
}

body a:not(header a) {
    color: #000 !important;
    -webkit-text-fill-color: #000;
    text-decoration: none;
  }
  
/* a, a:visited, a:active {
    color: #000000 !important;
    -webkit-text-fill-color: #000000;
} */

/* Fim Geral */

/* Cabealho */
header {
    height: 70px;
    font-family: var(--font-primaria);
    font-weight: 600;
    font-size: 1.333em;
    background: linear-gradient(to right, var(--cor-primaria), var(--cor-secundaria));
    backdrop-filter: blur(10px);
    /* desfoque do conteúdo atrás */
    -webkit-backdrop-filter: blur(10px);
    /* compatibilidade com Safari */
    transition: all 0.3s ease;
    position: sticky;
    /* ou fixed, se quiser que ele fique visível ao rolar */
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 2%;
    align-content: center;
}

nav a img {
    width: 60px;
}

.lista-cabecalho {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.lista-cabecalho ul {
    display: flex;
    gap: 24px;
    list-style: none;
    align-items: center;
    margin: 0;
}

li a {
    transition: color 0.3s ease;
}

.lista-cabecalho li {
    font-weight: 600;
    font-family: var(--font-primaria);
    cursor: pointer;
    text-transform: uppercase;
}

.lista-cabecalho li a:hover {
    color: white !important;
}

.lista-cabecalho li a i {
    font-size: 20pt;
    margin: 0 5px;
    padding: 5px;
    border-radius: 10px;
    transition: color 0.3s ease;
}

.burger {
    display: none;
}

/* Fim Cabecalho */

/* Promoções */
.promocoes {
    width: 100%;
    height: calc(100vh - 70px) !important;
}



.swiper-promocoes {
    width: 100%;
    height: 100%;

}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    /* background-color: var(--cor-terciaria); */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 5px;
    color: white;
    font-weight: 700;
    font-size: 5pt;
}

.swiper-button-next svg, .swiper-button-prev svg{
    
        height: 100%;
        object-fit: contain;
        transform-origin: center;
        width: 35%;
        fill: currentColor;
        pointer-events: none;
        text-align: center;
}
/* .swiper-button-next, .swiper-button-prev {
    svg {
        height: 100%;
        object-fit: contain;
        transform-origin: center;
        width: 35%;
        fill: currentColor;
        pointer-events: none;
        text-align: center;
    }
} */

/* Move as setas para dentro */
.swiper-button-next {
    right: 30px !important;
    /* afasta da lateral direita */
}

.swiper-button-prev {
    left: 30px !important;
    /* afasta da lateral esquerda */
}

.banner1 {
    background-image: url("assets/img/banner1.png");
    background-position: 50% 65%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
}



.banner1 a h5 {
    background-color: var(--cor-primaria);
    width: max-content;
    text-align: center !important;
    padding: 15px 80px;
    border-radius: 10px;
    font-family: var(--font-secundaria);
    font-size: 1.42em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 80px;
    transition: .5s;
}

.banner1 a h5:hover {
    background-color: var(--cor-secundaria);
    color: white;
}


.banner2 {
    background-image: url("assets/img/banner2.png");
    background-size: 100% 100%; /* força a imagem a esticar */
    background-repeat: no-repeat;
    background-position: center;
}
.banner3 {
    background-image: url("assets/img/banner3.png");
    background-size: 100% 100%; /* força a imagem a esticar */
    background-repeat: no-repeat;
    background-position: center;
}
.banner4 {
    background-image: url("assets/img/banner4.png");
    background-size: 100% 100%;  /* força a imagem a esticar */
    background-repeat: no-repeat;
    background-position: center; 
}




.btn-branco{
    display: flex;
    align-items: end;
    justify-content: center;
}

.btn-branco a h5 {
    background-color: rgba(255, 255, 255, 0.719);
    width: max-content;
    text-align: center !important;
    padding: 15px 15px;
    border-radius: 10px;
    font-family: var(--font-secundaria);
    font-size: 1.05em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 60px;
    transition: .5s;
}

.btn-branco a h5:hover {
    background-color: var(--cor-secundaria);
}








/* .banner3 {
    background-image: url("assets/img/banner3.png");
    background-position: 50% 65%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
} */

/* .banner4 {
    background-image: url("assets/img/banner4.png");
    background-position: 50% 65%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: end;
} */

/* Estilo base dos bullets (pontinhos) */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    /* cor inativa */
    opacity: 1;
    border-radius: 50%;
    /* mantém formato redondo */
    margin: 0 6px !important;
    /* espaçamento entre os bullets */
    transition: all 0.3s ease;
}

/* Bullet ativo */
.swiper-pagination-bullet-active {
    background-color: #000;
    /* cor ativa (preta, como o Bootstrap) */
    transform: scale(1.2);
    /* levemente maior */
}

/* Centraliza a paginação na parte inferior do slide */
.swiper-pagination {
    bottom: 15px !important;
}

/* Fim Promoções */


/* Nossa história */

.historia {
    display: flex;
    margin: 50px;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 70px) !important;
}

.historia-texto{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.historia-texto h1 {
    font-family: var(--font-primaria);
    font-weight: 700;
    color: #000000;
    font-size: 3.34em;
    width: 75%;

}

.historia-texto p {
    width: 90%;
    font-family: var(--font-secundaria);
    font-weight: 500;
    font-size: 1.4em;
    color: #000000a9;
    text-align: justify;
}

.historia-img img {
    margin-top: 10px;
    border-radius: 20% 0%;
}

/* Fim nossa história */



/* Serviços */
.servicos {
    background: linear-gradient(to right, var(--cor-primaria), var(--cor-secundaria));
    height: calc(100vh - 60px);
}

.servicos h2 {
    margin-top: 30px;
    margin-bottom: 60px;
    text-align: center;
    color: white;
    font-family: var(--font-primaria);
    font-weight: 700;
    font-size: 2.76em;
}

.swiper-servicos {
    margin: 0 15px;
    /* width: 600px; */
    height: 425px;
}

.serv1, .serv2, .serv3, .serv4, .serv5, .serv6, .serv7, .serv8, .serv9, .serv10{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: 1s;
    border-radius: 15px;
}

.serv1{
    background-image: url("assets/img/serv1.jpg");
    
}
.serv1:hover{
    scale: 1.15;
}
.serv2{
    background-image: url("assets/img/serv2.jpg");
}
.serv2:hover{
    scale: 1.15;
}
.serv3{
    background-image: url("assets/img/serv3.jpg");
}
.serv3:hover{
    scale: 1.15;
}
.serv4{
    background-image: url("assets/img/serv4.jpg");
}
.serv4:hover{
    scale: 1.15;
}
.serv5{
    background-image: url("assets/img/serv5.jpg");
}
.serv5:hover{
    scale: 1.15;
}
.serv6{
    background-image: url("assets/img/serv6.jpg");
}
.serv6:hover{
    scale: 1.15;
}
.serv7{
    background-image: url("assets/img/serv7.jpg");
}
.serv7:hover{
    scale: 1.15;
}
.serv8{
    background-image: url("assets/img/serv8.jpg");
}
.serv8:hover{
    scale: 1.15;
}
.serv9{
    background-image: url("assets/img/serv9.jpg");
}
.serv9:hover{
    scale: 1.15;
}
.serv10{
    background-image: url("assets/img/serv10.jpg");
}
.serv10:hover{
    scale: 1.15;
}

/* Fim Serviços */

/* Feedbaks */
/* .feedbacks {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.feedbacks h2 {
    margin: 35px 0;
    text-align: center;
    color: var(--cor-primaria);
    font-family: var(--font-primaria);
    font-size: 3.3em;
    width: 40%;
}

.clientes {
    display: flex;
    gap: 50px;
    background-color: #ff0000;
}

.cliente1,
.cliente2,
.cliente3 {
    background-color: aqua;
} */

/* Fim Feedbaks */

/* Formulario */
.formulario {
    display: flex;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(to right, var(--cor-primaria), var(--cor-secundaria));
    font-family: var(--font-primaria);
}

form {
    width: 100%;
}

.etapa1Img {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
}

.form-step .etapa1Img img {
    width: 55%;
    height: 100%;
    margin: 0;
    margin-top: 10px;
}

.etapa1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-step {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

.form-step h2 {
    font-weight: 700;
    font-size: 3.38em;
    width: 65%;
    margin-bottom: 25px;
    margin-top: 30px;
}

.form-step.active {
    display: flex;
    width: 100%;
}

.form-step input {
    color: #000000;
    padding: 18px 20px;
    border-radius: 20px;
    border: none;
    font-size: 1.4em;
    width: 75%;
}

input::placeholder {
    text-transform: uppercase;
/* 
    font-weight: 700; */
    color: #00000093;
}

.form-step button {
    width: 75%;
    background-color: var(--cor-terciaria);
    border: none;
    border-radius: 20px;
    padding: 20px 0;
    text-transform: uppercase;
    font-family: var(--font-primaria);
    font-weight: 700;
    font-size: 1.2em;
    cursor: pointer;
    transition: .2s;
    color: #000000 !important;
    -webkit-text-fill-color: #000000;
}

.form-step button:hover {
    background: linear-gradient(to left, var(--cor-primaria), var(--cor-secundaria));
    color: white;
    border: 1.5px solid rgb(0, 0, 0);
}

div .botoes {
    width: 75%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 15px;
    color: #000000 !important;
    -webkit-text-fill-color: #000000;
}

.botoes button {
    width: 100%;
}

.form-step {
    display: none;

}

.form2 {
    width: 100%;
    justify-content: center;
}

.etapa2Img {
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
}

.form-step .etapa2Img img {
    width: 58%;
    height: 100%;
    margin: 0;
    margin-top: 10px;
}

.etapa2 {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: end;
    gap: 15px;
}

/* Transições entre etapas */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.form-step.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

/* Animações de entrada e saída */
.form-step.fade-out {
    opacity: 0;
    transform: translateX(-50px);
}

.form-step.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Mapa */

.mapa {
    width: 100%;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
}

.mapa .dados {
    margin-top: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-bottom: 5px;
}

.dados h3 {
    font-family: var(--font-primaria);
    font-weight: 700;
    font-size: 1.42em;
    color: var(--cor-terciaria);
}

.dados p {
    font-family: var(--font-secundaria);
    font-size: 1.25em;
    color: #00000098;
}

.dados button {
    font-family: var(--font-primaria);
    font-size: 1.5em;
    background: linear-gradient(to right, var(--cor-primaria), var(--cor-secundaria));
    border: none;
    border-radius: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: .3s;
}

.dados button:hover {
    background: linear-gradient(to left, var(--cor-primaria), var(--cor-secundaria));
    color: white;
}

/* Fim Mapa */

footer {
    background-color: #000000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 3%;
    font-family: var(--font-secundaria);
    font-size: 1.2em;
    padding: 10px;
}

footer img {
    width: 100px;
}

/* media queries */

@media (max-width: 1337px){
    .historia-texto h1 {
        width: 60%;
    }
    .form-step h2 {
        font-size: 3em;
    }
    .form-step .etapa1Img img {
        width: 59%;
    }
}

@media (max-width: 1245px){
    .historia-texto h1 {
        width: 63%;
    }
    .historia-img img {
        width: 500px;
    }
    .form-step .etapa1Img img {
        width: 60%;
    }
    .form-step input {
        font-size: 1.2em;
    }
    .dados button {
        font-size: 1.4em;
        padding: 20px 20px;
    }
}

@media (max-width: 1108px){
    .historia-img img {
        width: 540px;
    }
    .historia-texto h1 {
        width: 70%;
        font-size: 3em;
    }
    .historia-texto p {
        font-size: 1.3em;
    }
    .form-step .etapa1Img img {
        width: 66%;
    }
    .dados h3 {
        font-size: 1.3em;
    }
    .dados p {
        font-size: 1.1em;
   
    }
    .formulario{
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 1053px){
    .historia-img img {
        width: 450px;
    }
    .historia-texto h1 {
        width: 100%;
        font-size: 2.5em;
    }
    .historia-texto p {
        font-size: 1.2em;
    }
    .form-step .etapa1Img img {
        width: 71%;
    }
    .form-step h2 {
        font-size: 2.3em;
    }
    .form-step input {
        font-size: 1em;
    }
    .dados h3 {
        font-size: 1.2em;
    }
    .dados p {
        font-size: 1em;
    }
    .dados button {
        font-size: 1.3em;
        padding: 18px 20px;
    }
}

@media (max-width: 900px) {
    .historia{
        flex-direction: column;
        gap: 10px;
    }
    .historia-texto{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .form-step .etapa1Img img {
        width: 84%;
    }
    .form-step h2 {
        font-size: 2em;
    }
    .form-step input {
        font-size: 1em;
    }
    .form-step input {
        font-size: .8em;
        padding: 15px 20px;
    }
    .form-step button {
        width: 75%;
        padding: 15px 0;
        font-size: 1em;
    }
    .dados h3 {
        font-size: 1em;
    }
    .dados p {
        font-size: .9em;
   
    }
    .dados button {
        font-size: 1.1em;
        padding: 16px 20px;
    }
    .mapa .dados{
        gap: 3%;
    }
}

@media (max-width: 750px) {
    header {
        font-size: 1.1em;
    }
    .lista-cabecalho ul {
        gap: 20px;
    }
    .lista-cabecalho li a i {
        font-size: 19pt;
    }
    .historia-img img {
        width: 390px;
    }
    .historia-texto h1 {
        font-size: 2.2em;
    }
    .historia-texto p {
        font-size: 1.1em;
    }
    .form-step .etapa1Img img {
        width: 100%;
    }
    .form-step h2 {
        width: 98%;
        font-size: 1.8em;
    }
    .form-step input {
        width: 95%;
        font-size: 1em;
    }
    .form-step input {
        font-size: .8em;
        padding: 15px 20px;
    }
    .form-step button {
        width: 95%;
    }
    .dados h3 {
        font-size: .9em;
    }
    .dados p {
        font-size: .8em;
    }
    .dados button {
        font-size: 1em;
        padding: 16px 20px;
    }
    .mapa .dados{
        gap: 2%;
    }
    .form-step .etapa2Img img{
        width: 75%;
    }
    
}

@media (max-width: 650px) {
    header {
        font-size: 1em;
    }
    .lista-cabecalho ul {
        gap: 18px;
    }
    .lista-cabecalho li a i {
        font-size: 19pt;
    }
    .historia-img img {
        width: 350px;
    }
    .historia-texto h1 {
        width: 75%;
        font-size: 2em;
    }
    .historia-texto p {
        font-size: 1em;
    }
    .form-step{
        flex-direction: column-reverse;
        align-items: center;
    }
    .etapa1 {
        width: 75%;
        gap: 10px;
    }
    .form-step .etapa1Img img {
        width: 54%;
    }
    .mapa .dados{
        width: 98%;
        gap: 10px;
        flex-direction: column;
        align-items: start;
    }
    .dados h3 {
        font-size: 1em;
    }
    .dados a {
        margin-left: 65%;
    } 
    .dados p {
        font-size: .9em;
    }  
    .dados button {
        font-size: 1em;
        padding: 16px 20px;
    }
    .form2{
        flex-direction: column;
    }
    .etapa2{
        width: 100%;
        gap: 10px;
    }
    .etapa2 input{
        width: 75%;
    }
    .etapa2Img{
        margin-left: 50%;
    }
    .etapa2Img img{
        width: 50%;
    }
}

@media (max-width: 600px) {
    header {
        height: 60px;
        /* AQUI!!!!!!!!!!!!!! Guia do header para a altura das sections com o header fixo */
    }
    nav a img {
        width: 50px;
    }
    .lista-cabecalho ul {
        display: none;
    }
    .lista-cabecalho ul.ativo {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 70px;
        position: absolute;
        top: 55px;
        /* abaixo do header */
        right: 0;
        background: linear-gradient(to top, var(--cor-primaria), var(--cor-secundaria));
        padding: 20px 10px;
        text-align: center;
        border-radius: 10px;
    }
    .burger {
        display: block;
        font-size: 30pt;
        cursor: pointer;
    }
    /* Promoções */
    .promocoes{
        height: calc(100vh - 60px) !important;
    }
    .banner1 {
        background-image: url("assets/img/mobileBanner1.png");
        background-position: 50% 40%;
    }

    .banner2 {
        background-image: url("assets/img/bm2.png");
        background-position: 90% 40%;
    }
    .banner3 {
        background-image: url("assets/img/bm3.png");
        background-position: 90% 40%;
    }
    .banner4 {
        background-image: url("assets/img/bm4.png");
        background-position: 90% 40%;
    }
    /* historia */
    .historia-texto{
        gap: 5px;
    }
    .etapa1 {
        width: 75%;
        gap: 10px;
    }
    .form-step .etapa1Img{
        width: 100%;
    }
    .form-step .etapa1Img img {
        width: 35%;
        margin-left: 50%;
    }
    .dados a {
        margin-left: 55%;
    }

    .servicos h2 {
        margin-top: 30px;
        margin-bottom: 40px;
        font-size: 2.5em;
    }
}

@media (max-width: 430px) {
    .form-step .etapa1Img img {
        width: 60%;
        margin-left: 40%;
    }
    .dados a {
        margin-left: 55%;
    }
    .etapa2Img{
        margin-left: 26%;
    }
    .etapa2Img {
        padding-top: 20px;
        width: 85%;
    }
    .servicos {
        height: calc(100vh - 150px);
    }
}