
:root {
    --cor-primaria: #c9a45c;
    --cor-acento: #7d6542;
    --cor-contraste: #f4eee4;
    --lux-bg: #0b0a08;
    --lux-bg-2: #12100d;
    --lux-panel: #191612;
    --lux-panel-2: #211d17;
    --lux-line: rgba(255,255,255,.12);
    --lux-text: #f7f1e8;
    --lux-muted: rgba(247,241,232,.68);
    --lux-soft: rgba(247,241,232,.08);
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: "Helvetica Neue", Arial, sans-serif;
    --container: 1180px;
    --header-h: 86px;
    --radius: 0;
    --shadow: 0 24px 70px rgba(0,0,0,.38);
    --ease: cubic-bezier(.22,1,.36,1);
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    background: var(--lux-bg);
}

body {
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--lux-text);
    background:
        radial-gradient(circle at 18% 12%, rgba(201,164,92,.12), transparent 24rem),
        linear-gradient(180deg, #0b0a08 0%, #11100d 45%, #0b0a08 100%);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
ul { list-style: none; }
button { font: inherit; }

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(56px, 7vw, 104px) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto clamp(34px, 5vw, 64px);
    text-align: center;
}

.section-heading-left {
    margin-left: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--cor-primaria);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: currentColor;
}

.section-title,
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--lux-text);
    max-width: 100%;
    overflow-wrap: anywhere;
}

.section-title {
    font-size: clamp(2rem, 4.2vw, 3.8rem);
}

.section-subtitle {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--lux-muted);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border: 1px solid transparent;
    color: var(--lux-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: normal;
    text-align: center;
}

.btn-primaria {
    background: var(--cor-primaria);
    color: #11100d;
    border-color: var(--cor-primaria);
}

.btn-primaria:hover {
    background: transparent;
    color: var(--cor-primaria);
}

.btn-outline {
    background: transparent;
    border-color: rgba(201,164,92,.55);
    color: var(--cor-primaria);
}

.btn-outline:hover {
    background: var(--cor-primaria);
    color: #11100d;
}

/* Header fixo com fundo transparente no hero e solido depois do scroll. */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background .32s ease, border-color .32s ease, backdrop-filter .32s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled,
body:not(.has-hero) .site-header {
    background: rgba(11,10,8,.92);
    border-bottom-color: var(--lux-line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 260px;
    color: var(--lux-text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: .04em;
}

.header-brand img {
    width: auto;
    max-width: min(220px, 48vw);
    max-height: 58px;
    object-fit: contain;
}

.nav-principal ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 34px);
}

.nav-principal a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: rgba(247,241,232,.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-principal a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 1px;
    background: var(--cor-primaria);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s var(--ease);
}

.nav-principal a:hover,
.nav-principal a.ativo { color: var(--cor-primaria); }
.nav-principal a:hover::after,
.nav-principal a.ativo::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.header-whatsapp,
.menu-toggle,
.nav-fechar {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--lux-line);
    background: rgba(255,255,255,.04);
    color: var(--lux-text);
    cursor: pointer;
}

.menu-toggle,
.nav-fechar { display: none; }

/* Hero: usa imagens cadastradas em imagens_capa. */
.hero {
    position: relative;
    min-height: min(100svh, 820px);
    overflow: hidden;
    background: #050504;
}

.hero-slider,
.hero-slide {
    min-height: min(100svh, 820px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.035);
    transition: opacity .9s ease, visibility .9s ease, transform 4.5s ease;
}

.hero-slide.ativo {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,4,.92) 0%, rgba(5,5,4,.54) 48%, rgba(5,5,4,.2) 100%),
        linear-gradient(0deg, rgba(5,5,4,.82) 0%, transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: calc(var(--header-h) + 44px) 0 clamp(74px, 10vw, 128px);
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 6vw, 5.4rem);
    line-height: 1.02;
}

.hero p {
    max-width: 560px;
    margin: 20px 0 28px;
    color: var(--lux-muted);
    font-size: clamp(.98rem, 1.25vw, 1.12rem);
}

