/*Reset*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Global Inicio*/
html{
    font-size: 10px;
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 1.6rem;
    color: #333333;
}

.container{
    width: 100%;
    max-width: 120rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fff;
}
::-webkit-scrollbar-thumb {
    background: #de5014;
}
::selection{
    background: #de5014;
    color: #fff;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}

h1{
    font-size: 50px;
    line-height: 5.5rem;
    margin-bottom: 3rem;
}

h2{
    font-size: 38px;
    line-height: 5rem;
    margin-bottom: 3rem;
}

.box-infos-como-funciona button:hover,
.box-conheca button:hover{
    color: #fff;
    cursor: pointer;
    border: 1px solid #de5014;
    transition: 0.5s;
}

.box-infos-como-funciona button:before,
.box-conheca button:before{
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: #de5014;
}

.box-infos-como-funciona button:hover:before,
.box-conheca button:hover:before{
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
}

hr{
    opacity: 0.2;
}
/*Global Fim*/

/*Header Menu Inicio*/
.navbar{
    position: fixed;
    width: 100%;
    z-index: 9999;
    padding: 50px 0;
    transition: 0.5s;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.sticky{
    padding: 1.3rem 0;
    background: rgba(0, 0, 0, 0.98);
    transition: 0.5s;
}
.navbar.sticky .logo img{
    transition: 0.5s;
    max-width: 130px;
}

.logo img{
    max-width: 160px;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: #de5014;
}
.navbar.sticky .menu li a:hover{
    color: #de5014;
}
/*Style Menu Inicio*/
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.btn-login{
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 0.5rem 2rem;
}

.btn-login:hover{
    border: 2px solid #de5014;
}

.navbar.sticky .btn-login:hover{
    border: 2px solid #de5014;
}
/*Style Menu Fim*/

/*Icone Whats Inicio*/
.whats-app{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	text-align: center;
	justify-content: center;
    z-index: 999;
    opacity: 0.8;
    transition: 0.5s;
}

.whats-app:hover{
    opacity: 1;
    transition: 0.5s;
}

.whats-app img{
    width: 80px;
    height: 80px;
	padding: 1.5rem;
}
/*Icone Whats Fim*/
/*Header Menu Fim*/

/*Section Inicio Inicio*/
#inicio{
    border-bottom-right-radius: 300px;
    overflow: hidden;
    margin-bottom: 10rem;
}

.home-inicio{
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

.degrade{
    position: absolute;
    background: linear-gradient(80deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
}

.img-home-inicio{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-home-inicio img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.cont-home-inicio{
    position: absolute;
    width: 500px;
    max-width: 90%;
    top: 65%;
    transform: translateY(-65%);
    color: #fff;
}

.cont-home-inicio p{
    font-size: 19px;
    margin-bottom: 3rem;
}

.contadores{
    display: flex;
    justify-content: space-between;
    text-align: center;
    width: 95%;
}

.contador{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contador p{
    color: #de5014;
    font-size: 30px;
}

.contador p.text{
    color: #fff;
    font-size: 20px;
    font-weight: 200;
}

.contador-info{
    display: flex;
    text-align: center;
}
/*Section Inicio Fim*/

/*Section Como Funciona Inicio*/
#funciona{
    margin-bottom: 15rem;
}

.box-como-funciona{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-img-player{
    position: relative;
    width: 65%;
    margin-right: 5rem;
    background-color: #fff;
}

.box-infos-como-funciona hr{
    margin-bottom: 3rem;
}

.box-infos-como-funciona p{
    margin-bottom: 1rem;
    font-size: 20px;
}

.box-infos-como-funciona span{
    color: #de5014;
}

.box-infos-como-funciona button{
    width: 200px;
    height: 50px;
    margin-top: 2rem;
    border: 1px solid #de5014;
    background: none;
    color: #de5014;
    border-radius: 4px;
    transition: ease-out 0.3s;
    font-size: 20px;
    outline: none;
    position: relative;
    z-index: 1;
}
/*Section Como Funciona Fim*/

/*Section Conheca Inicio*/
#ecad{
    position: relative;
    width: 100%;
    height: 40vh;
    background: url("imagens/ecad.jpg") center fixed;
    background-size: cover;
    margin-bottom: 10rem;
}

/*Section Recursos e Vantagens Inicio*/
.box-recursos{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.recurso{
    position: relative;
    width: 32%;
    min-height: 230px;
    height: auto;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 10rem;
    transition: 0.5s ease;
}

.recurso:hover{
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
}

.icone{
    position: absolute;
    width: 70px;
    height: 70px;
    top: -15%;
    left: 10%;
    border: 1px solid #de5014;
    border-radius: 50%;
    background-color: #fff;
    color: #de5014;
    font-size: 25px;
    text-align: center;
    justify-content: center;
    transition: 0.5s ease;
}

.recurso:hover .icone{
    background-color: #de5014;
    color: #fff;
    transition: 0.5s ease;
}

.icone i{
    position: absolute;
    top: 32%;
    transform: translateX(-50%);
}

.recurso h3{
    margin: 4rem 0 2rem 0;
}
/*Section Recursos e Vantagens Fim*/

/*Section Conheca Inicio*/
#conheca{
    position: relative;
    width: 100%;
    height: 40vh;
    background: url("imagens/hero.jpg") center fixed;
    background-size: cover;
    margin-bottom: 10rem;
}

#conheca .degrade{
    height: 40vh;
}

.box-conheca{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.box-conheca p{ 
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.box-conheca button{
    width: 200px;
    height: 50px;
    margin-top: 2rem;
    border: 1px solid #fff;
    background: none;
    color: #fff;
    border-radius: 4px;
    transition: ease-out 0.3s;
    font-size: 20px;
    outline: none;
    position: relative;
    z-index: 1;
}
/*Section Conheca Fim*/

/*Section Segmento Inicio*/
#segmento{
    margin-bottom: 10rem;
}

#segmento h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 10rem;
    text-transform: uppercase;
    line-height: 4rem;
}

.segmentos{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-segmentos{
    display: flex;
    flex-wrap: wrap;
    width: 47%;
    min-width: 47%;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.box-segmentos button{
    height: 180px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 33.3%;
    flex-basis: 33.3%;
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: 400;
    transition: 0.5s ease;
    cursor: pointer;
    background-color: #fff;
    outline: none;
}

.box-segmentos button.segmento i{
    font-size: 35px;
    margin-bottom: 2rem;
}

.box-segmentos button.segmento:hover{
    color: #de5014;
    border: 1px solid #de5014;
    transition: 0.5s ease;
}

.content{
	display: none;
}

.content.active{
	display: block;
}

.box-img-segmento{
    width: 43%;
    height: 550px;
}

.img-segmento{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.img-segmento img{
    width: 100%;
    object-fit: cover;
}

.box-segmento{
    position: relative;
    width: 100%;
    height: 40vh;
    margin: 10rem 0 0 0;
}

.box-segmento.radio-super{
    background: url("imagens/segmento.jpg") center fixed;
    background-size: cover;
}
.box-segmento.radio-fit{
    background: url("imagens/segmento-11.jpg") center fixed;
    background-size: cover;
}
.box-segmento.radio-pet{
    background: url("imagens/segmento-10.jpg") center fixed;
    background-size: cover;
}
.box-segmento.radio-moda{
    background: url("imagens/segmento-13.jpg") center fixed;
    background-size: cover;
}
.box-segmento.radio-farma{
    background: url("imagens/segmento-12.jpg") center fixed;
    background-size: cover;
}
.box-segmento.radio-lar{
    background: url("imagens/segmento-14.jpg") center fixed;
    background-size: cover;
}
/*Section Segmento Fim*/

#sobre{
    position: relative;
    width: 100%;
    height: 40vh;
    background: url("imagens/img-fundo04.jpg") center fixed;
    background-size: cover;
    margin-bottom: 5rem;
}

#sobre .degrade{
    height: 40vh;
}

.box-sobre{
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
}

.box-sobre img{
    max-width: 200px;
    margin-bottom: 2rem;
}

.box-sobre p{
    font-size: 23px;
}

/*Section Clientes*/
.clientes{
    text-align: center;
    padding: 3rem 0;
}

.box-clientes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.cliente{
    margin: 3rem;
    text-align: center;
}

.cliente img{
    max-width: 300px;
    max-height: 200px;
}

/*Section Clientes*/

/*Section Contato Inicio*/
.box-contato{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	text-align: center;
    padding: 10rem;
    font-size: 18px;
}

.infos-contato{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0 5rem 0 0;
}

.info-text{
    text-align: left;
}

.infos-contato i{
	font-size: 22px;
	margin-right: 1rem;
    padding: 2rem;
    border-radius: 3px;
    transition: 0.5s ease;
}

.infos-contato:hover i{
    background-color: #de5014;
    color: #fff;
    transition: 0.5s ease;
}
/*Section Contato Fim*/

/*Footer Inicio*/
footer{
    background-color: rgba(0, 0, 0, 0.07);
    padding: 3rem;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
}
/*Footer Fim*/

/*Media Queries Inicio*/
@media (max-width: 1180px){
    #inicio{
        border-bottom-right-radius: 200px;
    }

    .box-infos-como-funciona p{
        margin-bottom: 1rem;
        font-size: 18px;
    }

    #conheca button{
        width: 150px;
        height: 35px;
        font-size: 15px;
    }

    .box-conheca h2{
        font-size: 25px;
        margin-bottom: 1rem;
    }

    .infos-contato{
        margin-bottom: 5rem;
    }

    .segmentos{
        flex-direction: column;
    }

    .box-segmentos{
        width: 80%;
        margin-bottom: 10rem;
    }

    .box-img-segmento{
        width: 80%;
    }
}

@media (max-width: 1015px){
    .box-infos-como-funciona h2{
        font-size: 35px;
    }

    .box-infos-como-funciona p{
        margin-bottom: 1rem;
        font-size: 18px;
    }
}

@media (max-width: 947px){
    section{
        margin-bottom: 7rem;
    }

    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }
    
    .navbar .menu{
        position: fixed;
        width: 100%;
        height: 100vh;
        left: -100%;
        top: 0;
        background: #000;
        text-align: center;
        transition: all 0.3s ease;
    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .menu li:first-child{
        padding: 10rem 0 0 0;
    }

    .navbar .menu li{
        display: block;
        padding: 2rem 0;
    }

    .navbar .menu li a{
        display: inline-block;
        font-size: 25px;
        margin: 0;
    }

    .logo img{
        max-width: 120px;
    }

    #inicio{
        border-bottom-right-radius: 150px;
    }

    .cont-home-inicio h1{
        font-size: 33px;
        line-height: 5rem;
    }

    .cont-home-inicio p{
        font-size: 17px;
    }

    .contador p{
        font-size: 20px;
    }

    .contador p.text{
        font-size: 15px;
    }

    .box-como-funciona{
        flex-direction: column;
    }
    
    .box-img-player{
        width: 100%;
        margin: 0 0 5rem 0;
    }

    .box-infos-como-funciona{
        text-align: center;
    }

    .recurso{
        width: 100%;
        text-align: center;
    }

    .icone{
        position: absolute;
        width: 74px;
        height: 74px;
        top: -15%;
        left: 50%;
        transform: translateX(-50%);
    }

    #conheca{
        margin-bottom: 5rem;
    }

    #segmento h2{
        font-size: 20px;
        margin-bottom: 5rem;
    }

}

