* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #111;
    color: #fff;
    min-height: 100vh;
}

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: min(780px, 92vh);
    border-radius: 0;
    overflow: hidden;
    border-bottom: 1px solid #2a2a2a;
}

/* NAV */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), transparent);
}

.nav-logo {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    font-weight: bold;
}

.nav-btn {
    background: #c24a24;
    color: #fff;
    border: 1px solid #c24a24;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-btn:hover {
    background: #9f351a;
    border-color: #9f351a;
}

/* HERO IMAGE */
.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 62%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 36%, rgba(0, 0, 0, 0.12) 78%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.58) 100%);
}

/* ── ABOUT ── */
.about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 104px 24px 144px;
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    gap: 72px;
    align-items: start;
}

.about-meta {
    display: flex;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #c24a24;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 0;
    text-transform: uppercase;
}

.about-text {
    font-family: "Inter", sans-serif;
    font-size: clamp(24px, 2.35vw, 36px);
    font-weight: 600;
    line-height: 1.45;
    color: #6f6f6f;
}

.word {
    color: #a0a0a0;
    transition: color 0.8s ease;
}

.word.lit {
    color: #ffffff;
    transition: color 0.4s ease;
}

/* ── FEATURES ── */
.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px 160px;
    display: flex;
    flex-direction: column;
    gap: 176px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.feature-text h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.feature-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
}

.feature-stats {
    display: flex;
    gap: 48px;
}

.feature-stats div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-stats strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
}

.feature-stats span {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #747474;
    max-width: 140px;
    line-height: 1.5;
}

.feature-image {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid #2a2a2a;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── CATALOG ── */
.catalog {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px 168px;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

.catalog-title h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
}

.catalog-title h2 span {
    color: #c24a24;
}

.catalog-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #858585;
    line-height: 1.7;
    max-width: 340px;
    padding-top: 8px;
}

/* BENTO GRID */
.bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 320px 220px;
    gap: 12px;
}

/* tall cards span 2 rows */
.bento-card.tall {
    grid-row: span 2;
}

/* stack: coluna central com dois cards empilhados */
.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-stack .bento-card {
    flex: 1;
}

/* wide cards: na segunda linha, ocupam cada um metade das 2 colunas restantes */
.bento-card.wide {
    /* posicionamento automático pelo grid */
}

.bento-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #181818;
    cursor: pointer;
    border: 1px solid #2a2a2a;
    padding: 0;
    text-align: left;
    font: inherit;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bento-card:hover img {
    transform: scale(1.025);
}

.bento-card:focus-visible {
    outline: 2px solid #c24a24;
    outline-offset: 4px;
}

.bento-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.58) 24%,
        rgba(0, 0, 0, 0.18) 52%,
        transparent 78%
    );
}