.hero-controls {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-arrow,
.hero-dot {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.05);
    color: var(--lux-text);
    cursor: pointer;
}

.hero-arrow {
    width: 42px;
    height: 42px;
}

.hero-dots { display: flex; gap: 10px; }

.hero-dot {
    width: 34px;
    height: 3px;
    padding: 0;
}

.hero-dot.ativo { background: var(--cor-primaria); border-color: var(--cor-primaria); }

/* Cards de portfolio com recorte vertical para interiores premium. */
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
}

.projeto-card,
.artigo-card,
.servico-card,
.depoimento-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.projeto-card-figura {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--lux-panel);
}

.projeto-card-figura img,
.artigo-card-figura img,
.servico-card-figura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .7s ease;
}

.projeto-card-figura::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 55%);
    opacity: .86;
}

.card-link {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    color: var(--cor-primaria);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.projeto-card:hover img,
.artigo-card:hover img,
.servico-card:hover img {
    transform: scale(1.055);
    filter: saturate(1.05) contrast(1.03);
}

.projeto-card-caption,
.artigo-card-caption,
.servico-card-caption {
    padding: 16px 0 0;
}

.projeto-card-titulo,
.artigo-card-titulo,
.servico-card-titulo {
    font-size: clamp(1.18rem, 1.65vw, 1.55rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.projeto-card-titulo a,
.artigo-card-titulo a,
.servico-card-titulo a {
    display: block;
}

.projeto-card-titulo {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-projetos-home {
    background: linear-gradient(180deg, #0b0a08 0%, #14110e 100%);
}

/* Detectores/banners cadastraveis. */
.detector-section {
    padding: 0;
}

.detector-banner {
    position: relative;
    min-height: clamp(360px, 46vw, 620px);
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.detector-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5,5,4,.86), rgba(5,5,4,.34)),
        linear-gradient(0deg, rgba(5,5,4,.72), rgba(5,5,4,.18));
}

.detector-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding-block: clamp(54px, 8vw, 96px);
}

.detector-content h2 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.detector-content p {
    max-width: 560px;
    margin: 14px 0 24px;
    font-size: clamp(.94rem, 1.2vw, 1.08rem);
    line-height: 1.55;
}

/* Servicos com numeracao grande, inspirado em processo editorial de luxo. */
.section-servicos-home {
    background: var(--lux-bg-2);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--lux-line);
    border: 1px solid var(--lux-line);
}

.servico-card {
    padding: clamp(22px, 3vw, 38px);
    background: var(--lux-panel);
}

.servico-numero {
    display: block;
    margin-bottom: 22px;
    color: rgba(201,164,92,.32);
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: .8;
}

.servico-card-figura {
    display: block;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    margin-bottom: 24px;
}

.servico-card-subtitulo,
.depoimento-texto,
.artigo-card-data {
    color: var(--lux-muted);
}

.servico-card-subtitulo { margin-top: 12px; }

/* Depoimentos em painel claro-escuro para contraste dentro do tema. */
.section-depoimentos-home {
    background:
        linear-gradient(rgba(11,10,8,.86), rgba(11,10,8,.9)),
        radial-gradient(circle at 70% 20%, rgba(201,164,92,.16), transparent 24rem);
}

.depoimentos-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.depoimento-card {
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255,255,255,.055);
    border: 1px solid var(--lux-line);
}

.depoimento-texto p {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.58rem);
    line-height: 1.35;
}

.depoimento-autor-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.depoimento-autor-wrap img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(201,164,92,.45);
}

