@charset "UTF-8";

/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    list-style: none;
}

/* ROLAGEM SUAVE */
html{
    scroll-behavior: smooth;
}

/* REMOVE FUNDO DO BODY */
body{
    background: #fff;
}

/* HEADER FIXO */
header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
}

/* LOGO */
.logo h1{
    color: white;
    font-size: 22px;
}

/* MENU */
nav ul{
    display: flex;
    gap: 30px;
}

nav a{
    color: white;
    font-size: 18px;
}

nav a:hover{
    color: #f39c12;
}

svg{
    display: none;
}

/* REDES */
.rede-social{
    display: flex;
    gap: 10px;
}

.rede-social a{
    color: white;
}



/* AJUSTE DE ÂNCORA POR CAUSA DO HEADER FIXO */
#banner,
#historia,
#servicos,
#galeria,
#contato{
    scroll-margin-top: 120px;
}

/* BANNER */
.banner{
    height: 100vh;
    background-image: url('../imagens/banner2.jpg');
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.banner-conteudo{
    background: rgba(0, 0, 0, 0.45);
    padding: 30px 25px;
    border-radius: 8px;
    color: white;
    max-width: 700px;
}

.banner-conteudo h2{
    font-size: 52px;
    margin-bottom: 15px;
}

.banner-conteudo p{
    font-size: 20px;
    margin-bottom: 25px;
}

/* BOTÃO AGENDAR */
.btn-agendar{
    display: inline-block;
    background: #b57b47;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-agendar:hover{
    background: #8f5e33;
}

/* HISTÓRIA */
.historia{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

    background-color: #eee;
    padding: 80px 10%;
}

/* IMAGEM */
.historia-img img{
    width: 500px;
    max-width: 100%;
}

/* TEXTO */
.historia-texto{
    max-width: 500px;
}

.historia-texto h2{
    font-size: 48px;
    color: #b57b47;
    margin-bottom: 20px;
}

.historia-texto p{
    color: #333;
    margin-bottom: 15px;
}

/* SERVIÇOS */
.servicos{
    background: url('../imagens/bg-servicos.png') center/cover;
    padding: 80px 20px;
    text-align: center;
    color: black;
}

.servicos h2{
    font-size: 60px;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* LISTA */
.lista-servicos{
    max-width: 700px;
    margin: auto;
}

/* ITEM */
.item{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.7);
    font-size: 18px;
}

/* BOTÃO ABAIXO DOS SERVIÇOS */
.agendamento-servico{
    margin-top: 40px;
    text-align: center;
}

/* GALERIA */
.galeria{
    background: #efefef;
    padding: 80px 20px;
    text-align: center;
}

.galeria h2{
    font-size: 72px;
    color: #b57b47;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.galeria-grid{
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.galeria-img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.galeria-img:hover{
    transform: scale(1.03);
    opacity: 0.9;
}

/* MODAL GALERIA */
.modal-galeria{
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-img{
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.fechar-modal{
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 45px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.seta{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.seta:hover{
    background: rgba(0, 0, 0, 0.6);
}

.seta-esquerda{
    left: 30px;
}

.seta-direita{
    right: 30px;
}

/* CONTATO */
.contato{
    background-color: rgb(19, 18, 18);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.contato h2{
    font-size: 60px;
    margin-bottom: 20px;
}

/* INFO FUNCIONAMENTO */
.info-funcionamento{
    margin-bottom: 30px;
    font-size: 18px;
    color: #ccc;
    line-height: 1.7;
}

/* FORM */
.form-contato{
    max-width: 800px;
    margin: auto;
}

/* LINHA */
.linha{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* INPUTS / TEXTAREA / SELECT */
.form-contato input,
.form-contato textarea,
.form-contato select{
    width: 100%;
    padding: 15px;
    border: none;
    outline: none;
    background: #e5e5e5;
    border-radius: 5px;
    font-size: 16px;
}

.form-contato select{
    margin-bottom: 10px;
}

.form-contato input:focus,
.form-contato textarea:focus,
.form-contato select:focus{
    outline: 2px solid #b57b47;
    background: #fff;
}

/* TEXTAREA */
.form-contato textarea{
    height: 150px;
    resize: none;
    margin-top: 10px;
}

/* BOTÃO */
.form-contato button{
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.3s;
}

.form-contato button:hover{
    background: #000;
}

/* RESPONSIVO GALERIA */
@media(max-width: 910px){
    .galeria h2{
        font-size: 42px;
    }

    .galeria-grid{
        grid-template-columns: 1fr 1fr;
    }

    .galeria-img{
        height: 220px;
    }

    .modal-img{
        max-width: 90%;
        max-height: 70%;
    }

    .seta{
        font-size: 35px;
    }
}

@media(max-width: 600px){
    .galeria-grid{
        grid-template-columns: 1fr;
    }

    .galeria-img{
        height: 250px;
    }

    .seta-esquerda{
        left: 10px;
    }

    .seta-direita{
        right: 10px;
    }

    .fechar-modal{
        right: 20px;
        font-size: 38px;
    }
}

/* RESPONSIVO BANNER */
@media(max-width: 910px){
    .banner-conteudo{
        margin: 0 20px;
        padding: 25px 20px;
    }

    .banner-conteudo h2{
        font-size: 34px;
    }

    .banner-conteudo p{
        font-size: 18px;
    }

    .btn-agendar{
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media(max-width: 600px){
    .banner-conteudo h2{
        font-size: 28px;
    }

    .banner-conteudo p{
        font-size: 16px;
    }
}

/* RESPONSIVO CONTATO */
@media(max-width: 910px){
    .linha{
        flex-direction: column;
    }

    .contato h2{
        font-size: 40px;
    }
}

/* RESPONSIVO SERVIÇOS */
@media(max-width: 910px){
    .servicos h2{
        font-size: 40px;
    }

    .item{
        font-size: 16px;
    }
}

/* RESPONSIVO HEADER */
@media(max-width: 910px){
    header{
        flex-direction: column;
        gap: 15px;
    }

    header{
    align-items: center;
    text-align: center;
}

    nav{
        width: 100%;
    }

    nav ul{
        flex-direction: column;
        gap: 0;
    }

nav ul li{
    display: none;
    width: 100%;
}

nav ul.ativo li{
    display: block;
}

nav ul li:not(:first-child){
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

nav ul li a{
    display: block;
    padding: 15px 20px;
}

nav ul.ativo li a{
    display: block;
}

    svg{
        cursor: pointer;
        display: block;
        margin: 10px auto;
       
    }

    .historia{
        flex-direction: column;
        text-align: center;
    }

    .rede-social{
        display: none;
    }
}