.bento-copy {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.bento-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

.bento-copy p {
    margin: 0;
    max-width: 340px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.bento-copy strong {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.78);
}

.gallery-overlay.open {
    display: flex;
}

.gallery-modal {
    position: relative;
    width: min(1120px, 100%);
    max-height: min(820px, 92vh);
    overflow-y: auto;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

.gallery-close {
    position: sticky;
    top: 18px;
    float: right;
    z-index: 3;
    width: 38px;
    height: 38px;
    margin: 18px 18px 0 0;
    border: 1px solid #333;
    border-radius: 4px;
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.gallery-close:hover,
.gallery-close:focus-visible {
    border-color: #c24a24;
    color: #c24a24;
    outline: none;
}

.gallery-panel {
    display: none;
    padding: 42px;
}

.gallery-panel.active {
    display: block;
}

.gallery-heading {
    max-width: 680px;
    margin-bottom: 28px;
}

.gallery-heading span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-heading h3 {
    margin: 0 0 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
}

.gallery-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #9a9a9a;
}

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

.gallery-item {
    margin: 0;
    overflow: hidden;
    background: #181818;
    border: 1px solid #252525;
    border-radius: 4px;
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ── SERVICES ── */
.services {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px 176px;
}

.services-card {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.55fr);
    gap: 72px;
    align-items: start;
}

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

.services-title h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-transform: uppercase;
}

.services-title h2 span {
    color: #c24a24;
}

.services-tabs {
    display: flex;
    gap: 12px;
}

.stab {
    background: transparent;
    border: 1px solid #3d3d3d;
    color: #aaa;
    padding: 14px 0;
    flex: 1;
    min-width: 0;
    text-align: center;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.stab.active,
.stab:hover {
    background: #c24a24;
    border-color: #c24a24;
    color: #fff;
    box-shadow: 0 10px 28px rgba(194, 74, 36, 0.16);
}

.services-desc {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #fff;
    line-height: 1.7;
    max-width: 760px;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.services-list li {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sicon {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    background: rgba(194, 74, 36, 0.16);
    color: #c24a24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.stab-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.stab-content.active {
    display: flex;
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.floating-btns.visible {
    opacity: 1;
    pointer-events: auto;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.fab svg {
    width: 22px;
    height: 22px;
}

.fab-orcamento {
    background: #c24a24;
    color: #fff;
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
}

/* ── DEPOIMENTOS ── */
.testimonials {
    max-width: 1100px;
    margin: 0 auto;
    padding: 128px 24px 152px;
}

.test-header {
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.test-label {
    font-size: 11px;
    font-weight: 500;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.test-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    text-transform: uppercase;
}

.test-title span {
    color: #c24a24;
}

/* CARD CONTAINER */
.test-card {
    position: relative;
    background: #141414;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #272727;
}

.test-slides {
    position: relative;
    height: 470px;
}

.test-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.test-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* LADO ESQUERDO — TEXTO */
.test-content {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.test-quote {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.test-quote-text {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(18px, 1.55vw, 23px);
    color: #e0e0e0;
    line-height: 1.7;
    font-weight: 400;
    flex: 1;
}

.test-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid #292929;
}

.test-author-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 19px;
    color: #fff;
    font-weight: 700;
}

.test-author-role {
    font-size: 12px;
    color: #777;
    letter-spacing: 0.3px;
}

/* LADO DIREITO — FOTO */
.test-photo {
    overflow: hidden;
}

.test-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BOLINHAS */
.test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 20px;
    background: #141414;
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.3s,
        transform 0.3s;
}

.test-dot.active {
    background: #c24a24;
    transform: scale(1.3);
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 16px 80px;
    }
    .test-slides {
        height: auto;
    }
    .test-slide {
        position: absolute;
        inset: 0;
        grid-template-columns: 1fr;
        opacity: 0;
        pointer-events: none;
        height: 0;
        overflow: hidden;
    }
    .test-slide.active {
        position: relative;
        inset: auto;
        height: auto;
        overflow: visible;
        opacity: 1;
        pointer-events: auto;
        min-height: 680px;
    }
    .test-photo {
        height: 320px;
    }
    .test-content {
        padding: 36px 28px;
    }

    .test-quote-text {
        font-size: 20px;
    }
}

/* ── AMBIENTES COMPLETOS ── */
.ambientes {
    position: relative;
    height: 680px;
    margin-bottom: 0;
    overflow: hidden;
}

.amb-slides {
    position: absolute;
    inset: 0;
}

.amb-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.amb-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.amb-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amb-overlay-left {
    position: absolute;
    inset: 0;
    right: 40%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        transparent 100%
    );
    z-index: 2;
}

.amb-overlay-right {
    position: absolute;
    inset: 0;
    left: 60%;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    z-index: 2;
}

.amb-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 360px;
}

.amb-label {
    font-size: 11px;
    font-weight: 500;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amb-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
}

.amb-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.amb-slide-caption {
    position: absolute;
    bottom: 48px;
    right: 60px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
    max-width: 320px;
}

.amb-slide-name {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.amb-slide-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.amb-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.amb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 0;
    transition:
        background 0.3s,
        transform 0.3s;
}

.amb-dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .ambientes {
        height: 560px;
    }
    .amb-text {
        left: 28px;
        max-width: 200px;
        gap: 14px;
    }
    .amb-slide-caption {
        display: none;
    }
    .amb-overlay-left {
        right: 30%;
    }
    .amb-overlay-right {
        left: 70%;
    }
}

/* ── CTA SECTION ── */
.cta-section {
    padding: 128px 24px 152px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
}

.cta-label {
    font-size: 11px;
    font-weight: 500;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
}

.cta-title span {
    color: #c24a24;
}

.cta-desc {
    font-size: 15px;
    color: #858585;
    line-height: 1.7;
    max-width: 480px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition:
        background 0.2s,
        transform 0.2s;
}

.cta-btn-primary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta-btn-primary:hover {
    background: #1db954;
    transform: translateY(-1px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    border: 1.5px solid #333;
    padding: 15px 32px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s,
        transform 0.2s;
}

.cta-btn-outline:hover {
    border-color: #c24a24;
    color: #c24a24;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 24px 100px;
        gap: 20px;
    }
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }
    .cta-btn-primary,
    .cta-btn-outline {
        justify-content: center;
    }
}

/* ── FOOTER ── */
.footer {
    background: #0a0a0a;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 24px 88px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-col a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.footer-social a {
    color: #444;
    transition: color 0.2s;
    display: flex;
}

.footer-social a:hover {
    color: #c24a24;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-wordmark {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(80px, 14vw, 200px);
    letter-spacing: 0;
    line-height: 0.85;
    background: linear-gradient(
        to bottom,
        #4a4a4a 0%,
        #2a2a2a 40%,
        #1a1a1a 70%,
        #0a0a0a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    padding: 0 16px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px 32px;
    border-top: 1px solid #141414;
}

.footer-bottom span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    color: #555;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
        padding: 56px 24px 48px;
    }
    .footer-social {
        flex-direction: row;
        align-items: center;
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 24px;
    }
    .footer-wordmark {
        font-size: clamp(28px, 7.5vw, 52px);
        white-space: nowrap;
        padding: 0 16px;
    }
}

/* ── MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 4px;
    width: 90%;
    max-width: 1020px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #222;
    border: none;
    color: #aaa;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #333;
    color: #fff;
}

/* SCREENS */
.modal-screen {
    display: none;
    padding: 52px 48px;
}

.modal-screen.active {
    display: block;
}

.modal-screen.screen-form.active {
    display: grid;
    grid-template-columns: minmax(0, 680px);
    justify-content: center;
    gap: 0;
    padding: 0;
}

/* TELA 1 */
.modal-intro {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modal-intro-icon {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    background: rgba(194, 74, 36, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-intro-icon svg {
    width: 30px;
    height: 30px;
    color: #c24a24;
}

.modal-intro h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.modal-intro p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

.modal-steps {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.modal-steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #aaa;
    text-align: center;
    max-width: 110px;
}

.modal-steps li span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    color: #c24a24;
    font-weight: 700;
}

/* TELA 2 */
.modal-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.modal-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: #858585;
    margin-bottom: 32px;
}

.tipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.tipo-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #aaa;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.tipo-card svg {
    width: 28px;
    height: 28px;
}

.tipo-card:hover,
.tipo-card.selected {
    border-color: #c24a24;
    color: #c24a24;
    background: rgba(194, 74, 36, 0.08);
}

/* TELA 3 */
.form-col {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 90vh;
    scrollbar-width: none;
}

.form-col::-webkit-scrollbar {
    display: none;
}

.form-back {
    margin-bottom: 4px;
}

.form-col > .modal-title {
    margin-bottom: 8px;
}

.orcamento-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-section {
    border-top: 1px solid #252525;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 22px;
}

.form-section h4 {
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #858585;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c24a24;
}

