/* assets/css/style.css */

:root {
    --preto: #050505;
    --preto-2: #0b0b0b;
    --preto-3: #111111;
    --dourado: #b88424;
    --dourado-claro: #d6a03a;
    --branco: #ffffff;
    --texto: #d8d8d8;
    --cinza: #9b9b9b;
    --borda: rgba(255,255,255,.09);
    --sombra: 0 30px 80px rgba(0,0,0,.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--preto);
    color: var(--branco);
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* HEADER */

.header {
    width: 100%;
    height: 98px;
    background: #050505;
    border-bottom: 1px solid var(--borda);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    width: min(1280px, 92%);
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    width: 132px;
    height: 62px;
    object-fit: contain;
    background: #101010;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 38px;
}

.header-menu a {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #d0d0d0;
    transition: .3s;
}

.header-menu a:hover,
.header-menu a.active {
    color: var(--dourado-claro);
}

.header-menu .orcamento {
    border: 1px solid var(--dourado);
    color: var(--dourado-claro);
    padding: 17px 31px;
}

.header-menu .orcamento:hover {
    background: var(--dourado);
    color: #fff;
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
}

/* HERO */

.hero {
    min-height: 100vh;
    padding-top: 98px;
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.88)),
        linear-gradient(to right, rgba(0,0,0,.62), rgba(0,0,0,.25), rgba(0,0,0,.78)),
        url("../img/hero-marcenaria.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(184,132,36,.20), transparent 42%),
        rgba(0,0,0,.12);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(980px, 92%);
    margin-top: 40px;
}

.hero-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 45px;
}

.hero-line span {
    width: 68px;
    height: 1px;
    background: var(--dourado);
}

.hero-line p {
    color: var(--dourado);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 6px;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(56px, 7vw, 105px);
    font-weight: 400;
    line-height: .94;
    color: #fff;
    text-shadow: 0 18px 45px rgba(0,0,0,.65);
}

.hero h1 em {
    color: var(--dourado);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    max-width: 760px;
    margin: 34px auto 0;
    color: #eeeeee;
    font-size: 18px;
    line-height: 1.65;
    text-shadow: 0 4px 18px rgba(0,0,0,.8);
}

.hero-buttons {
    margin-top: 52px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.btn-gold,
.btn-outline {
    min-width: 205px;
    padding: 20px 32px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: .3s;
}

.btn-gold {
    background: var(--dourado);
    color: #fff;
}

.btn-gold:hover {
    background: var(--dourado-claro);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--dourado);
    color: var(--dourado-claro);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    z-index: 3;
    text-align: center;
    color: #aaa;
}

.hero-scroll span {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    margin-bottom: 13px;
}

.hero-scroll i {
    font-size: 18px;
}

/* SEÇÕES */

.section {
    padding: 110px 0;
}

.section-title {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-title.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title span,
.sobre-texto span,
.cta-box span {
    display: inline-block;
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.section-title h2,
.sobre-texto h2,
.cta-box h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(35px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-title p,
.sobre-texto p,
.cta-box p {
    color: var(--texto);
    font-size: 17px;
    line-height: 1.75;
}

/* SERVIÇOS */

.servicos {
    background: var(--preto);
}

.cards-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.servico-card {
    background: linear-gradient(180deg, #141414, #0b0b0b);
    border: 1px solid var(--borda);
    padding: 38px;
    min-height: 270px;
    transition: .3s;
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184,132,36,.65);
    box-shadow: var(--sombra);
}

.servico-card i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: rgba(184,132,36,.13);
    color: var(--dourado-claro);
    font-size: 30px;
    margin-bottom: 26px;
}

.servico-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 400;
    margin-bottom: 16px;
}

.servico-card p {
    color: var(--texto);
    line-height: 1.7;
}

/* PROJETOS */

.projetos {
    background: #0b0b0b;
}

.grid-projetos {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-auto-rows: 300px;
    gap: 22px;
}

.projeto-card {
    position: relative;
    overflow: hidden;
    background: #111;
}

.projeto-card.grande {
    grid-row: span 2;
}

.projeto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .55s;
}

.projeto-card:hover img {
    transform: scale(1.08);
}

.projeto-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
}

.projeto-info {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.projeto-info span {
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.projeto-info h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    margin-top: 8px;
}

/* SOBRE */

.sobre {
    background: #f4eee5;
    color: #141414;
}

.sobre-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 70px;
    align-items: center;
}

