/*==================================================
 RENOVARE PLANEJADOS
 STYLE.CSS
 Parte 1/5
 Reset + Variáveis + Base + Header
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --cor-principal:#8b6b4b;
    --cor-secundaria:#1d1d1d;
    --cor-texto:#444;
    --cor-clara:#ffffff;
    --cor-fundo:#f7f7f7;

    --sombra:0 10px 35px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

    --largura:1280px;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:var(--cor-texto);

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:90px 25px;

}

.container{

    width:100%;

    max-width:var(--largura);

    margin:auto;

}

/*=========================
HEADER
==========================*/

header,
.header-interno{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(8px);

}

header.scrolled,
.header-interno.scrolled{

    background:#ffffff;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

header .container,
.header-interno{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 6%;

}

.logo{

    font-size:32px;

    font-weight:800;

    letter-spacing:4px;

    color:#fff;

    transition:.4s;

}

.header-interno .logo{

    color:#222;

}

header.scrolled .logo,
.header-interno.scrolled .logo{

    color:#222;

}

nav{

    display:flex;

    align-items:center;

    gap:32px;

}

nav a{

    font-size:15px;

    font-weight:500;

    color:#fff;

    transition:.3s;

    position:relative;

}/* Ícone Instagram */

.instagram-menu{

    font-size:28px;

    display:flex;

    align-items:center;

}.instagram-menu:hover{

    transform:scale(1.15);

}.instagram-menu i{
    transition:.3s;
}
.header-interno nav a{

    color:#222;

}
header.scrolled nav a,
.header-interno.scrolled nav a{

    color:#222;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--cor-principal);

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}

nav a:hover{

    color:var(--cor-principal);

}

/* BOTÃO MENU */

.btn-menu{

    background:var(--cor-principal);

    color:#fff !important;

    padding:13px 24px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--sombra);

}

.btn-menu:hover{

    transform:translateY(-4px);

    background:#6f5238;

}/*==================================================
PARTE 2/5
HERO + BOTÕES + ANIMAÇÕES
Cole logo abaixo da Parte 1
==================================================*/

/* HERO */
/*========================================
HERO INTERNO
========================================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#111;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:1;

}

.hero img{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    animation:zoomHero 18s linear infinite;

}
/*========================================
HERO INTERNO
========================================*/

.hero-interno{

    padding:160px 20px 70px;

    text-align:center;

}

