/* -- Reset -- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} 
ul {
    list-style: none;
}    
body {
    color: #222;
    -webkit-font-smoothing: antialiased;
}
/* -- Reset -- */


/* -- Cabeçalho -- */
.falso {
    width: 100%;
    height: .1rem;
    background: #5a5f3b; 
}
.menu h1, .menu li a {
    color: #5a5f3b; 
    transition: color 0.3s ease-in-out;
}
.menu-scroll {
    background: #5a5f3b !important; 
}

.menu-scroll h1, .menu-scroll li a {
    color: white !important; 
}
.menu {
    position: fixed;
    width: 100%;
    height: 4rem;
    background: white;
    display: flex;
    padding: 1rem 10rem;
    z-index: 2;
    transition: background 0.3s ease-in-out;
}
.menu h1 {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    padding: 2px;
    left: 15rem;
    top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}
.menu ul {
    display: flex;
    gap: 1.5rem;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    left: 35rem;
    top: 0px;
}
.menu li a {
    margin-right: 10px;
    text-decoration: none;
    font-family: "Anek Devanagari", sans-serif;
    font-size: 0.875rem;
    letter-spacing: .1em;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: .1em;
}
.menu li a:hover {
    text-decoration: underline;
}
/* -- Cabeçalho -- */


/* -- Banner Principal -- */
#inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; 
    margin-top: 5rem;
    padding: 0 10rem;
}
.banner {
    display: flex;
    gap: 2rem;
}
.banner img {
    width: 20rem;
    border-radius: 5px;
}
#inicio h2 {
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: .2rem;
    font-weight: 300;
    font-size: 43px;
    color: #5a5f3b;
    line-height: 1.2;
    position: relative;
    top: 9rem;
}
/* -- Banner Principal -- */


/* -- Sobre nós -- */
#sobre {
    margin-top: 3rem;
    text-align: center;
    padding: 4rem 10rem;
    background-color: white;
}
#sobre h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #5a5f3b;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}

#sobre h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #5a5f3b;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}
#sobre hr {
    width: 150px;
    border: 1px solid #5a5f3b;
    margin: 0 auto 2rem auto;
    margin-bottom: 5rem;
}
.sobre-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; 
}
.sobre-container img {
    width: 20rem;
    height: auto;
    border-radius: 5px;
    max-width: 100%; 
}
.sobre-container p {
    font-family: "Anek Devanagari", sans-serif;
    text-align: justify;
    font-size: 1rem;
    color: #686868;
    max-width: 30rem;
    line-height: 1.6;
}
/* -- Sobre nós -- */


/* -- fotos -- */
#portfolio {
    margin-top: -70px;
    text-align: center;
    padding: 4rem 0;
}
#portfolio img {
    margin-top: 10px;
    margin: 0 auto 2rem;
    width: 20rem;
}
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.carousel img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}
.next {
    right: 10px;
}
.projetos {
    display: block;
    border-radius: 5px;
    width: 67%;
    margin: auto;
    padding: 3rem;
    background-color: #5a5f3b;
    border: none;
    cursor: pointer;
    font-family: "Anek Devanagari", sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: 0.3s ease;
}
.projetos:hover {
    background-color: white;
    color: #4b5331;
}
/* -- fotos -- */


