/* ==================================================
                    RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F6F3;
    color:#2B2B2B;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==================================================
                VARIÁVEIS
================================================== */

:root{

    --white:#FFFFFF;

    --background:#F7F5F2;

    --black:#1F1F1F;

    --gray:#666666;

    --gold:#B88A5A;

    --gold-dark:#8C6845;

    --gold-light:#E9D7C3;

    --border:#E6E2DD;

    --shadow:0 20px 60px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

    --container:1200px;

}

/* ==================================================
                GERAL
================================================== */

.container{

    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding-left:60px;
    padding-right:60px;
    
}

section{

    padding:120px 0;

}

h1,h2,h3{

    font-family:"Playfair Display",serif;

}

h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;

}

.subtitulo{

    display:inline-block;

    margin-bottom:15px;

    color:var(--gold);

    letter-spacing:3px;

    font-size:.85rem;

    font-weight:600;

}

p{

    color:var(--gray);

    line-height:1.8;

}

section{

    scroll-margin-top:120px;

}

::selection{

    background:var(--gold);

    color:white;

}

.servico-card,
.depoimento-card,
.etapa{

    transition:.4s;

}

.servico-card:hover,
.depoimento-card:hover,
.etapa:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

/* ==================================================
                HEADER
================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);

    transition:

        background .35s ease,

        box-shadow .35s ease,

        height .35s ease;

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

    gap:40px;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    display:block;

    width:180px;

    height:auto;

}

.menu ul{

    display:flex;

    align-items:center;

    gap:38px;

}

.menu a{

    position:relative;

    color:var(--black);

    font-weight:500;

    transition:color .3s ease;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:width .3s ease;

}

.menu a:hover::after{

    width:100%;

}

.menu a:hover{

    color:var(--gold);

}

.btn-header{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    background:var(--gold);

    color:#FFF;

    border-radius:50px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(184,138,90,.25);

    transition:

        transform .3s ease,

        background .3s ease,

        box-shadow .3s ease;

}

.btn-header:hover{

    background:var(--gold-dark);

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(184,138,90,.35);

}

/* ==================================================
                    HERO
================================================== */

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    padding:120px 0 80px;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1.05fr;

    align-items:center;

    gap:35px;

}


/* ==================================================
                CONTEÚDO
================================================== */

.hero-content{

    padding-left:20px;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    background:#EFE8E0;

    color:var(--gold-dark);

    border-radius:50px;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:28px;

}

.hero h1{

    font-size:clamp(3rem,4.5vw,4.3rem);

    line-height:1.08;

    letter-spacing:-2px;

    color:var(--black);

    max-width:650px;

    margin-bottom:25px;

}

.hero p{

    max-width:560px;

    font-size:1.1rem;

    line-height:1.8;

    color:var(--gray);

    margin-bottom:40px;

}


/* ==================================================
                    BOTÕES
================================================== */

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}


/* ==================================================
                LADO DIREITO
================================================== */

.hero-side{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:28px;

}


/* ==================================================
                    IMAGEM
================================================== */

.hero-image{

    width:100%;

    display:flex;

    justify-content:center;

}

.hero-image img{

    display:block;

    width:100%;

    max-width:760px;

    border-radius:28px;

    box-shadow:0 30px 70px rgba(0,0,0,.14);

}


/* ==================================================
                INFORMAÇÕES
================================================== */

.hero-info{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:30px;

}

