* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/*Menu Scroll*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Estilos gerais*/
.interface {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2%;
}

button {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}

/*Estilo do cabeçalho*/
header {
    background-color: black;
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99999999;
}

.logotipo,
.menu-desktop {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;

    position: relative;
    height: 100%;
}

.logotipo {
    width: 50%;
}

.menu-desktop {
    width: 50%;
}

.logotipo img {
    width: 80%;
    max-width: 240px;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.menu-desktop ul {
    list-style-type: none;
    text-align: right;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.menu-desktop ul li {
    display: inline-block;
    margin: 0 20px;
}

.menu-desktop ul li a {
    color: #ffffff;
    text-decoration: none;
}

.menu-desktop ul li a button {
    width: 100px;
    height: 40px;
    border-radius: 30px;
}

/* Botão hamburguer */
#btn-menu {
    width: 40px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 25px;
}

#btn-menu .linha {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    transition: .3s;
}

/* Animação do botão */
#btn-menu.ativar .linha:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

#btn-menu.ativar .linha:nth-child(2) {
    opacity: 0;
}

#btn-menu.ativar .linha:nth-child(3) {
    transform: rotate(-45deg) translate(12px, -12px);
}

/* Menu mobile */
.menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    transition: .4s;
    z-index: 1000;
    padding-top: 80px;
}

.menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.menu-mobile ul li {
    margin: 20px 0;
}

.menu-mobile ul li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: .3s;
}

.menu-mobile ul li a:hover {
    color: #6c6b66;
    /* dourado */
}

/* Menu mobile aberto */
.menu-mobile.abrir {
    right: 0;
}

/* Responsivo */
@media screen and (max-width: 856px) {
    #btn-menu {
        display: flex;
    }

    .menu-desktop {
        display: none;
    }
}

/*Estilo do topo do site*/
section.topo-site {
    background-image: linear-gradient(45deg, #8f8a8a, #2b2929);
    padding: 80px 0;
}

.txt-topo,
.img-topo {
    display: inline-block;
    margin-right: -4px;
    width: 50%;
    vertical-align: middle;
}

.txt-topo {
    color: #ffffff;
}

.txt-topo h1 {
    font-size: 3.2rem;
    line-height: 60px;
}

.txt-topo h1 span {
    display: block;
}

.txt-topo p {
    font-size: 1.3rem;
    margin: 20px 0;
}

.txt-topo button {
    width: 240px;
    height: 50px;
    border-radius: 30px;
    font-size: 18px;
}

.img-topo img {
    width: 100%;
}

/*Sessão segmentos*/
section.skills {
    padding: 33px 0;
}

.skills .titulo-sessao {
    text-align: center;
}

.skills .titulo-sessao h2 {
    color: #2b2929;
    font-size: 2rem;
    margin-bottom: 20px;
}

.skills-container {
    width: 100%;
    text-align: center;
}

.skills .skills-box {
    display: inline-block;
    width: 30%;
    margin: 0 1%;

    text-align: center;

    border: 2px solid #000000;
    padding: 60px 2%;
    border-radius: 0 70px 30px 70px;

    box-shadow: 10px 10px 0 #000000;
}

.skills .skills-box img {
    width: 60%;
}

.skills .skills-box h3 {
    color: #000000;
    margin: 15px 0;
    font-size: 1.4rem;
}

.skills .skills-box p {
    font-size: 14px;
}

.skills-container .skills-box ul li {
    list-style: none;
}

.skills-container .skills-box ul li a button {
    width: 140px;
    height: 50px;
    background-color: transparent;
    border: 3px solid #000000;
    border-radius: 30px;
    font-size: 18px;
    color: #000000;
    cursor: pointer;
    margin-top: 20px;
}

/*Estilo do protifolio*/
section.meus-produtos {
    padding: 80px 0;
    background-image: linear-gradient(45deg, #8f8a8a, #2b2929);
}

.txt-produtos,
.produtos-container {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
    width: 50%;
}

.txt-produtos {
    color: #ffffff;
    position: sticky;
    top: 30%;
    left: 0;
}

.txt-produtos h2 {
    font-size: 5rem;
    line-height: 80px;
}

.txt-produtos h2 span {
    display: block;
}

.txt-produtos p {
    font-size: 20px;
    margin: 40px 0 20px 0;
}

.txt-produtos button {
    width: 250px;
    height: 50px;
    font-size: 20px;
    border-radius: 40px;
}

.produtos-container {
    color: #ffffff;
    text-align: center;
}

.produtos-content {
    margin-bottom: 40px;
}

.produtos-box img {
    width: 320px;
    height: 350px;
    background-color: #ffffff;
    margin: 0 auto;
    border-radius: 0 70px 30px 70px;
    box-shadow: 10px 10px 0 #000000;
}

.produtos-content h3 {
    margin-top: 10px;
}

/*Estilo  da seção sobre*/
section.sobre-nos {
    padding: 80px 0;
}

.img-sobre,
.txt-sobre {
    display: inline-block;
    margin-right: -4px;
    vertical-align: middle;
    width: 50%;
}

.sobre-nos .img-sobre img {
    width: 70%;
    border-radius: 0 70px 30px 70px;
    box-shadow: 10px 10px 0 #000000;
}

.txt-sobre {
    color: #2b2929;
}

.txt-sobre h2 {
    font-size: 4rem;
    line-height: 60px;
}

.txt-sobre h2 span {
    display: block;
}

.txt-sobre p {
    margin: 40px 0 20px 0;
    font-size: 20px;
    text-align: justify;
    line-height: 30px;
}

.txt-sobre button,
footer .line-footer-bottom button {
    background-color: #000000;
    width: 70px;
    height: 70px;
    font-size: 28px;
    border-radius: 0 20px 10px 20px;
}

/*Estilo do formulario*/
section.contato {
    padding: 80px 0;
    background-image: linear-gradient(45deg, #8f8a8a, #2b2929);
}

.txt-contato,
.form-contato {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top;
    width: 50%;
}

.txt-contato {
    color: #ffffff;
    position: sticky;
    top: 30%;
    left: 0;
}

.txt-contato h2 {
    font-size: 4rem;
    line-height: 50px;
}

.txt-contato h2 span {
    display: block;
}

.txt-contato p.p-contato {
    margin: 20px 0;
    font-size: 20px;
}

.txt-contato p.icon-contato {
    font-size: 18px;
    margin-bottom: 16px;
}

.txt-contato p.icon-contato i {
    font-size: 26px;
    margin-right: 10px;
}

form {
    width: 60%;
    color: #ffffff;
}

form label {
    display: block;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid #ffffff;
    outline: none;
    color: #ffffff;
    font-size: 18px;
}

form div {
    margin-bottom: 15px;
}

form input {
    border-radius: 40px;
}

form textarea {
    border-radius: 20px;
    height: 120px;
    resize: none;
}

form .btn-enviar {
    text-align: center;
}

form .btn-enviar input {
    width: 120px;
    cursor: pointer;
}

/*Estilom do rodapé*/
footer {
    padding: 50px 0;
    background-color: #000000;
}

footer .line-footer-top {
    padding-bottom: 20px;
    border-bottom: 2px solid #ffffff;
}

footer .line-footer-bottom {
    padding-top: 20px;
}

footer .line-footer-bottom button {
    background-color: transparent;
    width: 55px;
    height: 55px;
    margin-right: 10px;
}

footer .logotipo img {
    width: 180%;
}