.sobre-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.sobre-texto span {
    color: var(--dourado);
}

.sobre-texto p {
    color: #555;
    margin-bottom: 18px;
}

.sobre-lista {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.sobre-lista div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 18px 20px;
    color: #222;
    font-weight: 700;
}

.sobre-lista i {
    color: var(--dourado);
    font-size: 22px;
}

/* DIFERENCIAIS */

.diferenciais {
    background:
        radial-gradient(circle at top left, rgba(184,132,36,.18), transparent 34%),
        var(--preto);
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.diferencial-card {
    background: rgba(255,255,255,.035);
    border: 1px solid var(--borda);
    padding: 34px;
    min-height: 270px;
    transition: .3s;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184,132,36,.6);
}

.diferencial-card strong {
    display: block;
    color: var(--dourado-claro);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 28px;
}

.diferencial-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.diferencial-card p {
    color: var(--texto);
    line-height: 1.7;
}

/* CTA FINAL */

.cta-final {
    background: #f4eee5;
    padding: 90px 0;
    color: #111;
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(5,5,5,.94), rgba(18,18,18,.90)),
        url("../img/cta.jpg") center/cover no-repeat;
    color: #fff;
    padding: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-box p {
    color: #d9d9d9;
    max-width: 650px;
}

.cta-box .btn-gold {
    white-space: nowrap;
}

/* FOOTER */

.footer {
    background: #050505;
    border-top: 1px solid var(--borda);
    padding-top: 60px;
}

.footer-container {
    width: min(1180px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 190px;
    margin-bottom: 20px;
}

.footer p {
    color: var(--texto);
    line-height: 1.7;
}

.footer h3 {
    color: var(--dourado-claro);
    margin-bottom: 18px;
}

.footer-copy {
    text-align: center;
    color: #777;
    padding: 25px;
    margin-top: 45px;
    border-top: 1px solid var(--borda);
}

/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 29px;
    z-index: 999;
    box-shadow: 0 16px 45px rgba(0,0,0,.35);
}

/* RESPONSIVO */

@media (max-width: 1000px) {
    .menu-mobile {
        display: block;
    }

    .header-menu {
        position: absolute;
        top: 98px;
        left: 0;
        width: 100%;
        background: #050505;
        display: none;
        flex-direction: column;
        padding: 30px;
        border-top: 1px solid var(--borda);
    }

    .header-menu.active {
        display: flex;
    }

    .cards-servicos,
    .grid-diferenciais {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-projetos {
        grid-template-columns: 1fr;
        grid-auto-rows: 330px;
    }

    .projeto-card.grande {
        grid-row: span 1;
    }

    .sobre-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .header {
        height: 82px;
    }

    .header-logo img {
        width: 112px;
        height: 52px;
    }

    .header-menu {
        top: 82px;
    }

    .hero {
        padding-top: 82px;
        min-height: 100vh;
    }

    .hero-line {
        margin-bottom: 30px;
        gap: 12px;
    }

    .hero-line span {
        width: 34px;
    }

    .hero-line p {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        max-width: 330px;
    }

    .section {
        padding: 72px 0;
    }

    .cards-servicos,
    .grid-diferenciais {
        grid-template-columns: 1fr;
    }

    .servico-card,
    .diferencial-card {
        padding: 28px;
    }

    .grid-projetos {
        grid-auto-rows: 280px;
    }

    .sobre-img img {
        height: 380px;
    }

    .cta-box {
        padding: 38px 26px;
    }

    .footer-logo {
        width: 160px;
    }
}
.page-hero {
    min-height: 460px;
    padding-top: 130px;
    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.88)),
        url("../img/hero-marcenaria.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero .container {
    max-width: 850px;
}

.page-hero span,
.section-mini {
    display: inline-block;
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 22px;
}

.page-hero p {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.7;
}

.categoria-hero {
    background-size: cover;
    background-position: center;
}

.projetos-page {
    background: #0b0b0b;
}

.categorias-filtro {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 42px;
}

.categorias-filtro a {
    border: 1px solid rgba(255,255,255,.14);
    color: #ddd;
    padding: 13px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s;
}

.categorias-filtro a:hover,
.categorias-filtro a.active {
    background: var(--dourado);
    border-color: var(--dourado);
    color: #fff;
}

.empty-msg {
    color: #ccc;
    font-size: 18px;
}