.depoimento-autor {
    color: var(--cor-primaria);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Artigos */
.section-artigos-home {
    background: #f7f3ed;
    color: #15120f;
}

.section-artigos-home .section-title,
.section-artigos-home .artigo-card-titulo,
.section-artigos-home .artigo-card-titulo a {
    color: #15120f;
}

.section-artigos-home .section-subtitle,
.section-artigos-home .artigo-card-data {
    color: rgba(21,18,15,.62);
}

.section-artigos-home .eyebrow {
    color: var(--cor-acento);
}

.section-artigos-home .btn-outline {
    color: var(--cor-acento);
    border-color: rgba(125,101,66,.42);
}

.section-artigos-home .btn-outline:hover {
    background: var(--cor-acento);
    color: #fff;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

.artigo-card-figura {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--lux-panel);
}

.section-artigos-home .artigo-card {
    background: #fff;
    border: 1px solid rgba(21,18,15,.08);
}

.section-artigos-home .artigo-card-caption {
    padding: 18px;
}

.section-artigos-home .artigo-card-titulo {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    font-weight: 700;
    line-height: 1.35;
}

.artigo-card-data {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Redes sociais reutilizaveis */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid var(--lux-line);
    background: rgba(255,255,255,.04);
    color: var(--lux-text);
    font-size: 12px;
}

.social-links a:hover {
    border-color: var(--cor-primaria);
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

.section-redes-home {
    background: #0b0a08;
    border-top: 1px solid var(--lux-line);
}

.section-redes-home .social-links {
    justify-content: center;
}

.section-redes-home .social-links a {
    min-width: 156px;
}

/* Paginas internas */
body:not(.has-hero) main,
body:not(.has-hero) .section:first-of-type {
    padding-top: calc(var(--header-h) + 64px);
}

.sobre-conteudo,
.projeto-descricao,
.conteudo-texto {
    max-width: 860px;
    color: var(--lux-muted);
    font-size: 1.05rem;
}

.sobre-conteudo p,
.projeto-descricao p,
.conteudo-texto p { margin-bottom: 1.1em; }

.contato-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 34px;
}

.contato-info {
    display: grid;
    gap: 14px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--lux-line);
    background: rgba(255,255,255,.04);
    color: var(--lux-muted);
}

.contato-item i { color: var(--cor-primaria); }

.artigo-single,
.artigo-conteudo {
    max-width: 920px;
}

.artigo-data {
    display: inline-block;
    margin: 18px 0 28px;
    color: var(--cor-primaria);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.artigo-capa {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: 0 0 34px;
    border: 1px solid var(--lux-line);
}

.artigo-conteudo {
    color: var(--lux-muted);
    margin-bottom: 34px;
}

.artigo-conteudo p { margin-bottom: 1.1em; }

.servico-detalhe img,
.conteudo-pagina > img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    margin: 30px 0;
    border: 1px solid var(--lux-line);
}

.servico-texto,
.conteudo-descricao,
.conteudo-rodape {
    max-width: 860px;
    color: var(--lux-muted);
    margin-bottom: 30px;
}

.servico-texto p,
.conteudo-descricao p,
.conteudo-rodape p { margin-bottom: 1.1em; }

.conteudo-logo img {
    max-width: 220px;
    max-height: 86px;
    object-fit: contain;
    margin-bottom: 28px;
}

.video-embed,
.projeto-galeria,
.pano-grid {
    margin-top: 28px;
}

.panorama-section {
    padding: var(--header-h) 0 0;
}

#panorama-container {
    width: 100%;
    height: min(78svh, 760px);
    min-height: 420px;
    background: #050504;
    cursor: grab;
}

#panorama-container:active {
    cursor: grabbing;
}

.video-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.galeria-grid a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--lux-line);
    background: var(--lux-panel);
}

.galeria-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease);
}

.galeria-grid a:hover img { transform: scale(1.06); }

.projeto-voltar {
    padding-bottom: 56px;
}

.model06-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 72px 22px;
    background: rgba(0,0,0,.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
}

.model06-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.model06-lightbox img {
    max-width: min(100%, 1280px);
    max-height: 82svh;
    object-fit: contain;
    box-shadow: var(--shadow);
}

.model06-lightbox button {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.07);
    color: #fff;
    cursor: pointer;
}

.model06-lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    font-size: 30px;
}

.model06-lightbox-prev,
.model06-lightbox-next {
    top: 50%;
    width: 48px;
    height: 64px;
    transform: translateY(-50%);
    font-size: 30px;
}

.model06-lightbox-prev { left: 18px; }
.model06-lightbox-next { right: 18px; }

body.lightbox-open { overflow: hidden; }