.hero-item{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.hero-item strong{

    font-size:1.5rem;

    color:var(--gold);

}

.hero-item span{

    color:var(--gray);

    font-size:.95rem;

    white-space:nowrap;

}


/* ==================================================
                RESPONSIVIDADE
================================================== */

@media(max-width:991px){

    .hero{

        min-height:auto;

        padding:140px 0 80px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:60px;

    }

    .hero-content{

        padding-left:0;

        text-align:center;

    }

    .hero h1{

        max-width:100%;

        margin-left:auto;

        margin-right:auto;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-side{

        width:100%;

    }

    .hero-info{

        justify-content:center;

        gap:35px;

    }

}

@media(max-width:600px){

    .hero-info{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:20px;

    }

    .hero-item span{

        white-space:normal;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-buttons a{

        width:100%;

        max-width:300px;

    }

}

/* ---------------- BOTÃO PRINCIPAL ---------------- */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    padding:18px 34px;

    background:var(--gold);

    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;

    box-shadow:0 12px 30px rgba(184,138,90,.30);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:var(--gold-dark);

    box-shadow:0 18px 45px rgba(184,138,90,.40);

}

/* ---------------- BOTÃO SECUNDÁRIO ---------------- */

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:220px;

    padding:18px 34px;

    border:2px solid var(--gold);

    border-radius:50px;

    color:var(--gold);

    background:transparent;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;

}

.btn-secondary:hover{

    background:var(--gold);

    color:#fff;

    transform:translateY(-4px);

}

/* ---------------- IMAGEM ---------------- */

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:700px;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/* ---------------- ESTATÍSTICAS ---------------- */

.hero-info{

    display:flex;

    gap:45px;

    flex-wrap:wrap;

    margin-top:10px;

}

.hero-item{

    display:flex;

    flex-direction:column;

}

.hero-item strong{

    font-size:1.5rem;

    color:var(--gold);

    margin-bottom:6px;

}

.hero-item span{

    color:var(--gray);

    font-size:.95rem;

}

/* ==================================================
                RESPONSIVO
================================================== */

@media (max-width:991px){

    .hero{

        min-height:auto;

        padding:150px 0 80px;

    }

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

        gap:60px;

    }

    .hero h1{

        max-width:100%;

    }

    .hero p{

        margin:0 auto 40px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-info{

        justify-content:center;

    }

}

/* ==================================================
                FOOTER
================================================== */

footer{

    background:#222;

    color:white;

    text-align:center;

    padding:40px 0;

}

/* ==================================================
                    SOBRE
================================================== */

.sobre{

    background:#ffffff;

}

.sobre-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.sobre-imagem img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.subtitulo{

    display:inline-block;

    margin-bottom:18px;

    color:var(--gold-dark);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

}

.sobre h2{

    font-size:2.8rem;

    margin-bottom:25px;

    line-height:1.2;

}

.sobre p{

    margin-bottom:30px;

}

.sobre-lista{

    margin-bottom:35px;

}

.sobre-lista li{

    margin-bottom:14px;

    font-size:1rem;

    color:var(--black);

}

@media(max-width:900px){

    .sobre-container{

        grid-template-columns:1fr;

    }

}

/* ==================================================
                    SERVIÇOS
================================================== */

.servicos{

    background:#F8F6F3;

}

.servicos h2{

    text-align:center;

    margin-bottom:60px;

}

.servicos .subtitulo{

    display:block;

    text-align:center;

}

.servicos-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card-servico{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.card-servico:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.10);

}

.icone{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#F4ECE4;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.35s;

}

.icone i{

    font-size:2rem;

    color:var(--gold);

}

.servico-card:hover .icone{

    background:var(--gold);

}

.servico-card:hover .icone i{

    color:white;

}
.card-servico h3{

    margin-bottom:18px;

    font-size:1.6rem;

}

.card-servico p{

    line-height:1.8;

}

/*==================================================
                    PORTFÓLIO
==================================================*/

.portfolio{

    background:#FFFFFF;

}

.portfolio h2{

    text-align:center;

    margin-bottom:15px;

}

.portfolio-texto{

    text-align:center;

    max-width:700px;

    margin:0 auto 60px;

}


/*==================================================
                GRID DO PORTFÓLIO
==================================================*/

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    grid-template-rows:repeat(2, 320px);

    gap:20px;

}


/*==================================================
                    CARDS
==================================================*/

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    height:320px;

}


/*==================================================
                    IMAGENS
==================================================*/

.portfolio-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .5s ease;

}

/*==================================================
                CARD GRANDE
==================================================*/

.portfolio-item.grande{

    grid-column:span 2;

    grid-row:span 2;

    height:660px;

}


/*==================================================
                    HOVER
==================================================*/

.portfolio-item:hover img{

    transform:scale(1.08);

}


/*==================================================
                    OVERLAY
==================================================*/

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.05),
        transparent
    );

    opacity:0;

    transition:opacity .35s ease;

}