.projeto-detalhe-hero {
    min-height: 680px;
    position: relative;
    padding-top: 98px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.projeto-detalhe-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projeto-detalhe-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.35)),
        linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.12));
}

.projeto-detalhe-content {
    position: relative;
    z-index: 2;
    padding-bottom: 90px;
}

.projeto-detalhe-content span {
    display: inline-block;
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.projeto-detalhe-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 400;
    max-width: 900px;
    line-height: 1;
}

.projeto-conteudo {
    background: #f4eee5;
    color: #151515;
}

.projeto-conteudo-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 70px;
    align-items: start;
}

.projeto-conteudo h2 {
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    margin-bottom: 25px;
}

.projeto-conteudo p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

.projeto-sidebar {
    background: #fff;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(0,0,0,.12);
}

.projeto-sidebar h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.projeto-sidebar p {
    font-size: 16px;
    margin-bottom: 24px;
}

.projeto-sidebar .btn-gold,
.btn-outline-dark {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
    text-align: center;
}

.btn-outline-dark {
    border: 1px solid #151515;
    color: #151515;
    padding: 18px 26px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: .3s;
}

.btn-outline-dark:hover {
    background: #151515;
    color: #fff;
}

.projetos-relacionados {
    background: #090909;
}

.relacionados-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .projeto-conteudo-grid {
        grid-template-columns: 1fr;
    }

    .relacionados-grid {
        grid-template-columns: 1fr;
    }
}
.galeria-publica {
    background: #090909;
}

.galeria-publica-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.galeria-publica-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #111;
}

.galeria-publica-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    height: 578px;
}

.galeria-publica-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.galeria-publica-item:hover img {
    transform: scale(1.08);
    opacity: .82;
}

@media (max-width: 900px) {
    .galeria-publica-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .galeria-publica-item:nth-child(1) {
        grid-column: span 2;
        height: 360px;
    }
}

@media (max-width: 560px) {
    .galeria-publica-grid {
        grid-template-columns: 1fr;
    }

    .galeria-publica-item,
    .galeria-publica-item:nth-child(1) {
        grid-column: span 1;
        height: 280px;
    }
}
.galeria-publica-item {
    border: none;
    cursor: pointer;
    padding: 0;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 30px 90px rgba(0,0,0,.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #b88424;
}

.lightbox-close {
    top: 24px;
    right: 28px;
    width: 52px;
    height: 52px;
    font-size: 38px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    font-size: 46px;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

@media (max-width: 600px) {
    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 46px;
        height: 46px;
        font-size: 36px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}
.categoria-banner {
    min-height: 560px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.categoria-banner-content {
    max-width: 900px;
}

.categoria-banner span {
    display: inline-block;
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.categoria-banner h1 {
    font-family: Georgia, serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400;
    line-height: .95;
    margin-bottom: 26px;
}

.categoria-banner p {
    max-width: 720px;
    color: #e7e7e7;
    font-size: 19px;
    line-height: 1.75;
}

@media (max-width: 600px) {
    .categoria-banner {
        min-height: 460px;
        padding-top: 100px;
        text-align: center;
    }

    .categoria-banner h1 {
        font-size: 46px;
    }

    .categoria-banner p {
        font-size: 16px;
    }
}
.institucional-hero {
    min-height: 560px;
    padding-top: 130px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.42), rgba(0,0,0,.92)),
        linear-gradient(to right, rgba(0,0,0,.75), rgba(0,0,0,.20)),
        url("../img/hero-marcenaria.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.institucional-hero .container {
    max-width: 900px;
}

.institucional-hero span,
.inst-text span {
    display: inline-block;
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 22px;
}

.institucional-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(46px, 7vw, 92px);
    font-weight: 400;
    line-height: .95;
    margin-bottom: 28px;
}

.institucional-hero p {
    max-width: 760px;
    color: #e5e5e5;
    font-size: 19px;
    line-height: 1.75;
}

.inst-sobre {
    background: #f4eee5;
    color: #151515;
}

.inst-grid {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 70px;
    align-items: center;
}

.inst-img img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.inst-text h2 {
    font-family: Georgia, serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 24px;
}

.inst-text p {
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.inst-text .btn-gold {
    margin-top: 18px;
    display: inline-flex;
}

.inst-valores {
    background: #080808;
}

.inst-valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.inst-valores-grid div {
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.09);
    padding: 34px;
    min-height: 280px;
    transition: .3s;
}

.inst-valores-grid div:hover {
    transform: translateY(-8px);
    border-color: rgba(184,132,36,.6);
}

.inst-valores-grid i {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    background: rgba(184,132,36,.13);
    color: var(--dourado-claro);
    font-size: 30px;
    margin-bottom: 26px;
}

.inst-valores-grid h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 14px;
}

.inst-valores-grid p {
    color: var(--texto);
    line-height: 1.7;
}

.inst-processo {
    background: #0d0d0d;
}

.processo-lista {
    display: grid;
    gap: 18px;
}

.processo-lista div {
    display: grid;
    grid-template-columns: 90px 260px 1fr;
    gap: 25px;
    align-items: center;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    padding: 26px;
}

.processo-lista strong {
    color: var(--dourado-claro);
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
}

.processo-lista h3 {
    font-size: 22px;
}

.processo-lista p {
    color: var(--texto);
    line-height: 1.7;
}

.inst-frase {
    padding: 110px 0;
    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)),
        url("../img/hero-marcenaria.jpg") center/cover fixed;
    text-align: center;
}

