* {
    box-sizing: border-box;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    padding: 12px 20px;
    background-color: var(--paper);
    color: var(--ink);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-family: var(--font-body);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    overflow-x: hidden;
}

:root {
    --ink: #14120f;
    --paper: #f6f1e7;
    --paper2: #ece3d1;
    --line: rgba(20, 18, 15, 0.14);
    --muted: rgba(20, 18, 15, 0.62);
    --accent: #c9622a;
    --accent-strong: #9c4a1e;
    --on-accent: #14120f;

    --font-display: "Space Grotesk", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;

    --border-radius-round: 10000px;
    --border-radius-big: 28px;
    --border-radius-medium: 14px;
    --border-radius-small: 6px;

    /* largura máxima do conteúdo (o "container"): em telas ultrawide o
       padding lateral cresce para manter o conteúdo dentro dessa largura
       em vez de esticar a linha inteira da tela */
    --content-max: 1440px;
}

:root[data-theme="dark"] {
    --ink: #f3eee3;
    --paper: #0b0a09;
    --paper2: #17140f;
    --line: rgba(243, 238, 227, 0.14);
    --muted: rgba(243, 238, 227, 0.62);
    --accent: #e2794a;
    --accent-strong: #f2986a;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    background-color: var(--paper);
    color: var(--ink);
    margin: 0;
    padding: 0;
    transition: background-color 0.4s ease, color 0.4s ease;
}

main {
    width: 100%;
    padding-top: 88px;
}

