@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&display=swap");

:root {
    --card-width: 200px;
    --card-height: 300px;
    --card-transition-duration: 800ms;
    --card-transition-easing: ease;
}


* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    text-decoration: none;
}

.header {
    width: 100%;
    height: 110vh;

}



.nav-item {
    margin: 0px 4px;
}

.nav-item .nav-link {
    color: rgba(0, 0, 0, 0.733);
    font-weight: 600;
    font-size: 14px;
}

.active {
    color: #F8D008 !important;
}

.nav-link:hover {
    color: #F8D008;
}

.btn_navbar {
    display: inline-block;
    padding: 8px 20px;
    background-color: #F8D008;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #F8D008;
    border-radius: 40px;
    margin: -2px 14px;
    transition: 0.2s ease-in;
}

.btn_navbar:hover {
    background-color: #ED6625;
    color: white;
}

/* HOME PAGE */

.home {
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.564);
    background: url('/img/plano_fundo.PNG') no-repeat center center/cover;

}

.container_home {
    display: flex;
    justify-content: center;
    align-content: space-around;
    margin: 20px;

}

.home_container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    /*  z-index: 100; */
}


.heading_sm {
    font-size: 25px;
    font-weight: 700;
    color: rgba(52, 52, 53, 0.61);
    margin: 10px 0px;
}

.heading_lg {
    position: relative;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 22px 0px;
    letter-spacing: 1px;
    color: white;
}




.heading_md {
    font-size: 16px;
    font-weight: 500;
    color: #F8D008;
    margin-top: 30px;
    animation-duration: 3s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        margin-right: 100%;
        width: 300%;
    }

    to {
        margin-right: 0%;
        width: 100%;
    }
}


.img_home {
    max-width: 800;
    margin: 30px 0px;
    width: 80%;
}

.btn_home {
    display: inline-block;
    text-decoration: none;
    background-color: rgb(46, 45, 45);
    padding: 9px 20px;
    color: white;
    margin: 28px 4px;
    font-weight: 600;
    transition: 0.2s ease-in;
    border-radius: 40px;

}

.btn_home:hover {
    background-color: #ED6625;
    color: white;
}

.btn-2 {
    background-color: #F8D008;
}

.icon_social {
    font-size: 17px;
    padding: 12px 24px;
    color: #ED6625;
    border: 2px solid #F8D008;
    border-radius: 40px;
    margin: 0px 4px;
    cursor: pointer;
    transition: 0.2s ease;
}

.icon_social:hover {
    background-color: #ED6625;
    color: white;

}

/* carrossel home*/
.carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel__slide.active {
    opacity: 1;
}

.carousel__slide img {
    width: 100%;
    height: auto;
}

.carousel__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel__caption h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.carousel__caption p {
    font-size: 1.5rem;
}

.carousel__nav {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel__nav button {
    margin: 0 10px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
}

.carousel__nav button:focus {
    outline: none;
}

.carousel__nav button.active {
    background-color: #333;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .carousel__caption h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .carousel__caption p {
        font-size: 1.2rem;
    }

    .carousel__nav button {
        padding: 5px;
        font-size: 1rem;
    }
}



/*  QUEM SOMOS  */
.header_qs{
    width: 100%;
    height: 120;
}

.quem_somos {
    width: 100%;
    height: 190vh;
    background: url('/img/qs/plano_fundo_qs.png') no-repeat center center/cover;
 
}