.inst-frase h2 {
    max-width: 1000px;
    margin: auto;
    font-family: Georgia, serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
}

.inst-cta {
    background: #f4eee5;
}

@media (max-width: 950px) {
    .inst-grid,
    .inst-valores-grid {
        grid-template-columns: 1fr;
    }

    .processo-lista div {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .institucional-hero {
        text-align: center;
        min-height: 480px;
        padding-top: 100px;
    }

    .institucional-hero h1 {
        font-size: 43px;
    }

    .inst-img img {
        height: 380px;
    }

    .inst-valores-grid div,
    .processo-lista div {
        padding: 28px;
    }
}
.calc-hero {
    min-height: 460px;
    padding-top: 130px;
    background:
        linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.90)),
        url("../img/hero-marcenaria.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
}

.calc-hero span {
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 5px;
}

.calc-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 400;
    margin: 20px 0;
}

.calc-hero p {
    color: #ddd;
    font-size: 18px;
}

.calc-section {
    background: #f4eee5;
    color: #151515;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 35px;
    align-items: start;
}

.calc-card,
.calc-resultado {
    background: #fff;
    padding: 38px;
    box-shadow: 0 24px 70px rgba(0,0,0,.12);
}

.calc-card h2,
.calc-resultado h2 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 25px;
}

.calc-card h3 {
    margin: 25px 0 15px;
}

.calc-card label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.calc-card input,
.calc-card select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    font-size: 15px;
}

.calc-extra {
    display: grid;
    grid-template-columns: 1fr 90px 110px;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.calc-extra span {
    font-weight: 700;
}

.calc-extra input {
    margin-bottom: 0;
}

.calc-resultado {
    position: sticky;
    top: 120px;
    background: #0b0b0b;
    color: #fff;
}

.calc-resultado > span {
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
}

.calc-resultado h2 {
    color: var(--dourado-claro);
    font-size: 56px;
    margin-top: 18px;
}

.calc-resumo {
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 22px 0;
    margin: 25px 0;
}

.calc-resumo p {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 14px;
    color: #ddd;
}

.calc-resultado small {
    display: block;
    margin-top: 22px;
    color: #aaa;
    line-height: 1.6;
}

@media (max-width: 850px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .calc-resultado {
        position: relative;
        top: 0;
    }
}

@media (max-width: 560px) {
    .calc-card,
    .calc-resultado {
        padding: 26px;
    }

    .calc-extra {
        grid-template-columns: 1fr;
    }

    .calc-resultado h2 {
        font-size: 42px;
    }
}
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:40px;
}

.btn-calc{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 32px;
    background:#111;
    color:#fff;
    border:1px solid #c99a2e;
    text-decoration:none;
    font-weight:700;
    letter-spacing:.5px;
    transition:.3s;
}

.btn-calc:hover{
    background:#c99a2e;
    color:#111;
    transform:translateY(-3px);
}

.btn-calc i{
    font-size:18px;
}
.calc-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.calc-subtitle {
    margin: 35px 0 22px;
}

.calc-subtitle span {
    color: var(--dourado-claro);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 4px;
}

.calc-subtitle h3 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
    margin-top: 8px;
}