.hero-interno .container{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.overlay{

    position:relative;

    z-index:2;

    max-width:850px;

    text-align:center;

    color:#fff;

    padding:25px;

}

.overlay h1{

    font-size:62px;

    line-height:1.1;

    font-weight:700;

    margin-bottom:25px;

}

.overlay p{

    font-size:19px;

    line-height:1.8;

    margin-bottom:40px;

    color:#f5f5f5;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* BOTÕES */

.btn-principal{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:60px;

    background:var(--cor-principal);

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--sombra);

}

.btn-principal:hover{

    transform:translateY(-5px);

    background:#725438;

}

.btn-secundario{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border:2px solid #fff;

    border-radius:60px;

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn-secundario:hover{

    background:#fff;

    color:#222;

}

/* TITULOS */

.titulo-secao{

    text-align:center;

    margin-bottom:60px;

}

.titulo-secao h2{

    font-size:42px;

    color:#222;

    margin-bottom:15px;

}

.titulo-secao p{

    max-width:760px;

    margin:auto;

    color:#777;

    line-height:1.8;

}

/* ORÇAMENTO */

.orcamento{

    background:#fafafa;

}

.orcamento-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    max-width:1280px;

    margin:auto;

}

.orcamento-texto h2{

    font-size:40px;

    color:#222;

    margin-bottom:25px;

}

.orcamento-texto p{

    margin-bottom:20px;

    line-height:1.9;

}

.orcamento-texto h3{

    margin:35px 0;

    color:var(--cor-principal);

    font-size:30px;

}

.orcamento-imagem img{

    border-radius:20px;

    box-shadow:var(--sombra);

}

/* ANIMAÇÕES */

@keyframes zoomHero{

    0%{

        transform:scale(1);

    }

    100%{

        transform:scale(1.08);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.overlay h1,
.overlay p,
.hero-buttons{

    animation:fadeUp .9s ease forwards;

}/*==================================================
PARTE 3/5
PROJETOS + CARDS + COMO FUNCIONA + DIFERENCIAIS
Cole logo abaixo da Parte 2
==================================================*/

/*========================================
PROJETOS
========================================*/

.projetos{

    background:#ffffff;

}

.galeria-projetos,
.lista-projetos{

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:50px;

}

/*========================================
CARD PREMIUM
========================================*/

.card-projeto{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

}

.card-projeto:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgb(8, 8, 8);

}


.card-projeto:hover img{

    transform:scale(1.08);

}

.card-projeto h3{

    padding:25px 25px 12px;

    color:#222;

    font-size:24px;

}

.card-projeto p{

    padding:0 25px;

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}

.btn-card{

    display:inline-flex;

    margin:0 25px 30px;

    padding:14px 24px;

    background:var(--cor-principal);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-card:hover{

    background:#6d5138;

    transform:translateY(-3px);

}

/*========================================
BOTÃO VER TODOS
========================================*/

.botao-projetos{

    width:100%;

    display:flex;

    justify-content:center;

    margin-top:60px;

}

.botao-projetos a{

    padding:18px 36px;

    border-radius:50px;

    background:var(--cor-principal);

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.botao-projetos a:hover{

    transform:translateY(-5px);

}

/*========================================
COMO FUNCIONA
========================================*/

.como-funciona{

    background:#fafafa;

}

.como-funciona h2{

    text-align:center;

    font-size:42px;

    color:#222;

    margin-bottom:60px;

}

.passos{

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.passo{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.passo:hover{

    transform:translateY(-8px);

}

.passo span{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    border-radius:50%;

    background:var(--cor-principal);

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

}

.passo h3{

    color:#222;

    margin-bottom:15px;

}

.passo p{

    color:#666;

    line-height:1.7;

}

/*========================================
DIFERENCIAIS
========================================*/

.diferenciais{

    background:#fff;

}

.diferenciais h2{

    text-align:center;

    font-size:30px;

    margin-bottom:20px;

    color:#222;

}

.subtitulo{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

    color:#777;

    line-height:1.8;

}

.cards-diferenciais{

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card-diferencial{

    background:#fff;

    padding:35px;

    border-radius:20px;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.card-diferencial:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.card-diferencial h3{

    color:#222;

    margin-bottom:18px;

    font-size:22px;

}

.card-diferencial p{

    color:#666;

    line-height:1.8;

}/*==================================================
PARTE 4/5
PÁGINA PROJETOS + EXECUTADOS + FILTROS + LIGHTBOX
Cole abaixo da Parte 3
==================================================*/


/*========================================
TÍTULO DAS PÁGINAS
========================================*/

.pagina-titulo{

    padding:170px 20px 70px;

    text-align:center;

    background:#fafafa;

}

.pagina-titulo h1{

    font-size:54px;

    color:#222;

    margin-bottom:18px;

    font-weight:700;

}

.pagina-titulo p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:1.9;

    font-size:18px;

}


/*========================================
GALERIA
========================================*/

.galeria-pagina{

    max-width:720px;

    margin:auto;

    padding:70px 20px;

}


/*========================================
FILTROS
========================================*/

.filtros{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:2px;

    margin-bottom:50px;

}

.filtros button{

    border:none;

    background:#efefef;

    color:#444;

    padding:14px 28px;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.filtros button:hover{

    background:var(--cor-principal);

    color:#fff;

    transform:translateY(-4px);

}

.filtros button.ativo{

    background:var(--cor-principal);

    color:#fff;

}


/*========================================
LISTA DOS PROJETOS
========================================*/

.lista-projetos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,520px));

    justify-content:center;

    gap:35px;

}

.lista-projetos .card-projeto{

    cursor:pointer;

}


/*========================================
EFEITO NAS IMAGENS
========================================*/

.lista-projetos img{

    width:100%;

    aspect-ratio:3/2;

    object-fit:cover;

    display:block;

    transition:.5s;

}
.lista-projetos .card-projeto:hover img{

    transform:scale(1.08);

}

.lista-projetos h3{

    padding:22px;

    font-size:24px;

    color:#222;

}


/*========================================
LIGHTBOX
========================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.90);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.lightbox.ativo{

    opacity:1;

    visibility:visible;

}

.imagem-ampliada{

    max-width:90vw;

    max-height:90vh;

    width:auto;

    height:auto;

    object-fit:contain;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    animation:zoomImagem .35s;

}

.fechar{

    position:absolute;

    top:25px;

    right:40px;

    font-size:55px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.fechar:hover{

    transform:rotate(90deg);

    color:var(--cor-principal);

}

/*========================================*
* SETAS DO LIGHTBOX
*========================================*/

.lightbox-anterior,
.lightbox-proximo {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    color: #666;

    font-size: 42px;
    font-weight: 400;
    line-height: 1;

    padding: 15px;

    cursor: pointer;

    z-index: 100;

    opacity: .9;

    text-shadow:
        0 1px 3px rgba(255, 255, 255, .9),
        0 1px 4px rgba(0, 0, 0, .3);

    -webkit-tap-highlight-color: transparent;

    transition:
        opacity .25s ease,
        transform .25s ease,
        color .25s ease;
}


/* SETA ESQUERDA */

.lightbox-anterior {
    left: 20px;
}


/* SETA DIREITA */

.lightbox-proximo {
    right: 20px;
}


/* HOVER */

.lightbox-anterior:hover,
.lightbox-proximo:hover {
    color: #444;
    opacity: 1;
}

.lightbox-anterior:hover {
    transform: translateY(-50%) translateX(-4px);
}

.lightbox-proximo:hover {
    transform: translateY(-50%) translateX(4px);
}


/*========================================*
* SETAS NO CELULAR
*========================================*/

@media (max-width: 768px) {

    .lightbox-anterior,
    .lightbox-proximo {

        width: auto;
        height: auto;

        font-size: 30px;

        padding: 8px;

        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;

        color: #666;

        opacity: .95;

        -webkit-tap-highlight-color: transparent;
    }

    .lightbox-anterior {
        left: 5px;
    }

    .lightbox-proximo {
        right: 5px;
    }

    .lightbox-anterior:focus,
    .lightbox-proximo:focus,
    .lightbox-anterior:active,
    .lightbox-proximo:active {

        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
}
/*========================================
AJUSTES DO LIGHTBOX
========================================*/

.lightbox {
    padding: 30px;
}

/* Imagem ampliada */
.lightbox .imagem-ampliada {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

/* Botão fechar */
.lightbox .fechar {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

/* Evita que a imagem fique maior que a tela no celular */
@media (max-width: 768px) {

    .lightbox {
        padding: 20px;
    }

    .lightbox .imagem-ampliada {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 12px;
    }

    .lightbox .fechar {
        top: 10px;
        right: 18px;
        font-size: 45px;
    }
}

/*========================================
WHATSAPP FIXO
========================================*/

.whatsapp-fixo{

    position:fixed;

    right:25px;

    bottom:25px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.28);

    z-index:9999;

    transition:.35s;

}

.whatsapp-fixo:hover{

    transform:scale(1.12);

}


/*========================================
ANIMAÇÕES
========================================*/

@keyframes zoomImagem{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes aparecer{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.card-projeto{

    animation:aparecer .6s ease;

}/*==================================================
PARTE 5/5
RODAPÉ + RESPONSIVO + AJUSTES FINAIS
Cole abaixo da Parte 4
==================================================*/


/*========================================
RODAPÉ
========================================*/

footer{

    background:#151515;

    color:#fff;

    padding:80px 20px 30px;

}

.footer-container{

    max-width:1280px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-logo{

    font-size:34px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}

.footer-texto{

    color:#cfcfcf;

    line-height:1.9;

    max-width:420px;

}

.footer-coluna h3{

    margin-bottom:20px;

    font-size:20px;

    color:#fff;

}

.footer-coluna ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-coluna a{

    color:#d9d9d9;

    transition:.3s;

}

.footer-coluna a:hover{

    color:var(--cor-principal);

    padding-left:8px;

}

.footer-copy{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color:#bdbdbd;

    font-size:14px;

}


/*========================================
ÍCONE WHATSAPP
========================================*/

.whatsapp-fixo{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.55);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}


/*========================================
SCROLLBAR
========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--cor-principal);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#6f5238;

}


/*========================================
ANIMAÇÃO AO ROLAR
========================================*/

.reveal{

    opacity:0;

    transform:translateY(45px);

    transition:.7s;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}
.menu-toggle{

    display:none;

}

/*========================================
TABLETS
========================================*/

@media (max-width:992px){

    .orcamento-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .overlay h1{

        font-size:46px;

    }

    .footer-container{

        grid-template-columns:1fr 1fr;

    }

}


/*========================================
CELULARES
========================================*/

@media (max-width:768px){

    section{

        padding:70px 18px;

    }

    header .container,
    .header-interno{

        padding:18px;

    }
nav a{

    color:#222;

}
    .menu-toggle{

    display:block;
    font-size:30px;
    cursor:pointer;
    color:#fff;

}
.header-interno .menu-toggle {
    color: #555;
}

nav{

    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    align-items:center;
    gap:20px;
    padding:25px 0;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:999;

}


nav.ativo{

    display:flex;

}

    .logo{

        font-size:28px;

    }

    .hero{

        height:88vh;

    }

    .overlay{

        padding:15px;

    }

    .overlay h1{

        font-size:34px;

        line-height:1.2;

    }

    .overlay p{

        font-size:16px;

        line-height:1.7;

    }

    .hero-buttons{

        flex-direction:column;

        width:100%;

    }

    .btn-principal,
    .btn-secundario{

        width:100%;

    }

    .titulo-secao h2{

        font-size:30px;

    }

    .pagina-titulo{

        padding:140px 20px 45px;

    }

    .pagina-titulo h1{

        font-size:36px;

    }

    .lista-projetos,
    .galeria-projetos,
    .cards-diferenciais,
    .passos{

        grid-template-columns:1fr;

    }

    .card-projeto img{

        height:220px;

    }

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-texto{

        margin:auto;

    }

    .footer-coluna ul{

        align-items:center;

    }

    .whatsapp-fixo{

        width:60px;

        height:60px;

        font-size:28px;

    }

}


/*========================================
TELAS MUITO GRANDES
========================================*/

@media (min-width:1600px){

    .container{

        max-width:1450px;

    }

    .overlay h1{

        font-size:72px;

    }

}
/* ==========================
   ANIMAÇÕES
========================== */

.hidden {

    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;

}

.show {

    opacity: 1;
    transform: translateY(0);

}

.lightbox.ativo {

    display: flex;

}

/*========================================
FIM DO CSS
========================================*/