section {
    padding: 120px max(80px, calc((100% - var(--content-max)) / 2));
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    section {
        padding: 80px 32px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
ul,
ol,
blockquote {
    padding: 0;
    margin: 0;
    border: 0;
    color: unset;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 108%;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 160%;
}

a {
    text-decoration: none;
    color: var(--accent);
}

a:hover {
    color: var(--accent-strong);
}




/* ============ HEADER ============ */

.site-header {
    width: 100%;
    height: 88px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(48px, calc((100% - var(--content-max)) / 2));
    background-color: var(--paper);
    background-color: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.brand-logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

.brand-word span {
    color: var(--accent-strong);
}

.brand:hover {
    color: var(--ink);
}

.main-nav {
    display: flex;
    gap: 36px;
}

.main-nav a {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.main-nav a:hover {
    color: var(--accent);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
}

.header-contact .whatsapp-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-contact:hover {
    color: var(--accent);
}

.theme-toggle {
    position: relative;
    width: 56px;
    height: 28px;
    border-radius: var(--border-radius-round);
    border: 1px solid var(--line);
    background: transparent;
    padding: 0 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.theme-icon {
    position: relative;
    z-index: 2;
    width: 14px;
    height: 14px;
    color: var(--on-accent);
    transition: color 0.35s ease;
    pointer-events: none;
}

.icon-moon {
    color: var(--muted);
}

:root[data-theme="dark"] .icon-sun {
    color: var(--muted);
}

:root[data-theme="dark"] .icon-moon {
    color: var(--on-accent);
}

.theme-toggle-dot {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent);
    z-index: 1;
    transition: transform 0.35s ease;
}

:root[data-theme="dark"] .theme-toggle-dot {
    transform: translateX(28px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background-color: var(--ink);
}

@media (max-width: 900px) {
    .site-header {
        padding: 0 24px;
    }

    .header-contact {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--paper);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .main-nav.is-open {
        max-height: 320px;
    }

    .main-nav a {
        padding: 18px 24px;
        border-top: 1px solid var(--line);
    }

    .nav-toggle {
        display: flex;
    }
}




/* ============ CURSOR ============ */

.cursor {
    width: 26px;
    height: 26px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    mix-blend-mode: difference;
}

@media (max-width: 992px) {
    .cursor {
        display: none;
    }
}




/* ============ SPIN (elemento decorativo do hero) ============ */

.spin {
    animation: spin 22s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin-reverse {
    animation: spin-reverse 9s linear infinite;
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}




/* ============ BUTTONS ============ */

.button {
    width: auto;
    min-width: 150px;
    text-align: center;
    background-color: var(--accent);
    color: var(--on-accent);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    padding: 16px 26px;
    border: 1px solid var(--accent);
    border-radius: var(--border-radius-round);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.button:hover {
    background-color: var(--accent-strong);
    border-color: var(--accent-strong);
    color: var(--on-accent);
}

.button-hollow {
    background-color: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.button-hollow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: transparent;
}

.button-big {
    min-width: 220px;
    padding: 18px 30px;
}




/* ============ HERO ============ */

.hero {
    width: 100%;
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 56px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--border-radius-big);
    filter: grayscale(0.35) sepia(0.25) saturate(1.3) hue-rotate(-6deg);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-photo {
        aspect-ratio: 16 / 10;
    }
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eyebrow-dash {
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.6rem, 4.4vw, 4.4rem);
}

.splitchar .word {
    display: inline-block;
    white-space: nowrap;
}

.splitchar .char {
    display: inline-block;
}

.hero-sub {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 40px;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    max-width: 760px;
}

.stat-num-wrap {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.hero-mark {
    position: absolute;
    right: -32px;
    bottom: -32px;
    width: 150px;
    height: 150px;
    border: 1px dashed var(--accent);
    border-radius: 50%;
    z-index: 2;
    background-color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mark::before {
    content: "";
    width: 66%;
    height: 66%;
    border: 1px solid var(--accent);
    border-radius: 50%;
}

.hero-mark-dot {
    position: absolute;
    top: 12%;
    right: 14%;
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 3px;
    transform: rotate(45deg);
}

@media (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 32px;
    }

    .hero-mark {
        width: 100px;
        height: 100px;
        right: -16px;
        bottom: -16px;
    }
}




/* ============ FIO DECORATIVO (scrub entre hero e statement) ============ */

.thread-shapes {
    width: 100%;
    height: 260px;
    overflow: visible;
    position: relative;
}

.thread-shape {
    position: absolute;
    z-index: 50;
    will-change: transform, opacity;
}

.thread-shape img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 32px rgba(201, 98, 42, 0.32));
    animation: thread-float 6s ease-in-out infinite;
}

.thread-shape--a {
    left: 4%;
    top: 12px;
    width: 60px;
}

.thread-shape--a img {
    animation-duration: 5s;
}

.thread-shape--b {
    left: 9%;
    top: 110px;
    width: 118px;
}

.thread-shape--b img {
    animation-duration: 7.5s;
    animation-delay: -2.5s;
}

.thread-shape--c {
    left: 15%;
    top: 30px;
    width: 74px;
}

.thread-shape--c img {
    animation-duration: 6.5s;
    animation-delay: -4s;
}

@keyframes thread-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(5deg);
    }
}

@media (max-width: 900px) {
    .thread-shapes {
        height: 160px;
    }

    .thread-shape--a {
        width: 44px;
    }

    .thread-shape--b {
        width: 92px;
    }

    .thread-shape--c {
        width: 56px;
    }
}

@media (max-width: 600px) {
    .thread-shapes {
        display: none;
    }
}




/* ============ STATEMENT (foto de fundo some, frase cresce — pinado) ============ */

.statement {
    width: 100%;
    padding: 0 32px;
    background-color: #14120f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.25) sepia(0.2) saturate(1.2) hue-rotate(-6deg) brightness(0.6);
}

.statement-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 18, 15, 0.5), rgba(20, 18, 15, 0.75));
}

/* faixa fixa: fundo é sempre uma foto escurecida, então o texto também
   fica com cor fixa, independente do tema claro/escuro */
.statement-text {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #f6f1e7;
    opacity: 0;
}

.statement-text h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    max-width: 900px;
    margin: 0 auto;
}




/* ============ SERVIÇOS ============ */

.section-title {
    max-width: 640px;
}

.section-lead {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.15rem;
    margin-top: 16px;
}

.split span {
    display: inline-block;
}

.service-list {
    list-style: none;
    margin-top: 56px;
    border-top: 1px solid var(--line);
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    transition: background-color 0.3s ease;
}

.service-list li:hover {
    background-color: var(--paper2);
}

.service-index {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent-strong);
    width: 48px;
    flex-shrink: 0;
    padding-top: 2px;
}

.service-list h3 {
    margin-bottom: 8px;
}

.service-list p {
    color: var(--muted);
    max-width: 520px;
}

@media (max-width: 900px) {
    .service-list li {
        gap: 20px;
        padding: 24px 0;
    }
}




/* ============ ÁREAS DE ATUAÇÃO (galeria horizontal pinada) ============ */

