@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* codigo fonte google fonts */

* {
    margin: 0;
    /* espaçamento externo*/
    padding: 0;
    /* espaçamento interno*/
    box-sizing: border-box;
    text-decoration: none;
    /* tira as decorações dos textos */
    list-style: none;
    /* tira as decorações das listas */
}

html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: #000;
    /* ou a cor que você quer no fundo */
    overflow-x: hidden;
    /* evita rolagem lateral que pode causar branco */
    font-family: 'Poppins', sans-serif;
}


:root {
    --black: #000000;
    /* declaro as variaveis */
    --dourado: #d3ad7f;
    --vidro: rgba(255, 255, 255, 0.1);

}

.background-black {
    background-color: var(--black);
}

/* classe reutilizavel */

.container {
    max-width: 1440px;
    padding: 0 5%;
    margin: 0 auto;
}

section,
footer {
    padding: 2.7rem 0;
}

.btn-gradiente {
    color: #fff;
    background: linear-gradient(45deg, var(--dourado), var(--dourado));
    padding: 1rem 3rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
    transition: all 0.5 ease;
    border: none;

}

.btn-gradiente:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px var(--dourado);
    transition: 0.4s;
}

/* classe do site */
nav {
    display: flex;
    justify-content: space-between;
    /* espaçamento no meio dos elementos */
    align-items: center;
    padding: 20px 0;
}

.logo a {
    font-size: 30px;
    /* RosieneK */
    font-weight: bold;
    color: white;
}

.ul {
    display: flex;
    align-items: center;
}


.ul li {
    margin: 0 35px;
    font-size: 15px;

}

.ul li a {
    color: white;
}

/*começo do main aonde esta a logo*/

main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.main-text {
    width: 50%;
    color: white;
}

.main-text h1 {
    font-size: 4rem;
}

.main-text h2 {
    font-size: 1.5rem;
}

.main-text div {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.main-img {
    width: 50%;
}

.main-img img {
    width: 100%;
}

/*menu icon */

.menu-icon {
    display: none;
    position: relative;
    z-index: 10;
}

/* Sobre

.sobre{
    background-color: #d3ad7f; 
}

.sobre .container{
    display: flex;
    align-items: center;  
    justify-content: space-between; 
}

.sobre .sobre-text{
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    width: 50%;   
}

.sobre .sobre-numero{
    display: flex; 
    align-items: center;
    justify-content: center; 
    color: white;  
}

.sobre .sobre-numero p{
    text-align: center; 
    margin: 0 25px; 
    font-size: 20px;  
}

.sobre .sobre-numero p span{
    font-size: 25px;
    font-weight: 800;
}*/

/*Gambiarra*/
.servicos {
    margin: 0;
    padding: 20;
    background-color: #d3ad7f;
    /* preenche toda a largura */
    width: 100%;
}

/* Serviços*/
.servicos .container {
    background-color: var(--dourado);
    display: flex;
    justify-content: space-between;
    /*margin: 30px auto; GAMBIARRAAAAAAA*/
}

.servicos .card {
    width: 30%;
    cursor: pointer;
    padding: 20px;
    border-radius: 15px;
    transition: 0.4s;
    color: white;
}

.servicos .card:hover {
    box-shadow: 0px 10px 67px 8px #c9a35c;
}

.servicos .card img {
    width: 100px;
}

.servicos .card .titulo {
    margin: 13px 0;
    font-weight: 700;
}

/*formulario de email*/

.contatos {
    padding: 6rem 2rem;
    background-color: #000;
}

.contatos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.formulario-contato {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--vidro);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    padding: 2rem;
    border: 1px solid var(--vidro);
}

.campo-form {
    width: 100%;
    padding: 1rem;
    background: var(--vidro);
    border-radius: 8px;
    color: #fff;
    border: 1px solid var(--vidro);
    outline: none;
}

.campo-form:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 10px #fff;
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.botao-form {
    color: #fff;
    background: linear-gradient(45deg, var(--dourado), var(--dourado));
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: all 0.5 ease;
    border: none;
}

.botao-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px #fbfbe4;

}

/*endereço*/

.address {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 7rem 0;
    background-color: #000000;
}

.address h2 {
    align-items: center;
    padding: 0 0 2rem 0;
    color: white;
    font-size: 2.5rem;
}

.map-container {
    width: 100%;
    max-width: 800px;
    /* tamanho máximo no PC */
    margin: 0 auto;
    /* centraliza */
    height: 600px;

}


.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*footer*/

.footer {
    background-color: #000;
    text-align: center;
}

.footer .share {
    padding: 1rem 0;
}

.footer .share img {
    margin: 0.3rem;
    cursor: pointer;
    border-radius: 50%;
}

.footer .share img:hover {
    background-color: var(--dourado);
}

/*responsivo*/

@media (max-width:960px) {
    .menu-icon {
        display: block;
    }

    .ul {
        position: fixed;
        background: #d3ad7f;
        top: 0;
        width: 100%;
        height: 100%;
        left: 100%;
        transition: 0.4s;
        flex-direction: column;
        justify-content: center;

    }

    .ul li {
        font-size: 25px;
        margin: 20px 0;
    }

    .ul.ativo {
        left: 0;
    }

    main .container {
        flex-direction: column;
    }

    main .container .main-img {
        width: 150%;
    }

    main .container .main-text {
        width: 100%;
        text-align: center;
    }

    main .container .main-text h1 {
        font-size: 4rem;
    }

    main .container .main-text div {
        justify-content: center;
    }

    .servicos .container {
        flex-direction: column;
    }

    .servicos .card {
        width: 100%;
        align-items: center;
    }

    .newsletter .box-newsletter h2 {
        font-size: 2rem;
        margin-top: 20px;
    }

    .newsletter .box-newsletter input {
        width: 100%;
        margin-top: 20px;
    }

    .newsletter .box-newsletter {
        padding: 50;
    }

    .newsletter .box-newsletter .btn-gradiente {
        width: 70%;
        margin-top: 20px;
    }

    .map-container {
        max-width: 80%;
        /* diminui no celular */
        height: 400px;
        /* altura menor */
    }
}

@media (max-width:440px) {
    .sobre .sobre-numero {
        flex-direction: column;
    }

}