/* CONFIGURAÇÕES GERAIS */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background-color: #f9f7f5; 
    color: #333; 
    line-height: 1.6;
    min-width: 320px;
}

a { 
    text-decoration: none;
    color: inherit; 
}


/* CABEÇALHO */

.topo-site { 
    background: #fff; 
    padding: 20px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
}



.logo { 
    font-size: 24px; 
    font-weight: bold; 
    color: #1a1a1a; 
    display: flex;
    white-space: nowrap;
}

.logo span { 
    color: #000; 
    margin-left: 20px;
}

.menu { 
    padding-left: 20px;
}

.menu a {
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
    color: #666; 
    transition: 0.3s; 
    padding: 10px;
}

.menu a:hover { 
    color: #a8ec09; 
}

.botao-login-admin { 
    border: 2px solid #333; 
    padding: 8px 18px; 
    border-radius: 5px; 
    font-weight: bold; 
    cursor: pointer; 
    background: none; 
    margin-left: 20px; 
    transition: 0.3s; 
}

.botao-login-admin:hover { 
    background: #333; 
    color: #fff; 
}

.titulo-login{
    text-align:center;
    margin-bottom:25px;
}

.campo-entrada{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

.botao-entrar{
    width:100%;
    padding:12px;
    background:#8b4513;
    color:white;
    border:none;
    border-radius:6px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.botao-entrar:hover{
    background:#a0522d;
}

.erro-msg{
    display:none;
    color:red;
    text-align:center;
    margin-top:10px;
    font-size:14px;
}

.botao-fechar{ 
    position: absolute; 
    top: 10px; 
    right: 10px; 
    padding: 10px; 
    color: red; 
    border: 1px solid red; 
    background: none; 
    cursor: pointer; }


/* HERO */

.secao-destaque { 
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80'); 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: #fff; 
    padding: 0 20px; 
}

.conteudo-destaque h1 { 
    font-size: 50px; 
    margin-bottom: 15px; 
}

.conteudo-destaque p { 
    font-size: 20px; 
    margin-bottom: 30px; 
    opacity: 0.9; 
}

.botao-orcamento { 
    background: #8b4513; 
    color: #fff; 
    padding: 15px 40px; 
    font-size: 18px; 
    font-weight: bold; 
    border-radius: 4px; 
    transition: 0.3s; 
    display: inline-block; 
}

.botao-orcamento:hover { 
    background: #a0522d; 
    transform: translateY(-3px); 
}


/* SOBRE */

.secao-sobre { 
    padding: 80px 10%; 
    display: flex; 
    gap: 50px; 
    align-items: center; 
    background: #fff; 
    flex-wrap: wrap;
    min-height: 70vh;
}

.texto-sobre { 
    flex: 1; 
}

.texto-sobre h2 { 
    font-size: 35px; 
    margin-bottom: 20px; 
}

.imag-marcenaria{
    flex:1;
    height:300px;
    border-radius:8px;
    overflow:hidden;
}

.imag-marcenaria img{
    width:100%;
    height:100%;
    object-fit:cover;
}


/* SERVIÇOS */

.secao-servicos { 
    padding: 80px 10%; 
    text-align: center; 
}

.grid-servicos { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-top: 30px; 
}

.caixa-servico { 
    background: #fff; 
    padding: 20px 15px; 
    border-radius: 8px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.caixa-img{
    height:200px;
    overflow:hidden;
}

.foto-marcenaria{
    width:100%;
    height:100%;
    object-fit:cover;
    transition: 0.3s;
}

.caixa-servico:hover .foto-marcenaria{
    transform: scale(1.05);
}

.caixa-servico h3 { 
    color: #8b4513; 
    margin: 15px 0; 
}


/* RODAPÉ */

.rodape { 
    background: #1a1a1a; 
    color: #fff; 
    padding: 60px 10%; 
    display: flex; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 30px; 
}

.rodape h2 { 
    font-style: italic; 
    margin-bottom: 15px; 
}

.rodape p { 
    color: #aaa; 
    font-size: 14px; 
}

.logo_redes { 
    display: flex;
    height: 50px; 
    border-radius: 15px;
}

.banner_redes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.banner_redes_ic {
    display: flex;
    gap: 20px;
}

.dados_contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.linha-contato{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:inherit;
}

.icon-contato{
    width:20px;
    height:20px;
}


/* DIREITOS */

.direitos {
    margin-top: 20px;
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    font-size: 13px;
    color: #bbb;
    word-wrap: break-word;
}

.direitos p {
    margin: 5px 0;
}

.link-dev {
    color: #a8ec09;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.link-dev:hover {
    color: #fff;
    text-decoration: underline;
}


/* MODAL */

.fundo-modal { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.8); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 2000; 
}

.janela-login { 
    background: #fff; 
    padding: 40px; 
    border-radius: 8px; 
    width: 100%; 
    max-width: 350px; 
    position: relative; 
}


/* MENU MOBILE */

.menu-mobile-icon {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}


/* RESPONSIVIDADE */

@media (max-width: 768px) {

    .menu-mobile-icon {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        text-align: center;
    }

    .menu.ativo {
        display: flex;
    }

    .menu a {
        margin: 15px 0;
        display: block;
    }

    .botao-login-admin {
        margin: 10px auto;
        width: fit-content;
    }

    .rodape {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .secao-sobre {
        flex-direction: column;
    }

    .conteudo-destaque h1 {
        font-size: 32px;
    }

    .conteudo-destaque p {
        font-size: 16px;
    }
}


/* TELAS MUITO PEQUENAS */

@media (max-width: 380px) {

    .logo {
        font-size: 18px;
    }

    .logo span {
        margin-left: 8px;
    }

}