.form-group select option {
    background: #1a1a1a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tampo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.tampo-opt {
    background: transparent;
    border: 1.5px solid #2a2a2a;
    border-radius: 4px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.tampo-opt:hover {
    border-color: #555;
}

.tampo-opt.selected {
    border-color: #c24a24;
}

.tampo-swatch {
    width: 100%;
    height: 36px;
    border-radius: 2px;
    display: block;
}

.tampo-opt span:last-child {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #999;
    text-align: center;
    line-height: 1.3;
}

.tampo-opt.selected span:last-child {
    color: #c24a24;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 4px;
}

.form-action-filled {
    background: #c24a24;
    border: none;
    color: #fff;
    padding: 12px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.form-action-filled:hover {
    background: #9f351a;
}

a.form-action-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.form-action-filled:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-submit-status {
    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    min-height: 18px;
}

.form-submit-status.success {
    color: #7fc77f;
}

.form-submit-status.warning {
    color: #d9a84f;
}

.form-submit-status.error {
    color: #e06d5f;
}

.modal-success {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 auto;
    max-width: 440px;
    padding: 12px 0 4px;
    text-align: center;
}

.modal-success-icon {
    align-items: center;
    background: rgba(194, 74, 36, 0.16);
    border-radius: 4px;
    color: #c24a24;
    display: flex;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.modal-success-icon svg {
    height: 32px;
    width: 32px;
}

.modal-success h3 {
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-success p {
    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.modal-success-actions {
    display: grid;
    gap: 12px;
    margin-top: 4px;
    width: min(360px, 100%);
}

.modal-success-actions .modal-btn-outline {
    margin-top: 0;
}

/* SHARED BUTTONS */
.modal-btn-outline {
    background: transparent;
    color: #c24a24;
    border: 1.5px solid #c24a24;
    padding: 13px 0;
    width: 100%;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    margin-top: 8px;
}

.modal-btn-outline:hover {
    background: #c24a24;
    color: #fff;
}

.modal-btn-primary {
    background: #c24a24;
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.modal-btn-primary:hover {
    background: #9f351a;
}

.modal-btn-ghost {
    background: transparent;
    border: none;
    color: #777;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.modal-btn-ghost:hover {
    color: #fff;
}

.modal-btn-ghost.small {
    font-size: 12px;
}

/* NAV HAMBURGER */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 20;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* NAV MOBILE DROPDOWN */
.nav-mobile {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 15;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 8px 0 16px;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #ccc;
    text-decoration: none;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #1e1e1e;
    transition: color 0.2s;
}

.nav-mobile a:hover {
    color: #fff;
}

.nav-mobile .nav-btn {
    margin-top: 12px;
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    animation: mouseBounce 2s ease-in-out infinite;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: #fff;
    border-radius: 1px;
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes mouseBounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* HERO TEXT */
.hero-text {
    position: absolute;
    bottom: 84px;
    left: 48px;
    z-index: 10;
    max-width: 620px;
}

.hero-kicker {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #c24a24;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-text h1 {
    font-size: clamp(42px, 6vw, 76px);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    max-width: 520px;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.hero-proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.hero-proofs span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* ── MODAL RESPONSIVE ── */
@media (max-width: 768px) {
    .modal-box {
        width: 96%;
        max-height: 92vh;
    }

    .modal-screen {
        padding: 32px 24px;
    }

    .modal-screen.screen-form.active {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .form-col {
        max-height: 92vh;
        border-right: none;
        padding: 28px 20px;
    }

    .tampo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tipo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .tipo-card {
        padding: 14px 8px;
        font-size: 11px;
        gap: 8px;
    }

    .tipo-card svg {
        width: 22px;
        height: 22px;
    }

    .modal-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .modal-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

/* ── SERVICES RESPONSIVE ── */
@media (max-width: 768px) {
    .services {
        padding: 24px 20px 80px;
    }

    .services-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-tabs {
        gap: 8px;
    }

    .stab {
        padding: 11px 0;
        font-size: 12px;
    }
}

/* ── CATALOG RESPONSIVE ── */
@media (max-width: 768px) {
    .catalog {
        padding: 40px 20px 80px;
    }

    .catalog-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .catalog-desc {
        max-width: 100%;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-auto-rows: 140px;
        grid-auto-flow: dense;
    }

    .bento-card.tall {
        grid-row: span 2;
        aspect-ratio: unset;
    }

    .bento-stack {
        display: contents;
    }

    .bento-stack .bento-card:first-child {
        grid-row: span 1;
        aspect-ratio: unset;
    }

    .bento-stack .bento-card:last-child {
        grid-row: span 1;
        aspect-ratio: unset;
    }

    .bento-card.wide {
        grid-row: span 2;
        aspect-ratio: unset;
    }

    .bento-copy {
        bottom: 12px;
        left: 14px;
        right: 14px;
        gap: 6px;
    }

    .bento-copy p {
        display: none;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-modal {
        max-height: 90vh;
    }

    .gallery-panel {
        padding: 28px 18px 20px;
    }

    .gallery-close {
        top: 12px;
        width: 36px;
        height: 36px;
        margin: 12px 12px 0 0;
    }

    .gallery-heading {
        margin-bottom: 20px;
        padding-right: 42px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}

/* ── FEATURES RESPONSIVE ── */
@media (max-width: 768px) {
    .features {
        padding: 40px 20px 80px;
        gap: 80px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-row .feature-image,
    .feature-row.reverse .feature-image {
        order: -1;
    }

    .feature-row .feature-text,
    .feature-row.reverse .feature-text {
        order: 0;
    }

    .feature-image {
        aspect-ratio: 16/9;
    }

    .feature-desc {
        max-width: 100%;
    }
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 768px) {
    .about {
        display: block;
        padding: 80px 20px 96px;
    }

    .about-meta {
        margin-bottom: 28px;
    }

    .about-text {
        font-size: clamp(26px, 7vw, 36px);
    }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 768px) {
    .hero {
        width: 100%;
        margin: 0 auto;
        height: 82vh;
        min-height: 620px;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-text {
        bottom: 54px;
        left: 24px;
        right: 24px;
        max-width: none;
    }

    .hero-kicker {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .hero-text h1 {
        font-size: clamp(34px, 11vw, 48px);
    }

    .hero-subtitle {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-proofs {
        margin-top: 20px;
        gap: 6px;
    }

    .hero-proofs span {
        min-height: 32px;
        padding: 7px 9px;
        font-size: 11px;
    }
}
