@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/*Var CSS Inicio*/
:root{
    /*Cores*/
    --cor-primaria: rgb(255, 221, 0);
    --cor-white: rgb(255, 255, 255);
    --cor-gray: rgb(49, 49, 49);
    --cor-light-gray: rgb(196, 196, 196);
    --background-color-gradient: linear-gradient(45deg, rgba(255, 221, 0, 0.8), rgba(0, 0, 0, 0.8));
    --background-color-black: rgba(0, 0, 0, 0.8);
    --background-body: rgb(255, 255, 255);

    /*Font Size*/
    --font-size-h1: 45px;
    --font-size-h2: 40px;
    --font-size-h3: 30px;
    --font-size-p: 25px;
    --font-size-pequena: 20px;
    --font-size-footer: 15px;

    /*Font Weigth*/
    --font-light: 300;
    --font-medium: 500;
    --font-bold: 700;

    /*Shadow*/
    --shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}
/*Var CSS Fim*/

/*Global Inicio*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: var(--background-body);
    color: var(--cor-gray);
}

.container{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

ul, li{
    list-style: none;
}

h1{
    font-size: var(--font-size-h1);
    font-weight: var(--font-bold);
}

h2{
    font-size: var(--font-size-h2);
    font-weight: var(--font-bold);
}

h3{
    font-size: var(--font-size-h3);
    font-weight: var(--font-bold);
}

p{
    font-size: var(--font-size-p);
    font-weight: var(--font-light);
}

a{
    text-decoration: none;
    font-weight: var(--font-light);
    color: var(--cor-light-gray);
}
/*Global Fim*/

/*Header Inicio*/
.navbar{
    position: fixed;
    width: 100%;
    z-index: 9999;
    padding: 30px 0;
    transition: 0.5s;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.sticky{
    padding: 1.3rem 1.5rem;
    background: rgb(0, 0, 0);
    transition: 0.5s;
}
.navbar.sticky .logo img{
    transition: 0.5s;
    max-width: 120px;
}

.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: var(--font-light);
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: var(--cor-primaria);
}
.navbar.sticky .menu li a:hover{
    color: var(--cor-primaria);
}

.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
/*Header Fim*/

/*Icone Whats Inicio*/
.whats-app{
	position: fixed;
	bottom: 0.5rem;
	right: 0.5rem;
	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: 100px;
    height: 100px;
	padding: 1.5rem;
}
/*Icone Whats Fim*/

/*Fundo Inicio Inicio*/
.fundo-inicio{
    position: absolute;
	min-height: 35vh;
}

.background-img{
    position: relative;
    background: url('../imagens/fundo-home.jpg') center;
    background-size: cover;
}

.background-img:before {
    position: absolute;
    content: '';
    background: var(--background-color-gradient);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
/*Fundo Inicio Fim*/

/*Home Inicio*/
.home{
    width: 90%;
    height: 70vh;
    margin: -5rem auto 5rem auto;
}

.box-home{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('../imagens/home-jingle.jpg');
    background-size: cover;
}

.box-home:before{
    position: absolute;
    content: '';
    background: var(--background-color-black);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cont-home{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: var(--font-size-h1);
    color: var(--cor-white);
}

.box-img-home{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 1.5rem;
}

.img-home img{
    max-width: 180px;
}
/*Home Fim*/

/*Frase 1 Inicio*/
.frase-1{
    margin-bottom: 5rem;
    text-align: center;
}

.titulo-alemao{
    margin-bottom: 3rem;
}

.titulo-alemao span{
    color: var(--cor-primaria);
}

.numero-whats{
    font-size: var(--font-size-h3);
}
/*Frase 1 Fim*/

/*Alemao Inicio*/
.alemao{
    width: 100%;
    height: 70vh;
    margin-bottom: 5rem;
}

.box-alemao{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('../imagens/alemao.jpg') fixed center;
    background-size: cover;
}

.box-alemao:before{
    position: absolute;
    content: '';
    background: var(--background-color-black);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cont-alemao{
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-alemao h2{
    color: var(--cor-primaria);
}

.box-audios{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.box-audios audio{
    margin: 0 2rem;
    width: 300px;
    height: 100px;
    outline: none;
}

.btn-inverse{
    padding: 0.6rem 1.5rem;
    background: none;
    font-size: var(--font-size-pequena);
    color: var(--cor-white);
    border: 1px solid var(--cor-white);
    border-radius: 30px;
    transition: 0.5s;
}

.btn-inverse:hover{
    background: var(--cor-white);
    color: var(--cor-primaria);
    transition: 0.5s;
}
/*Alemao Fim*/

/*Contato Inicio*/
#contato hr{
    opacity: 0.3;
}

.box-contato{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
    padding: 5rem 0;
    font-size: var(--font-size-p);
}

.infos-contato{
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--cor-light-gray);
    transition: 0.5s;
}

.info-text{
    text-align: left;
}

.infos-contato i{
    margin: 0 1rem;
}

.infos-contato:hover i,
.infos-contato:hover a{
    color: var(--cor-primaria);
    transition: 0.5s;
}
/*Contato Fim*/

/*Footer Inicio*/
footer{
    padding: 2rem 0;
    background: #eee;
}

.box-direitos p{
    text-align: center;
    color: var(--cor-light-gray);
    font-size: var(--font-size-footer);
}
/*Footer Fim*/

@media (max-width: 947px){
    .home{
        width: 97%;
    }

    .cont-home{
        width: 95%;
        text-align: center;
    }

    .titulo-home h1{
        font-size: var(--font-size-h3);
    }

    .img-home{
        display: flex;
        justify-content: center;
    }

    .img-home img{
        max-width: 100px;
    }

    .alemao{
        height: 100vh;
    }

    .btn-inverse{
        font-size: 17px;
    }

    .box-audios audio:nth-child(4),
    .box-audios audio:nth-child(5),
    .box-audios audio:nth-child(6){
        display: none;
    }

    .box-contato{
        padding: 5rem 0 0 0;
    }

    .infos-contato{
        flex-direction: column;
    }

    .infos-contato p, i{
        font-size: 17px;
        margin: 1rem 0 1rem 0;
    }
}