.portfolio-areas {
    background-color: var(--paper2);
}

.portfolio-areas .section-title {
    max-width: none;
    margin-bottom: 48px;
}

.gallery {
    width: max-content;
    padding: 8px 200px 8px 0;
    display: flex;
    gap: 24px;
}

.gallery-card {
    width: 420px;
    height: 420px;
    flex-shrink: 0;
    padding: 48px;
    border-radius: var(--border-radius-big);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

/* foto de fundo em duotone, na mesma paleta do resto do site — some
   atrás de uma faixa sólida no topo/base (título, texto e link ficam
   legíveis) e só "espia" numa tira fina no meio do card */
.gallery-card-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) sepia(0.2) saturate(1.2) hue-rotate(-6deg);
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-media img {
    transform: scale(1.06);
}

.gallery-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
}

.gallery-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.gallery-card-body p {
    flex-grow: 1;
    opacity: 0.85;
}

.gallery-card-body a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.9rem;
}

/* paleta fixa das seis "amostras de marca" — não acompanha o tema
   claro/escuro de propósito, como uma cartela impressa */
.gallery-card:nth-child(1) {
    background-color: #14120f;
    color: #f6f1e7;
}

.gallery-card:nth-child(1) .gallery-card-media::after {
    background: linear-gradient(180deg, #14120f 0%, #14120f 52%, rgba(20, 18, 15, 0.08) 66%, rgba(20, 18, 15, 0.08) 76%, #14120f 92%);
}

.gallery-card:nth-child(2) {
    background-color: #c9622a;
    color: #14120f;
}

.gallery-card:nth-child(2) .gallery-card-media::after {
    background: linear-gradient(180deg, #c9622a 0%, #c9622a 52%, rgba(201, 98, 42, 0.1) 66%, rgba(201, 98, 42, 0.1) 76%, #c9622a 92%);
}

.gallery-card:nth-child(3) {
    background-color: #ece3d1;
    color: #14120f;
}

.gallery-card:nth-child(3) .gallery-card-media::after {
    background: linear-gradient(180deg, #ece3d1 0%, #ece3d1 52%, rgba(236, 227, 209, 0.12) 66%, rgba(236, 227, 209, 0.12) 76%, #ece3d1 92%);
}

.gallery-card:nth-child(4) {
    background-color: #3b2a1f;
    color: #f6f1e7;
}

.gallery-card:nth-child(4) .gallery-card-media::after {
    background: linear-gradient(180deg, #3b2a1f 0%, #3b2a1f 52%, rgba(59, 42, 31, 0.08) 66%, rgba(59, 42, 31, 0.08) 76%, #3b2a1f 92%);
}

.gallery-card:nth-child(5) {
    background-color: #9c4a1e;
    color: #f6f1e7;
}

.gallery-card:nth-child(5) .gallery-card-media::after {
    background: linear-gradient(180deg, #9c4a1e 0%, #9c4a1e 52%, rgba(156, 74, 30, 0.1) 66%, rgba(156, 74, 30, 0.1) 76%, #9c4a1e 92%);
}

.gallery-card:nth-child(6) {
    background-color: #f6f1e7;
    color: #14120f;
}

.gallery-card:nth-child(6) .gallery-card-media::after {
    background: linear-gradient(180deg, #f6f1e7 0%, #f6f1e7 52%, rgba(246, 241, 231, 0.12) 66%, rgba(246, 241, 231, 0.12) 76%, #f6f1e7 92%);
}

/* Abaixo de 1199px o pin/scrub horizontal (JS) é desativado — mas os
   cards continuam em linha, agora com scroll horizontal nativo por
   toque/swipe (com snap), em vez de empilhar verticalmente. */
@media (max-width: 1199px) {
    .gallery {
        /* full-bleed (ignora o padding lateral da section) para o card e a
           "espiadinha" do próximo card serem calculados sobre a largura
           real da viewport, não sobre a área já reduzida pelo padding */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 8px 24px 24px;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery::-webkit-scrollbar {
        display: none;
    }

    .gallery-card {
        width: 82vw;
        max-width: 360px;
        height: auto;
        min-height: 340px;
        flex-shrink: 0;
        padding: 36px;
        scroll-snap-align: start;
    }
}




/* ============ ATENÇÃO AOS DETALHES (parallax + scale no scroll) ============ */

.detail-panels {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-caption {
    color: var(--muted);
    font-size: 0.95rem;
}

.parallax-wrap {
    position: relative;
    height: 60vh;
    overflow: hidden;
    border-radius: var(--border-radius-big);
}

.parallax-img {
    width: 100%;
    height: 240%;
    object-fit: cover;
    filter: grayscale(0.3) sepia(0.2) saturate(1.2) hue-rotate(-6deg);
}

/* overlay técnico: linhas de grid + cantos de mira sobre a foto,
   simulando uma referência de alinhamento/grid de design */
.grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 12.5% 12.5%;
    mix-blend-mode: overlay;
}

.grid-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 3;
    border-color: #f6f1e7;
    border-style: solid;
    border-width: 0;
}

.grid-corner-tl {
    top: 20px;
    left: 20px;
    border-top-width: 1.5px;
    border-left-width: 1.5px;
}

.grid-corner-tr {
    top: 20px;
    right: 20px;
    border-top-width: 1.5px;
    border-right-width: 1.5px;
}

.grid-corner-bl {
    bottom: 20px;
    left: 20px;
    border-bottom-width: 1.5px;
    border-left-width: 1.5px;
}

.grid-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom-width: 1.5px;
    border-right-width: 1.5px;
}

.grid-tag {
    position: absolute;
    z-index: 3;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #14120f;
    background-color: rgba(246, 241, 231, 0.85);
    padding: 5px 10px;
    border-radius: var(--border-radius-small);
}

.grid-tag-tl {
    top: 20px;
    left: 52px;
}

.grid-tag-br {
    bottom: 20px;
    right: 52px;
}

@media (max-width: 900px) {

    .grid-corner-tl,
    .grid-tag-tl {
        top: 14px;
    }

    .grid-corner-bl,
    .grid-corner-br,
    .grid-tag-br {
        bottom: 14px;
    }

    .grid-corner-tl,
    .grid-corner-bl {
        left: 14px;
    }

    .grid-corner-tr,
    .grid-corner-br {
        right: 14px;
    }

    .grid-tag-tl {
        left: 44px;
    }

    .grid-tag-br {
        right: 44px;
    }
}

.scalescroll-mask {
    height: 60vh;
    overflow: hidden;
    border-radius: var(--border-radius-big);
    background-color: #14120f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scalescroll {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scalescroll span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: #f6f1e7;
}

@media (max-width: 900px) {
    .detail-panels {
        grid-template-columns: 1fr;
    }

    .parallax-wrap,
    .scalescroll-mask {
        height: 50vh;
    }
}




/* ============ SOBRE ============ */

.about {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    background-color: var(--paper2);
}

.about-quote h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.rbt-word {
    opacity: 0.15;
}

.founder-photo {
    width: 104px;
    height: 104px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid var(--line);
    background-color: var(--paper);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) sepia(0.2) saturate(1.2) hue-rotate(-6deg);
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-body p {
    color: var(--muted);
    font-size: 1.05rem;
}

.about-diff {
    list-style: none;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-diff li {
    padding-left: 24px;
    position: relative;
}

.about-diff li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-strong);
}

@media (max-width: 900px) {
    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}




/* ============ NOSSO PROCESSO ============ */

.process-intro {
    text-align: center;
}

.process-intro .section-title {
    margin-left: auto;
    margin-right: auto;
}

.process-intro .section-lead {
    margin: 16px auto 0;
}

.process-steps {
    position: relative;
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 8px;
    margin: 64px auto 0;
    max-width: 920px;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 1px;
    background-color: var(--line);
    z-index: 0;
}

.process-steps li {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 160px;
}

.process-steps-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background-color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-strong);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.process-steps li:hover .process-steps-num {
    border-color: var(--accent);
    color: var(--accent);
}

.process-steps-label {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink);
}

.process-scroll-hint {
    margin-top: 48px;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .process-steps {
        gap: 40px 16px;
        margin-top: 48px;
    }

    .process-steps::before {
        left: 40px;
        right: 40px;
    }

    .process-steps li {
        width: 120px;
    }
}

.process-chapter {
    /* min-height explícito aqui porque o capítulo 4 (.polygons) não tem a
       classe .liquid-section, que é quem dá 100vh aos outros 3 via
       fx-liquids/liquids.css — sem isso ele fica do tamanho só do texto */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

/* section-cream/section-rose (fx-liquids/liquids.css) têm fundo claro fixo,
   independente do tema claro/escuro do site — por isso o texto também
   precisa ser uma cor fixa aqui, e não var(--ink) (que se inverte no
   tema escuro e ficaria claro sobre claro). section-dark e .polygons já
   definem sua própria cor de texto fixa nos respectivos arquivos. */
.process-chapter.section-cream,
.process-chapter.section-rose {
    color: #14120f;
}

.process-chapter .content .eyebrow {
    justify-content: center;
    color: inherit;
}




/* ============ CLIENTES ============ */

.clients {
    text-align: center;
}

.clients .section-title {
    max-width: none;
    margin: 0 auto 48px;
}

.marquee-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 72px;
    padding-right: 72px;
    white-space: nowrap;
}

.marquee-group span {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--muted);
}




/* ============ PARA QUEM É ============ */


.audience-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.audience-list li {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

.audience-list li span {
    color: var(--accent-strong);
    font-size: 0.9rem;
    font-weight: 600;
}




/* ============ CONTATO ============ */

/* Faixa final sempre invertida: cores fixas, propositalmente independentes
   do var(--ink)/var(--paper) do tema claro/escuro, para nunca virar
   texto escuro sobre fundo escuro (ou vice-versa) quando o tema muda. */
.contact-cta {
    background-color: #14120f;
    color: #f6f1e7;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.contact-cta h2 {
    max-width: 900px;
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.contact-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    font-style: normal;
}

.contact-cta .button-hollow {
    color: #f6f1e7;
    border-color: rgba(246, 241, 231, 0.3);
}

.contact-cta .button-hollow:hover {
    color: #e2794a;
    border-color: #e2794a;
}

.form-box {
    width: 100%;
    max-width: 460px;
    text-align: left;
    background-color: rgba(246, 241, 231, 0.03);
    border: 1px solid rgba(246, 241, 231, 0.12);
    border-radius: var(--border-radius-big);
    padding: 48px;
}

.form-eyebrow {
    color: rgba(246, 241, 231, 0.55);
    margin-bottom: 16px;
}

.form-eyebrow .eyebrow-dash {
    background-color: #e2794a;
}

.form-box h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #f6f1e7;
}

.form-lead {
    color: rgba(246, 241, 231, 0.6);
    font-size: 0.95rem;
    max-width: 340px;
    margin-bottom: 36px;
}

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* linhas finas em vez de campos "encaixotados" — segue o mesmo traço
   minimalista das listas de serviços/público (border-bottom + respiro) */
.form-box input,
.form-box textarea {
    width: 100%;
    padding: 10px 2px;
    border: none;
    border-bottom: 1px solid rgba(246, 241, 231, 0.22);
    border-radius: 0;
    background-color: transparent;
    color: #f6f1e7;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
    color: rgba(246, 241, 231, 0.42);
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    border-bottom-color: #e2794a;
}

.form-box textarea {
    min-height: 84px;
    resize: vertical;
}

.form-box button[type="submit"] {
    align-self: flex-start;
    min-width: 170px;
    margin-top: 8px;
    padding: 16px 28px;
    background-color: var(--accent);
    color: #14120f;
    border: 1px solid var(--accent);
    border-radius: var(--border-radius-round);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.form-box button[type="submit"]:hover {
    background-color: #9c4a1e;
    border-color: #9c4a1e;
    transform: translateY(-1px);
}

.success {
    display: none;
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: var(--border-radius-medium);
    background-color: rgba(226, 121, 74, 0.12);
    border: 1px solid rgba(226, 121, 74, 0.35);
    color: #f2c9a0;
    font-size: 0.9rem;
}

.success::before {
    content: "✓ ";
    font-weight: 700;
}

@media (max-width: 900px) {
    .form-box {
        padding: 32px;
    }
}




/* ============ FOOTER ============ */

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px max(80px, calc((100% - var(--content-max)) / 2));
    border-top: 1px solid var(--line);
}

.copyright {
    color: var(--muted);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.social-links a svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.social-links a:hover {
    color: var(--accent);
}

@media (max-width: 900px) {
    .site-footer {
        padding: 32px;
        justify-content: center;
        text-align: center;
    }
}