.acessorios-grid {
    display: grid;
    gap: 16px;
}

.acessorio-card {
    display: grid;
    grid-template-columns: 58px 1fr 130px;
    gap: 16px;
    align-items: center;
    background: #faf7f1;
    border: 1px solid #eadfce;
    padding: 18px;
    transition: .3s;
}

.acessorio-card:hover {
    background: #fff;
    border-color: #c99a2e;
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.acessorio-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #111;
    color: var(--dourado-claro);
    font-size: 27px;
}

.acessorio-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.acessorio-info small {
    display: block;
    color: #777;
    line-height: 1.5;
    margin-bottom: 6px;
}

.acessorio-info span {
    color: #b88424;
    font-weight: 800;
    font-size: 14px;
}

.acessorio-qtd-box {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    border: 1px solid #ddd;
    background: #fff;
}

.acessorio-qtd-box button {
    border: none;
    background: #111;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.acessorio-qtd-box button:hover {
    background: var(--dourado);
}

.acessorio-qtd-box input {
    border: none;
    margin: 0;
    text-align: center;
    font-weight: 800;
    padding: 10px 6px;
}

.calc-whats {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

@media (max-width: 850px) {
    .calc-fields {
        grid-template-columns: 1fr;
    }

    .acessorio-card {
        grid-template-columns: 1fr;
    }

    .acessorio-icon {
        width: 54px;
        height: 54px;
    }
}
.calc-acessorios-resumo {
    margin: 24px 0;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

.calc-acessorios-resumo h3 {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--dourado-claro);
}

.calc-acessorios-resumo p {
    color: #aaa;
}

.calc-acessorio-linha {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.calc-acessorio-linha:last-child {
    border-bottom: none;
}

.calc-acessorio-linha span {
    color: #fff;
    font-weight: 700;
}

.calc-acessorio-linha small {
    color: #aaa;
}

.calc-acessorio-linha strong {
    color: var(--dourado-claro);
    font-size: 18px;
}
.acessorios-compactos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.acessorio-compacto {
    display: grid;
    grid-template-columns: 42px 1fr 92px;
    gap: 12px;
    align-items: center;
    background: #faf7f1;
    border: 1px solid #eadfce;
    padding: 12px;
}

.acc-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #111;
    color: var(--dourado-claro);
    font-size: 20px;
}

.acc-text strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.acc-text small {
    display: block;
    color: #8a6b3a;
    font-size: 12px;
    margin-top: 3px;
}

.acc-qtd {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    border: 1px solid #ddd;
    background: #fff;
}

.acc-qtd button {
    border: none;
    background: #111;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

.acc-qtd input {
    border: none;
    padding: 8px 4px;
    text-align: center;
    font-weight: 800;
    margin: 0;
}

.calc-whats.disabled {
    opacity: .45;
    pointer-events: none;
}

@media (max-width: 900px) {
    .acessorios-compactos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .acessorio-compacto {
        grid-template-columns: 38px 1fr;
    }

    .acc-qtd {
        grid-column: 1 / -1;
    }
}
.calc-fields.dois {
    grid-template-columns: repeat(2, 1fr);
}

.calc-bloco-titulo {
    margin-top: 28px;
    font-size: 32px !important;
}

.btn-calcular {
    width: 100%;
    justify-content: center;
    margin-top: 25px;
}

@media (max-width: 700px) {
    .calc-fields.dois {
        grid-template-columns: 1fr;
    }
}
.calc-actions {
    display: grid;
    gap: 12px;
}

.calc-actions button,
.calc-actions a {
    width: 100%;
    justify-content: center;
}
.calculadora-home{
    background:#f5efe6;
    padding:100px 0;
}

.calc-home-box{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
    margin-top:50px;
}

.calc-home-form{
    background:#fff;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.calc-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:15px;
}

.calc-home-form input,
.calc-home-form select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
}

.calc-home-result{
    background:#111;
    color:#fff;
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.calc-home-result span{
    color:#c99a2e;
    letter-spacing:3px;
    font-size:12px;
    font-weight:700;
}

.calc-home-result h3{
    font-size:48px;
    margin:15px 0;
    color:#c99a2e;
}

.calc-home-result p{
    color:#ccc;
    margin-bottom:25px;
}

@media(max-width:900px){

    .calc-home-box{
        grid-template-columns:1fr;
    }

    .calc-row{
        grid-template-columns:1fr;
    }
}