/* ---- Serviços ---- */
#comentarios {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    font-family: 'Anek Devanagari', sans-serif;
    color: #333;
}
#comentarios h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #5a5f3b;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}
#comentarios hr {
    width: 150px;
    border: 1px solid #5a5f3b;
    margin: 0 auto 2rem auto;
    margin-bottom: 5rem;
}
.servicos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.servico {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}
.depoimento {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
}
.cliente {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    color: #333;
}
.local {
    font-size: 0.9rem;
    color: #777;
}
.imagens-servico {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.imagens-servico img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.imagens-servico img:hover {
    transform: scale(1.05);
}
/* ---- Serviços ---- */


/* ---- Contatos ---- */
#contato {
    background-color: #e5e5e5;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Anek Devanagari', sans-serif;
    color: #5a5f3b; 
}
#contato h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #5a5f3b;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}
#contato hr {
    width: 150px;
    border: 1px solid #5a5f3b;
    margin: 1rem auto 2rem auto;
}
#contato p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}
#contato .whatsapp {
    display: block;
    border-radius: 5px;
    width: 37%;
    margin: auto;
    padding: .5rem;
    background-color: #5a5f3b;
    color: white;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.1rem;
    border: none;
    cursor: pointer;
    font-family: "Anek Devanagari", sans-serif;
    text-transform: uppercase;
    transition: 0.3s ease;
    text-decoration: none;
}
#contato .contato {
    display: block;
    border-radius: 5px;
    width: 100%;
    margin: auto;
    padding: .5rem;
    background-color: #5a5f3b;
    color: white;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.1rem;
    border: none;
    cursor: pointer;
    font-family: "Anek Devanagari", sans-serif;
    text-transform: uppercase;
}
#contato button img {
    width: 20px;
    height: 20px;
}
#contato button:hover {
    color: #5a5f3b;
    background-color: #e5e5e5;
}
.container {
    padding: 25px;
    max-width: 500px;
    margin: 0 auto 30px;
}
.container form input,
.container form textarea {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #ffffff;
    border-radius: 2px;
    font-size: 1rem;
    font-family: "Anek Devanagari", sans-serif;
}
.container form textarea {
    resize: none;
}
.container form p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}
.container form label {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
    color: #333;
}
.container form .contato {
    background-color: #5a5f3b;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease;
    width: 100%;
}
.container form .contato:hover {
    background-color: #4b5331;
}
/* ---- Contatos ---- */


/* ---- Rodapé ---- */
footer {
    background-color: #5a5f3b;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Anek Devanagari', sans-serif;
    color: #ffffff; 
}
footer p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}
footer i{
    width: 4rem;
}
/* ---- Rodapé ---- */


/* -- Responsividade -- */
@media screen and (max-width: 480px) {
    /* -- menu -- */
    .menu {
        padding: 1rem;
    }

    .menu h1 {
        font-size: 1.2rem;
        padding: 5px 0;
        left: 0;
        top: 0;
        text-align: center;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu li a {
        font-size: 0.9rem;
        text-align: center;
    }
    /* -- menu -- */


    /* -- sobre -- */
    #sobre h2 {
        font-size: 1.2rem;
    }

    #sobre h3 {
        font-size: 0.9rem;
    }

    .sobre-container p {
        font-size: 0.9rem; 
    }
    /* -- sobre -- */
}


@media screen and (max-width: 768px) {
    /* --banner -- */
    #inicio {
        margin-top: 20rem;
        padding: 0 2rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .banner {
        flex-direction: column;
        align-items: center;
    }
    .banner img {
        width: 100%;
        max-width: 15rem;
        margin-bottom: 1rem;
    }
    #inicio h2 {
        font-size: 2rem;
        text-align: center;
        top: 3rem;
        margin-bottom: 1rem;
    }
    /* --banner -- */


    /* -- sobre -- */
    #sobre {
        padding: 3rem 2rem;
    }

    #sobre h2 {
        font-size: 1.5rem;
    }

    #sobre h3 {
        font-size: 1rem;
    }

    .sobre-container {
        flex-direction: column; 
        gap: 1rem;
    }

    .sobre-container img {
        width: 100%; 
        max-width: 400px; 
    }

    .sobre-container p {
        font-size: 0.95rem;
        max-width: 100%;  
    }
    /* -- sobre -- */

}


@media screen and (max-width: 1024px) {
    /* -- menu -- */
    .menu {
        position: relative;
        padding: 1rem 3rem;
        height: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu h1 {
        font-size: 1.5rem;
        padding: 5px 0;
        left: 0;
        top: 0;
        position: relative;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        align-items: center;
        justify-content: center;
        position: static;
    }

    .menu li a {
        font-size: 1rem;
        text-align: center;
        margin-right: 0;
        letter-spacing: 0.1em;
    }

    .menu li a:hover {
        text-decoration: underline;
    }
    /* -- menu -- */
}
