/*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: #debc0e;
}

::selection {
    background: #debc0e;
    color: #fff;
}

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

ul {
    list-style: none;
}

h1 {
    font-size: 55px;
    line-height: 7rem;
    margin-bottom: .5rem;
}

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

.box-infos-como-funciona button:hover,
.box-conheca button:hover {
    color: #fff;
    cursor: pointer;
    border: 1px solid #debc0e;
    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: #caaa0b;
}

.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: 20px 0;
    transition: 0.5s;
}

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

.navbar.sticky {
    padding: 1.3rem 0;
    background: rgb(0, 0, 0);
    transition: 0.5s;
}

.navbar.sticky .logo img {
    transition: 0.5s;
}

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

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

.navbar .menu li a {
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    margin-left: 12px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover {
    color: #debc0e;
}

.navbar.sticky .menu li a:hover {
    color: #debc0e;
}

/*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 #debc0e;
}

.navbar.sticky .btn-login:hover {
    border: 2px solid #debc0e;
}

/*Style Menu Fim*/

/*Icone Whats Inicio*/
.whats-app {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    text-align: center;
    justify-content: center;
    animation: animate .5s infinite;
    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;
}

@keyframes animate {
    0%, 100% { transform: translate(0); }
    20%, 60% { transform: translate(-1px, 1px); }
    40%, 80% { transform: translate(1px, -1px); }
}

/*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: 60%;
    transform: translateY(-60%);
    color: #fff;
}

.cont-home-inicio h1 {
    letter-spacing: -2px;
    line-height: 60px;
}

.cont-home-inicio p {
    font-size: 20px;
    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: #debc0e;
    font-size: 40px;
}

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

.contador-info {
    display: flex;
    text-align: center;
}

.contador-info i{
    font-size: 4rem;
    color: #debc0e;
}

/*Section Inicio Fim*/

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

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

.box-img-player img {
    max-width: 500px;
}

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

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

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

.box-infos-como-funciona button {
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #debc0e;
    background: #debc0e;
    color: #fff;
    border-radius: 4px;
    transition: ease-out 0.3s;
    font-size: 20px;
    outline: none;
    position: relative;
    z-index: 1;
}

/*Section Como Funciona Fim*/

/*Section Recursos e Vantagens Inicio*/
#recursos{
    margin-top: 15rem;
}

.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 #debc0e;
    border-radius: 50%;
    background-color: #fff;
    color: #debc0e;
    font-size: 25px;
    text-align: center;
    justify-content: center;
    transition: 0.5s ease;
}

.recurso:hover .icone {
    background-color: #debc0e;
    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("img/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 {
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #debc0e;
    background-color: #debc0e;
    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: #debc0e;
    border: 1px solid #debc0e;
    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("img/segmento.jpg") center fixed;
    background-size: cover;
}

.box-segmento.radio-fit {
    background: url("img/segmento-11.jpg") center fixed;
    background-size: cover;
}

.box-segmento.radio-pet {
    background: url("img/segmento-10.jpg") center fixed;
    background-size: cover;
}

.box-segmento.radio-moda {
    background: url("img/segmento-13.jpg") center fixed;
    background-size: cover;
}

.box-segmento.radio-farma {
    background: url("img/segmento-12.jpg") center fixed;
    background-size: cover;
}

.box-segmento.radio-lar {
    background: url("img/segmento-14.jpg") center fixed;
    background-size: cover;
}

.boxClientes h2{
    text-align: center;
}

.carousel .cliente {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 10px;
}

.carousel .cliente img {
    position: absolute;
    max-width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*Section Segmento Fim*/
#clientes {
    position: relative;
    width: 100%;
    height: 55vh;
    background: url("img/imp-locucoes.png") center fixed;
    background-size: cover;
    margin-bottom: 10rem;
}

#clientes .degrade {
    height: 55vh;
}

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

.box-conheca.clientes h2{
    margin: 0;
}

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

.box-conheca.clientes button {
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid #debc0e;
    background-color: #debc0e;
    color: #fff;
    border-radius: 4px;
    transition: ease-out 0.3s;
    font-size: 20px;
    outline: none;
    position: relative;
    z-index: 1;
}

#outros-servicos {
    margin-bottom: 5rem;
}

#outros-servicos .box-infos-como-funciona h2{
    text-align: left;
}

/*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: #debc0e;
    color: #fff;
    transition: 0.5s ease;
}

/*Section Contato Fim*/

#conheca.trabalhe-conosco{
    margin: 0;
}

/*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) and (min-height: 600px) {
    #inicio {
        border-bottom-right-radius: 200px;
    }

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

    #conheca button {
        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: 0;
    }

    .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: #1b273a;
        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: 180px;
    }

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

    .cont-home-inicio h1 {
        font-size: 5rem;
        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-como-funciona.mobile{
        flex-direction: column-reverse;
    }

    .box-img-player {
        width: 100%;
        display: flex;
        justify-content: center;
    }

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

    #outros-servicos .box-infos-como-funciona h2{
        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 {
        line-height: 30px;
        margin-bottom: 5rem;
    }
}

@media (max-width: 706px) {
    .cont-home-inicio {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cont-home-inicio h1 {
        font-size: 4rem;
    }

    .box-segmentos {
        width: 90%;
    }

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

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

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

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

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

    .infos-contato i {
        margin: 0;
    }

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

@media (max-width: 566px){
    .box-img-player img{
        max-width: 100%;
    }
}

@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;
    }
}

@media (max-width: 450px) {
    #conheca,
    #clientes{
        height: 65vh;
    }

    #conheca .degrade,
    #clientes .degrade {
        height: 65vh;
    }
}