@media (max-width: 706px){
    .box-segmentos{
        width: 90%;
    }

    .segmento{
        font-size: 15px;
        font-weight: 700;
    }

    .segmento i{
        font-size: 25px;
    }

    .box-img-segmento{
        width: 90%;
    }

    .box-sobre img{
        max-width: 130px;
    }

    .box-sobre p{
        font-size: 15px;
    }

    .box-contato{
        display: inline;
        align-items: center;
    }

    .infos-contato{
        display: inline;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .infos-contato i{
        margin: 0;
    }

    .info-text{
        text-align: center;
    }
}

@media (max-width: 450px){
    #inicio{
        border-bottom-right-radius: 100px;
    }

    .cont-home-inicio h1{
        font-size: 30px;
        line-height: 5rem;
    }

    .cont-home-inicio p{
        font-size: 15px;
    }

    .contador p{
        font-size: 20px;
    }

    .contador p.text{
        font-size: 15px;
    }

    .box-segmentos{
        width: 90%;
        flex-direction: column;
    }

    .box-segmentos button{
        max-width: 100%;
        height: 150px;
        flex-basis: auto;
    }

    .box-img-segmento{
        height: auto;
    }

    .segmento:nth-child(3),
    .segmento:nth-child(5),
    .segmento:nth-child(6),
    .segmento:nth-child(7),
    .segmento:nth-child(8){
        display: none;
    }
}