.container_qs {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headings {
    text-align: center;
    font-size: 37px;
    text-transform: uppercase;
    font-weight: 900;
    background-color: #ED6625;
    background: linear-gradient(to right, #2E2D2D 42%, #ED6625 58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    margin-top: 20px;

}

.headings_epq {
    background: linear-gradient(to right, #ED6625 42%, #ED6625 58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.headings::after {
    content: '';
    position: absolute;
    bottom: -14px;
    width: 200px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
}

.headings_epq::after {
    content: '';
    position: absolute;
    bottom: -14px;
    width: 200px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(190, 179, 179);
}

.para_qs {
   font-size: large;
    font-weight: 400;
    text-align: center;
    color:#F8D008;
    /*espacamento entre as linhas*/
    line-height: 28px;
    max-width: 680px;
    margin: 29px auto;
    padding: 29px 10px;
}

.qs_container {
    padding-right: 10px;

}

.content_qs {
    display: flex;

}

/* ANIMAÇÕES DO content_qs */
:root .animate__backInLeft {
    --animate-duration: 3000ms;
    --animate-delay: 0.9s;
}

:root .animate__backInUp {
    --animate-duration: 5000ms;
    --animate-delay: 0.9s;
}

:root .animate__backInRight {
    --animate-duration: 7000ms;
    --animate-delay: 0.9s;
}



.icon_qs {
    margin: 0px 10px;

}

.qs_icons {
    font-size: 25px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border: 1px solid #d7d7d7;
    border-radius: 100%;
    color: #ED6625;
    transition: background-color 400ms;
}

.content_qs:hover .qs_icons {
    background-color: #F8D008;
    color: white;
}

.reading_text {
    font-size: 19px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.75);
}

.reading_text_qs {
    font-size: 19px;
    font-weight: 800;
    color:#ED6625;
}

.para_text {
    font-size: 16px;
    font-weight: 400;
    color:white;
    line-height: 25px;
}


/*SERVIÇOS*/
.servicos {
    width: 100%;
    height: 200vh;
    background: url('/img/sv/sv_plano_fundo.png') no-repeat center center/cover;
}

.sv_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.para_sv {
    font-size: medium;
    font-weight: 600;
    text-align: center;
    color: #F8D008;
    /*espacamento entre as letras*/
    line-height: 28px;
    max-width: 680px;
    margin: 30px 20px;
}

.container_sv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 30px;
}

.informacao_sv {
    max-width: 600px;
    margin: 0px 8px;
}

.itens_sv {
    list-style: none;
    margin: 15px 25px;   
    line-height: 28px;
    /* position: relative;*/
}

.itens_sv b {
    font-weight: 800;
    font-size: 17px;
    color: #F8D008;
}

.itens_sv span {
    margin: 0px 3px;
    font-weight: 400;
    font-size: 15px;
    color: white;
}

.list_sv {
    position: relative;

}

.list_sv::after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 9px;
    width: 1px;
    height: 90%;
    background-color: #F8D008;
    margin: auto;
    z-index: -1;
}

.itens_sv::before {
    content: '';
    position: absolute;
    left: 3px;
    margin: 6px 0px;
    width: 12px;
    height: 12px;
    background-color: white;
    border: 2px solid #ED6625;
    border-radius: 50%;

}

/* SLIDE SERVIÇOS */

.gallery {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: animate 20s linear infinite;
    margin: 30px;
}

@keyframes animate {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }

    100% {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.gallery span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(300px);
    -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);
}

.gallery span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery span:hover img {
    transform: scale(1.5);
}

.gallery figcaption {
    position: absolute;
    font-size: 14px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 55px;
}



/* EQUIPAMENTOS */

.header_equipamentos {
    width: 100%;
    height: 120vh;
    flex-direction: column;
    background-color: white;
}

.nav_eqp {
    background-color: white;
    font-family: 'poppins', sans-serif;
}

.equipamentos {
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.564);
    background: url('/img/plano_fundo.PNG') no-repeat center center/cover;
    
   
  
   
   
   
}


.container_epq {
    margin: 20px 10px;
    display: grid;
    justify-content: center;
    align-items: center;
    
}

.eqp_container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.heading_eqp {
    font-size: 2.0rem;
    font-weight: 600;
   
    
}

.para_eqp {
    font-size: medium;
    font-weight: 600;
    text-align: center;
    color: #F8D008;
    line-height: 28px;
    /*espacamento enrtre as letras*/
    max-width: 680px;
    margin: 29px 10px;
    font-family: 'poppins', sans-serif;
    animation-duration: 3s;
    animation-name: slidein;
}

@keyframes slidein {
    from {
        margin-right: 100%;
        width: 300%;
    }

    to {
        margin-right: 0%;
        width: 100%;
    }
}

.para_text_eqp {
    font-size: medium;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    line-height: 28px;
    /*espacamento enrtre as letras*/
}

.carousel_drag {
    width: 100%;
    cursor: -webkit-grab;
    cursor: grab;
}

.carousel.dragging {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.carousel--wrap {
    white-space: nowrap;
}

.carousel--item {
    display: inline-block;
    width: 30vw;
    padding: 3vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel--item figure {
    position: relative;
    z-index: 1;
    display: block;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.carousel--item figure img {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    transform-origin: center;
}

.carousel--item h2 {
    position: absolute;
    z-index: 1;
    bottom: 1.8vw;
    font-size: 3vw;
    bottom: 1vw;
    color: #fff;
}

.carousel--progress {
    position: fixed;
    z-index: 2;
    pointer-events: none;
    bottom: 2vw;
    width: 20vw;
    left: 3vw;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.carousel--progress-bar {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transform-origin: 0% 0%;
}