.portfolio-item:hover .overlay{

    opacity:1;

}

.overlay h3{

    color:#FFFFFF;

    font-size:1.5rem;

    margin:0;

}


/*==================================================
                TÍTULO DO PROJETO
==================================================*/

.overlay h3{

    color:#FFFFFF;

    font-size:1.5rem;

    margin:0;

}


/*==================================================
                RESPONSIVIDADE
==================================================*/

@media(max-width:900px){

    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .portfolio-item.grande{

        grid-column:auto;

        height:320px;

    }

}


@media(max-width:600px){

    .portfolio-grid{

        gap:15px;

    }

    .portfolio-item{

        height:280px;

    }

    .portfolio-item.grande{

        height:280px;

    }

    .overlay{

        opacity:1;

        padding:20px;

    }

    .overlay h3{

        font-size:1.3rem;

    }

}

/* Ajuste específico da imagem do Closet */

.portfolio-item img[alt="Closet"]{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

}

/*==================================================
                PROCESSO
==================================================*/

.processo{

    background:#F8F6F3;

}

.processo h2{

    text-align:center;

    margin-bottom:15px;

}

.processo-texto{

    max-width:700px;

    margin:0 auto 70px;

    text-align:center;

}

.processo-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.etapa{

    background:#FFFFFF;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.etapa:hover{

    transform:translateY(-10px);

}

.numero{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--gold);

    color:#FFF;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:1.3rem;

}

.etapa h3{

    margin-bottom:15px;

    font-size:1.5rem;

}

@media(max-width:900px){

    .processo-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .processo-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
                    CONTATO
==================================================*/

.contato{

    background:#FFFFFF;

}

.contato-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:flex-start;

}

.contato h2{

    margin:15px 0 25px;

}

.contato-info p{

    margin-bottom:20px;

}

.info-item{

    margin-bottom:25px;

}

.info-item strong{

    display:block;

    margin-bottom:8px;

    color:var(--gold-dark);

}

.contato-form{

    background:#F8F6F3;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.contato-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contato-form input,
.contato-form textarea{

    width:100%;

    padding:18px;

    border:1px solid #DDD;

    border-radius:12px;

    font-size:1rem;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.3s;

}

.contato-form input:focus,
.contato-form textarea:focus{

    border-color:var(--gold);

}

.contato-form textarea{

    resize:none;

}

.contato-form button{

    border:none;

    cursor:pointer;

}

@media(max-width:900px){

    .contato-container{

        grid-template-columns:1fr;

    }

}

/*==================================================
                DEPOIMENTOS
==================================================*/

.depoimentos{

    background:#F8F6F3;

}

.depoimentos h2{

    text-align:center;

    margin-bottom:60px;

}

.depoimentos-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.depoimento-card{

    background:#FFFFFF;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

}

.depoimento-card:hover{

    transform:translateY(-8px);

}

.depoimento-card p{

    font-style:italic;

    margin-bottom:30px;

}

.cliente h4{

    margin-bottom:5px;

    color:var(--black);

}

.cliente span{

    color:var(--gold);

    font-size:.9rem;

}

@media(max-width:900px){

    .depoimentos-grid{

        grid-template-columns:1fr;

    }

}

.estrelas{

    color:#D4AF37;

    font-size:1.2rem;

    margin-bottom:15px;

}

/*==================================================
                    FOOTER
==================================================*/

.footer{

    background:#222;

    color:#FFF;

    padding-top:80px;

}

.footer-top{

    text-align:center;

    margin-bottom:60px;

}

.footer-logo{

    width:170px;

    margin:0 auto 25px;

}

.footer-descricao{

    max-width:650px;

    margin:auto;

    color:#CCCCCC;

    line-height:1.8;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    padding-bottom:60px;

}

.footer-col h3{

    margin-bottom:20px;

    font-size:1.3rem;

    color:#FFFFFF;

}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-col a{

    color:#CCCCCC;

    transition:.3s;

}

.footer-col a:hover{

    color:var(--gold);

}

.footer-col p{

    margin-bottom:15px;

    color:#CCCCCC;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px 0;

}

.footer-bottom p{

    color:#AAAAAA;

}

@media(max-width:900px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

}

/*=========================================
            MENU MOBILE
=========================================*/

.menu-toggle{

    display:none;

    flex-direction:column;

    justify-content:space-between;

    width:32px;

    height:24px;

    cursor:pointer;

    background:none;

    border:none;

}

.menu-toggle span{

    width:100%;

    height:3px;

    background:var(--black);

    border-radius:10px;

}

@media(max-width:900px){

    .menu{

        display:none;

    }

    .menu-toggle{

        display:flex;

    }

    .btn-header{

        display:none;

    }

}

/*=========================================
            WHATSAPP
=========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:2rem;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*=========================================
        MENU MOBILE
=========================================*/

@media(max-width:900px){

    .header .container{

        position:relative;

    }

    .menu{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:#FFFFFF;

        padding:30px;

        border-radius:0 0 18px 18px;

        display:none;

        box-shadow:0 20px 40px rgba(0,0,0,.08);

    }

    .menu.ativo{

        display:block;

    }

    .menu ul{

        flex-direction:column;

        align-items:center;

        gap:25px;

    }

}

.header{

    transition:.35s;
}

.header-scroll{

    background:#FFFFFF;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* ==================================================
            STATUS DO FORMULÁRIO
================================================== */

.form-status{

    margin-top:20px;

    font-size:.95rem;

    font-weight:500;

    line-height:1.5;

    min-height:24px;

}

.form-status.success{

    color:#2e7d32;

}

.form-status.error{

    color:#c62828;

}

#btn-enviar:disabled{

    opacity:.7;

    cursor:not-allowed;

    transform:none;

}

/* ==================================================
                    LIGHTBOX
================================================== */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.88);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;

}