/* Rodape */
.site-footer {
    background: #070705;
    border-top: 1px solid var(--lux-line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: clamp(28px, 5vw, 72px);
    padding: clamp(58px, 7vw, 92px) 0;
}

.footer-brand img {
    max-width: 220px;
    max-height: 72px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand strong {
    display: block;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-size: 2rem;
}

.footer-brand p,
.footer-contact p {
    color: var(--lux-muted);
}

.footer-contact h3,
.footer-social h3 {
    margin-bottom: 18px;
    color: var(--cor-primaria);
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-contact p {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact i { color: var(--cor-primaria); padding-top: 5px; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--lux-line);
    color: rgba(247,241,232,.54);
    font-size: 13px;
}

/* Animacao progressiva ativada pelo JS. */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .section-title {
        font-size: clamp(1.9rem, 5vw, 3rem);
    }

    .projetos-grid,
    .servicos-grid,
    .artigos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .depoimentos-layout,
    .footer-grid,
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .header-brand img {
        max-width: min(180px, 42vw);
    }
}

@media (max-width: 860px) {
    :root { --header-h: 74px; }

    .menu-toggle,
    .nav-fechar { display: inline-grid; }

    .nav-principal {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(88vw, 380px);
        padding: 22px;
        background: rgba(11,10,8,.98);
        border-left: 1px solid var(--lux-line);
        transform: translateX(100%);
        transition: transform .36s var(--ease);
        z-index: 1100;
    }

    .nav-principal.open { transform: translateX(0); }

    .nav-principal ul {
        display: grid;
        gap: 4px;
        margin-top: 48px;
    }

    .nav-principal a {
        padding: 15px 0;
        font-size: 12px;
    }

    .nav-fechar {
        position: absolute;
        top: 18px;
        right: 18px;
    }

    body.menu-open { overflow: hidden; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 24px, var(--container)); }
    .section { padding: 52px 0; }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .16em;
        margin-bottom: 10px;
    }

    .eyebrow::before {
        width: 22px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: clamp(1.85rem, 10vw, 2.65rem);
        line-height: 1.12;
    }

    .section-subtitle {
        font-size: .96rem;
        line-height: 1.55;
    }

    .hero {
        min-height: 620px;
    }

    .hero-slider,
    .hero-slide {
        min-height: 620px;
    }

    .hero-slide {
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(5,5,4,.88), rgba(5,5,4,.52)),
            linear-gradient(0deg, rgba(5,5,4,.86), rgba(5,5,4,.12));
    }

    .hero-content {
        padding-top: calc(var(--header-h) + 56px);
        padding-bottom: 86px;
    }

    .hero h1 {
        font-size: clamp(2rem, 12vw, 3.25rem);
        line-height: 1.04;
    }

    .hero p {
        max-width: 92%;
        font-size: .98rem;
        line-height: 1.55;
    }

    .hero-controls { width: calc(100% - 24px); justify-content: space-between; }
    .hero-dots { flex: 1; justify-content: center; }

    .projetos-grid,
    .servicos-grid,
    .artigos-grid,
    .depoimentos-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .projeto-card-figura {
        aspect-ratio: 4 / 4.7;
    }

    .projeto-card-titulo,
    .artigo-card-titulo,
    .servico-card-titulo {
        font-size: clamp(1.08rem, 6vw, 1.42rem);
        line-height: 1.18;
    }

    .section-artigos-home .artigo-card-titulo {
        font-size: 1rem;
        line-height: 1.32;
    }

    .card-link {
        left: 16px;
        bottom: 16px;
        font-size: 9px;
        letter-spacing: .14em;
    }

    .detector-banner {
        min-height: 330px;
    }

    .detector-content {
        padding-block: 48px;
    }

    .detector-content h2 {
        font-size: clamp(1.85rem, 11vw, 3rem);
    }

    .detector-content p {
        max-width: 92%;
        font-size: .94rem;
    }

    .servico-card {
        padding: 22px;
    }

    .servico-numero {
        font-size: 3.2rem;
        margin-bottom: 18px;
    }

    .section-redes-home .social-links a {
        min-width: 44px;
    }

    .social-links a span { display: none; }
}