/* ==================================================
                LIGHTBOX ATIVO
================================================== */

.lightbox.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* ==================================================
                IMAGEM AMPLIADA
================================================== */

.lightbox img {

    display: block;

    max-width: 85vw;

    max-height: 82vh;

    width: auto;

    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .5);

    filter: none;

}


/* ==================================================
                    BOTÃO FECHAR
================================================== */

.lightbox-close {

    position: fixed;

    top: 25px;

    right: 30px;

    z-index: 100000;

    width: 48px;

    height: 48px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    color: #FFFFFF;

    font-size: 32px;

    font-family: Arial, sans-serif;

    font-weight: 300;

    line-height: 48px;

    text-align: center;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;

}


.lightbox-close:hover {

    background: rgba(255, 255, 255, .3);

    transform: rotate(90deg);

}


/* ==================================================
                    MOBILE
================================================== */

@media (max-width: 768px) {

    .lightbox {

        padding: 20px;

    }

    .lightbox img {

        max-width: 94vw;

        max-height: 80vh;

        border-radius: 6px;

    }

    .lightbox-close {

        top: 15px;

        right: 15px;

        width: 42px;

        height: 42px;

        line-height: 42px;

        font-size: 28px;

    }

}

    .portfolio-item img {
        cursor: pointer;
    }

    /* ==================================================
        NOMES DOS PROJETOS
================================================== */

.portfolio-item {
    position: relative;
}


/* Imagem */

.portfolio-item img {
    position: relative;
    z-index: 1;
}


/* Overlay com o nome */

.portfolio-item .overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    padding: 25px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.05),
        transparent
    );

    opacity: 0;

    visibility: hidden;

    transition: opacity .3s ease;

    pointer-events: none;
}


/* Mostrar o nome */

.portfolio-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}


/* Texto */

.portfolio-item .overlay h3 {
    margin: 0;

    color: #FFFFFF;

    font-size: 1.5rem;

    font-weight: 600;
}

/* ==================================================
        PORTFÓLIO - MOBILE DEFINITIVO
================================================== */

@media screen and (max-width: 900px) {

    .portfolio-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .portfolio-item,
    .portfolio-item.grande {
        display: block !important;

        width: 100% !important;

        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        grid-column: auto !important;
        grid-row: auto !important;

        overflow: hidden !important;
    }

    .portfolio-item img,
    .portfolio-item.grande img {
        display: block !important;

        width: 100% !important;

        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;

        margin: 0 !important;
        padding: 0 !important;

        object-fit: cover !important;
    }

}