/* ==========================================================================
   OBRAJUSTA II — DESIGN SYSTEM & BLUEPRINT STYLE GUIDE (VANILLA CSS)
   ========================================================================== */

/* ── 00. CUSTOM FONTS ── */
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-Light.ttf') format('truetype');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-Regular.ttf') format('truetype');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-Medium.ttf') format('truetype');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-SemiBold.ttf') format('truetype');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-Bold.ttf') format('truetype');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway/Raleway-Heavy.ttf') format('truetype');
    font-weight: 900; font-style: normal; font-display: swap;
}

/* ── 01. CORE CONFIGURATION & VARS ── */
:root {
    /* Paleta Estrita do Prompt */
    --color-primary-blue: #1464C8;        /* Azul Royal */
    --color-lima-accent: #A0DC28;         /* Verde-Lima Neon */
    --color-dark-bg: #0D1B2A;             /* Azul Escuro Profundo */
    --color-white: #FFFFFF;               /* Branco Puro */
    --color-text-dark: #3A3A3A;           /* Cinzento Neutro de Texto */
    --color-text-light: #F4F6F9;          /* Cinzento Claro Neutro */
    --color-text-muted: #8A99AD;          /* Rótulos Blueprint */
    --color-border-line: rgba(20, 100, 200, 0.15); /* Linha Blueprint Fina */
    --color-card-border: rgba(20, 100, 200, 0.2);
    
    /* Tipografia e Estrutura */
    --font-heading: 'Raleway', 'Space Grotesk', sans-serif; /* Títulos Técnicos */
    --font-body: 'Plus Jakarta Sans', sans-serif;   /* Texto Leitura */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-tech: 4px; /* Cantos de precisão cirúrgica */
    --header-height: 130px;
}

/* ── 02. BASE HTML RESET & SCROLLBARS ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    outline: none;
}

body {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-primary-blue); /* Ajustado para Azul Royal (marca registada) */
}

/* Garantir legibilidade em secções escuras mantendo os títulos brancos */
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section h4,
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
    color: var(--color-white) !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-blue);
    border-radius: var(--border-radius-tech);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-lima-accent);
}

/* ── 03. LAYOUT UTILITIES ── */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-text-light);
}

.bg-dark {
    background-color: var(--color-dark-bg);
}

.text-white {
    color: var(--color-white) !important;
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.lime-text {
    color: var(--color-lima-accent) !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.w-full {
    width: 100% !important;
}

.mt-4 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 2.5rem !important; }
.hidden { display: none !important; }

/* Rótulos Estilo Blueprint */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary-blue);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.bg-dark .section-label {
    color: var(--color-lima-accent);
}

.technical-code {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

/* ── 04. GRID DE LINHAS BLUEPRINT ── */
.blueprint-lines {
    border-left: 1px solid var(--color-border-line);
    border-right: 1px solid var(--color-border-line);
    position: relative;
}

.blueprint-lines::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    width: 1px;
    background-color: var(--color-border-line);
    pointer-events: none;
    z-index: 1;
}

.blueprint-lines::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25%;
    width: 1px;
    background-color: var(--color-border-line);
    pointer-events: none;
    z-index: 1;
}

/* ── 05. BOTÕES & ELEMENTOS DE AÇÃO ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius-tech);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-lima-accent);
    color: var(--color-dark-bg);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary-blue);
    box-shadow: 0 0 20px rgba(160, 220, 40, 0.4);
}

.btn-outline {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark-bg);
}

.bg-light .btn-outline {
    border-color: var(--color-primary-blue);
    color: var(--color-primary-blue);
}

.bg-light .btn-outline:hover {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ── 06. CABEÇALHO E MENU NAVEGAÇÃO ── */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    transition: var(--transition-smooth);
    background-color: rgba(13, 27, 42, 0.1);
    backdrop-filter: blur(10px);
}

.main-header.scrolled {
    background-color: var(--color-dark-bg);
    border-bottom: 1px solid var(--color-border-line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: var(--color-lima-accent);
}

.logo-img {
    height: 115px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.logo-subtitle {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-lima-accent);
}

.nav-num {
    font-size: 10px;
    color: var(--color-primary-blue);
    margin-right: 4px;
    font-weight: 700;
}

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

.mobile-menu-toggle {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
}

.hamburger {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--color-dark-bg);
    z-index: 1000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid var(--color-border-line);
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-close {
    font-size: 32px;
    color: var(--color-white);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    display: block;
}

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

/* ── 07. HERO SECTION ── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--color-dark-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Eng_Hero1.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Camada de escurecimento sobre a foto para garantir legibilidade do texto */
.hero-bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.55) 55%, rgba(13, 27, 42, 0.35) 100%),
        linear-gradient(to top, rgba(13, 27, 42, 0.7) 0%, transparent 40%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    margin-top: var(--header-height);
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-size: clamp(60px, 7.5vw, 112px);
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    color: var(--color-lima-accent);
    position: relative;
    display: inline-block;
}
.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-lima-accent);
    opacity: 0.5;
}

.hero-lead {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-aside {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.status-badge {
    background-color: rgba(20, 100, 200, 0.15);
    border: 1px solid var(--color-border-line);
    padding: 16px 24px;
    border-radius: var(--border-radius-tech);
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    right: -62px;
    top: 50%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: center center;
    z-index: 10;
    white-space: nowrap;
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--color-lima-accent);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 10px var(--color-lima-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.status-text {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.15em;
    white-space: nowrap;
}

/* ── 08. STATS BAR ── */
.stats-bar {
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-border-line);
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    padding: 30px 40px;
    border-right: 1px solid var(--color-border-line);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--color-lima-accent);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── 09. SECTION: QUEM SOMOS ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.tech-image-wrapper {
    border: 1px solid var(--color-border-line);
    padding: 10px;
    position: relative;
    background-color: var(--color-text-light);
}

.concrete-placeholder {
    width: 100%;
    height: 560px;
    position: relative;
    overflow: hidden;
}

/* Ken Burns — deriva lenta do fundo */
.about-section .concrete-placeholder {
    animation: about-kenburns 22s ease-in-out infinite;
}

@keyframes about-kenburns {
    0%   { background-position: 50% 8%;  background-size: 108%; }
    25%  { background-position: 54% 5%;  background-size: 112%; }
    50%  { background-position: 50% 10%; background-size: 115%; }
    75%  { background-position: 46% 6%;  background-size: 111%; }
    100% { background-position: 50% 8%;  background-size: 108%; }
}

/* ── LSF BLUEPRINT CAROUSEL ── */
.blueprint-carousel-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blueprint-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Slide counter: 01 // 06 */
.lsf-slide-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lsf-slide-indicator #lsf-slide-cur {
    color: #A0DC28;
    font-size: 14px;
}

.lsf-slide-indicator .lsf-slide-sep {
    color: rgba(20, 100, 200, 0.5);
    font-size: 9px;
}

.lsf-slide-indicator #lsf-slide-tot {
    color: rgba(138, 153, 173, 0.6);
}

/* Carousel viewport */
.blueprint-carousel-outer {
    overflow: hidden;
    width: 100%;
    position: relative;
    border: 1px solid rgba(20, 100, 200, 0.2);
    background: rgba(13, 27, 42, 0.5);
}

/* Overlay arrow buttons */
.lsf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 48px;
    background: rgba(13, 27, 42, 0.82);
    border: 1px solid rgba(20, 100, 200, 0.4);
    color: #1464C8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    padding: 0;
}

.lsf-arrow:hover {
    background: rgba(20, 100, 200, 0.28);
    border-color: #1464C8;
    color: #fff;
}

.lsf-arrow:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.lsf-arrow-prev { left: 0; border-left: none; border-radius: 0 2px 2px 0; }
.lsf-arrow-next { right: 0; border-right: none; border-radius: 2px 0 0 2px; }

/* Track — usa grid para que 100% resolva contra o outer, não contra si mesmo */
.blueprint-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;   /* cada coluna = largura do outer (overflow:hidden) */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.blueprint-carousel-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

/* Cada card ocupa exactamente 1 coluna do grid = largura do outer */
.blueprint-carousel-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.blueprint-carousel-item .technical-blueprint-box {
    flex: 1;
    padding: 0;
    overflow: hidden;
    border: none;
    background: transparent;
}

.blueprint-carousel-item .technical-blueprint-box svg {
    width: 100%;
    height: auto;
    display: block;
}

.blueprint-card-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    text-align: center;
    padding: 8px 12px;
    border-top: 1px solid rgba(20, 100, 200, 0.2);
    background: rgba(20, 100, 200, 0.04);
}

/* Dots */
.lsf-carousel-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 12px;
}

.lsf-carousel-dot {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: rgba(20, 100, 200, 0.22);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.lsf-carousel-dot.active {
    background: #A0DC28;
    box-shadow: 0 0 8px rgba(160, 220, 40, 0.45);
    width: 38px;
}

.lsf-carousel-dot:hover:not(.active) {
    background: rgba(20, 100, 200, 0.5);
}

/* Autoplay progress bar */
.lsf-autoplay-progress {
    height: 2px;
    background: rgba(20, 100, 200, 0.15);
    margin-top: 6px;
    overflow: hidden;
    border-radius: 1px;
}

.lsf-autoplay-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1464C8, #A0DC28);
    transition: width 0.1s linear;
    border-radius: 1px;
}

.placeholder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(13, 27, 42, 0.9));
    padding: 30px 20px 20px;
    text-align: center;
}

.placeholder-caption {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.body-text {
    font-size: 16px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.values-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(20, 100, 200, 0.1);
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-blue);
    flex-shrink: 0;
}

.value-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.value-desc {
    font-size: 14px;
    color: var(--color-text-dark);
}

/* ── 10. SECTION: SERVIÇOS ── */
.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-line);
    padding: 40px;
    border-radius: var(--border-radius-tech);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--color-primary-blue);
    box-shadow: 0 10px 30px rgba(20, 100, 200, 0.1);
    transform: translateY(-5px);
}

.service-card.highlight-border {
    border: 1px solid var(--color-primary-blue);
    position: relative;
}

.card-num {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-blue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge {
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.badge-lima {
    background-color: var(--color-lima-accent);
    color: var(--color-dark-bg);
}

.service-title {
    font-size: 20px;
    text-transform: uppercase;
}

.service-text {
    font-size: 14px;
    color: var(--color-text-dark);
}

.services-action {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* ── SERVIÇOS EM MODO ESCURO ── */
.bg-dark .service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(20, 100, 200, 0.22);
}
.bg-dark .service-card:hover {
    background-color: rgba(20, 100, 200, 0.09);
    border-color: rgba(20, 100, 200, 0.6);
    box-shadow: 0 10px 40px rgba(20, 100, 200, 0.15);
}
.bg-dark .service-card.highlight-border {
    border-color: rgba(160, 220, 40, 0.4);
    background-color: rgba(160, 220, 40, 0.03);
}
.bg-dark .service-card.highlight-border:hover {
    border-color: rgba(160, 220, 40, 0.7);
    background-color: rgba(160, 220, 40, 0.06);
}
.bg-dark .service-title {
    color: var(--color-white) !important;
}
.bg-dark .service-text {
    color: var(--color-text-muted);
}
.bg-dark .card-num {
    color: var(--color-lima-accent);
}
.bg-dark .section-subtitle {
    color: var(--color-text-muted);
}

/* ── 11. LSF COMPARATIVE SECTION ── */
.lsf-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Evita que as colunas de ilustração expandam além do seu 1fr */
.lsf-illustration,
.modular-visual {
    min-width: 0;
    overflow: hidden;
}

.dashboard-table-wrapper {
    margin-top: 40px;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-family: var(--font-heading);
}

.dashboard-table th,
.dashboard-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-line);
}

.dashboard-table th {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-lima-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dashboard-table td {
    font-size: 13px;
    color: var(--color-white);
}

.dashboard-table tr:hover td {
    background-color: rgba(20, 100, 200, 0.1);
    color: var(--color-lima-accent);
}

.technical-blueprint-box {
    border: 1px solid var(--color-border-line);
    padding: 20px;
    background-color: rgba(13, 27, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueprint-svg {
    width: 100%;
    max-width: 400px;
    color: var(--color-text-muted);
}

/* ── 12. CASAS MODULARES SECTION ── */
.modular-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.blueprint-tech-grid {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 15px;
}

.main-photo {
    height: 380px;
    border: 1px solid var(--color-border-line);
    position: relative;
}

.tech-isometric-draw {
    height: 380px;
    border: 1px solid var(--color-border-line);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text-light);
}

.isometric-svg {
    width: 100%;
    padding: 10px;
}

.live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-blue);
    line-height: 1.4;
}

.modular-bullets {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-lima-accent);
    border-radius: 50%;
}

/* ── 13. PORTFOLIO SECTION ── */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
}

.portfolio-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 10px 20px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-line);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.filter-pill:hover,
.filter-pill.active {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
    border-color: var(--color-primary-blue);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    border-color: var(--color-primary-blue);
    transform: translateY(-5px);
}

.card-img-box {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    padding: 6px 12px;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.card-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.project-location {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.project-title {
    font-size: 20px;
    text-transform: uppercase;
}

.project-summary {
    font-size: 13px;
    color: var(--color-text-dark);
    flex-grow: 1;
}

.btn-link {
    align-self: flex-start;
    color: var(--color-primary-blue);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-link:hover {
    color: var(--color-lima-accent);
}

/* ── 14. PROCESS & TIMELINE ── */
.process-timeline {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-border-line);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-blue);
    border: 1px solid var(--color-border-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.process-step:hover .step-num {
    background-color: var(--color-lima-accent);
    color: var(--color-dark-bg);
    box-shadow: 0 0 15px var(--color-lima-accent);
}

.step-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.step-text {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ── 15. TESTIMONIALS SECTION ── */
.testimonial-honest-box {
    border: 1px solid var(--color-border-line);
    padding: 60px 40px;
    border-radius: var(--border-radius-tech);
    background-color: var(--color-text-light);
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.honest-icon {
    color: var(--color-primary-blue);
}

.honest-title {
    font-size: 24px;
    text-transform: uppercase;
}

.honest-desc {
    font-size: 15px;
    max-width: 700px;
    color: var(--color-text-dark);
}

/* ── 16. BLOG SECTION ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-line);
    padding: 40px;
    border-radius: var(--border-radius-tech);
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    border-color: var(--color-primary-blue);
    box-shadow: 0 10px 30px rgba(20, 100, 200, 0.08);
}

.blog-category {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-title {
    font-size: 20px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--color-text-dark);
    flex-grow: 1;
}

.blog-readmore {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-blue);
    text-transform: uppercase;
}

/* ── 17. FINAL CTA PRE-RODAPÉ ── */
.final-cta-section {
    position: relative;
    background-color: var(--color-primary-blue);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ── 18. MAIN FOOTER ── */
.main-footer {
    background-color: var(--color-dark-bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--color-border-line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.8fr) 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-muted);
}

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

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-contact-info a:hover {
    color: var(--color-lima-accent);
}

.brand-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 20px 0;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
}

.social-links a:hover {
    background-color: var(--color-lima-accent);
    color: var(--color-dark-bg);
    border-color: var(--color-lima-accent);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-line);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

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

/* ── 19. INTERACTIVE FLOATING ELEMENTS ── */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--border-radius-tech);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
    white-space: nowrap;
    border: 1px solid var(--color-border-line);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ── 20. COOKIE CONSENT BANNER RGPD ── */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background-color: var(--color-dark-bg);
    border: 1px solid var(--color-border-line);
    padding: 25px 30px;
    border-radius: var(--border-radius-tech);
    width: 100%;
    max-width: 420px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    animation: slideUp 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* ── 21. PREMIUM INTERACTIVE MODALS ── */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-primary-blue);
    border-radius: var(--border-radius-tech);
    width: 100%;
    max-width: 680px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    max-height: 90vh;
    overflow-y: auto;
    animation: zoomIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-card.modal-large {
    max-width: 960px;
}

.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: var(--color-text-muted);
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--color-primary-blue);
}

.modal-footer-box {
    border-top: 1px solid var(--color-border-line);
    margin-top: 40px;
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* Simulator Form Styling */
.progress-bar-box {
    margin: 20px 0 40px;
}

.progress-indicator {
    height: 4px;
    background-color: var(--color-primary-blue);
    transition: var(--transition-smooth);
}

.progress-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary-blue);
    margin-top: 10px;
    text-transform: uppercase;
}

.step-pane {
    display: none;
}

.step-pane.active {
    display: block;
}

.step-heading {
    font-size: 28px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.step-subheading {
    font-size: 14px;
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.step-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.opt-card {
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
    padding: 25px;
    display: flex;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.opt-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.opt-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opt-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark-bg);
}

.opt-desc {
    font-size: 12px;
    color: var(--color-text-dark);
}

.opt-card:has(input:checked) {
    border-color: var(--color-primary-blue);
    background-color: rgba(20, 100, 200, 0.05);
}

.opt-card:has(input:checked) .opt-title {
    color: var(--color-primary-blue);
}

.simulator-controls {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.form-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

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

.form-field label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-dark-bg);
}

.form-field input,
.form-field select {
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
    padding: 12px 18px;
    font-family: var(--font-body);
    font-size: 14px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--color-primary-blue);
}

.form-checkbox {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 12px;
    color: var(--color-text-dark);
    line-height: 1.4;
}

/* Success Simulator Pane */
.simulator-success-pane {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-lima-accent);
    color: var(--color-dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

.success-heading {
    font-size: 24px;
    text-transform: uppercase;
}

.success-intro {
    font-size: 15px;
    color: var(--color-text-dark);
}

.price-range-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: var(--color-text-light);
    border: 1px solid var(--color-border-line);
    padding: 20px 40px;
    border-radius: var(--border-radius-tech);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-blue);
}

.price-separator {
    font-size: 14px;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.success-note {
    background-color: rgba(20, 100, 200, 0.05);
    border-left: 3px solid var(--color-primary-blue);
    padding: 20px;
    border-radius: var(--border-radius-tech);
    text-align: left;
}

.success-note p {
    font-size: 13px;
    line-height: 1.5;
}

/* Blog Modal Inner Styling */
.blog-modal-title {
    font-size: 36px;
    text-transform: uppercase;
    margin: 15px 0 30px;
    line-height: 1.15;
}

.blog-modal-body {
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 20px;
}

.blog-modal-body p {
    font-size: 15px;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.blog-modal-body h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin: 30px 0 15px;
}

.blog-modal-body ul {
    margin: 0 0 20px 20px;
}

.blog-modal-body li {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Project Modal Inner Styling */
.project-modal-title {
    font-size: 36px;
    text-transform: uppercase;
    margin: 15px 0 30px;
}

.project-modal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.project-main-image {
    width: 100%;
    height: 320px;
    border: 1px solid var(--color-border-line);
    border-radius: var(--border-radius-tech);
}

.specs-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-primary-blue);
}

.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.specs-list li {
    font-size: 14px;
    border-bottom: 1px solid var(--color-border-line);
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.project-modal-desc-box {
    margin-top: 40px;
}

.desc-heading {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-primary-blue);
}

/* ── 22. SCROLL PROGRESS BAR ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(to right, var(--color-primary-blue), var(--color-lima-accent));
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 6px rgba(160, 220, 40, 0.5);
}

/* ── 23. HERO BLUEPRINT OVERLAY ANIMATION ── */
.hero-blueprint-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-grid-svg { width: 100%; height: 100%; }

.grid-line-h {
    stroke: rgba(20, 100, 200, 0.2);
    stroke-width: 1;
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: draw-line-h 3s ease-out forwards;
}
.grid-line-h:nth-child(1) { animation-delay: 0.1s; }
.grid-line-h:nth-child(2) { animation-delay: 0.3s; }
.grid-line-h:nth-child(3) { animation-delay: 0.5s; }
.grid-line-h:nth-child(4) { animation-delay: 0.7s; }
.grid-line-h:nth-child(5) { animation-delay: 0.9s; }

.grid-line-v {
    stroke: rgba(20, 100, 200, 0.12);
    stroke-width: 1;
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: draw-line-v 2.5s ease-out forwards;
}
.grid-line-v:nth-child(6)  { animation-delay: 0.2s; }
.grid-line-v:nth-child(7)  { animation-delay: 0.4s; }
.grid-line-v:nth-child(8)  { animation-delay: 0.6s; }
.grid-line-v:nth-child(9)  { animation-delay: 0.8s; }
.grid-line-v:nth-child(10) { animation-delay: 1.0s; }

.corner-mark line {
    stroke: rgba(160, 220, 40, 0.5);
    stroke-width: 1.5;
}

@keyframes draw-line-h {
    0%   { stroke-dashoffset: 1400; opacity: 0; }
    8%   { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes draw-line-v {
    0%   { stroke-dashoffset: 700; opacity: 0; }
    8%   { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

/* Scanner beam */
.hero-scanner {
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(20, 100, 200, 0.0) 20%,
        rgba(20, 100, 200, 0.7) 48%,
        rgba(160, 220, 40, 0.4) 52%,
        rgba(20, 100, 200, 0.0) 80%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
    animation: hero-scan 10s ease-in-out 1.8s infinite;
}
@keyframes hero-scan {
    0%   { top: -4px; opacity: 0; }
    3%   { opacity: 1; }
    97%  { opacity: 0.5; }
    100% { top: 100vh; opacity: 0; }
}

/* Hero label and content appear animations */
.hero-label-appear  { animation: fade-up 0.8s ease 0.3s both; }
.hero-title-appear  { animation: fade-up 0.9s ease 0.5s both; }
.hero-lead-appear   { animation: fade-up 0.9s ease 0.7s both; }
.hero-actions-appear{ animation: fade-up 0.9s ease 0.9s both; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero coordinates */
.hero-coordinates {
    position: absolute;
    bottom: 116px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: fade-up 1s ease 1.2s both;
}
.coord-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.coord-sep {
    font-family: var(--font-heading);
    font-size: 10px;
    color: rgba(20, 100, 200, 0.6);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    animation: fade-up 1s ease 1.5s both;
}
.scroll-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}
.scroll-line-anim {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--color-primary-blue), transparent);
    animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50%       { opacity: 1;   transform: scaleY(1); }
}

/* About image technical note */
.about-tech-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--color-border-line);
    border-top: none;
    background-color: var(--color-text-light);
}
.tech-note-code {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.tech-note-coord {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--color-primary-blue);
    letter-spacing: 0.05em;
}

/* ── 24. PROJECT TICKER BAND ── */
.project-ticker {
    background-color: var(--color-primary-blue);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ticker-track {
    padding: 13px 0;
    white-space: nowrap;
    overflow: hidden;
}
.ticker-items {
    display: inline-flex;
    gap: 64px;
    animation: ticker-scroll 50s linear infinite;
}
.ticker-item {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.ticker-item::before {
    content: '●';
    color: var(--color-lima-accent);
    margin-right: 10px;
}
.ticker-sep {
    font-family: var(--font-heading);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3em;
}
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── 25. MANIFESTO SECTION ── */
.manifesto-section {
    background-color: var(--color-dark-bg);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}
.manifesto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.manifesto-quote-mark {
    font-family: var(--font-heading);
    font-size: 220px;
    font-weight: 800;
    color: rgba(20, 100, 200, 0.1);
    line-height: 0.75;
    margin-bottom: -50px;
    position: relative;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}
.manifesto-quote {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 0 40px 0;
    border: none;
    padding: 0;
    font-style: normal;
}
.manifesto-quote em {
    font-style: normal;
    color: var(--color-lima-accent);
    position: relative;
}
.manifesto-quote em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-lima-accent);
    opacity: 0.5;
}
.manifesto-cite {
    display: flex;
    align-items: center;
    gap: 20px;
    font-style: normal;
    position: relative;
    z-index: 1;
}
.cite-separator {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-lima-accent);
    flex-shrink: 0;
}
.manifesto-cite cite {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-style: normal;
}
.manifesto-dimension {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.dim-line-v {
    width: 1px;
    height: 70px;
    background: var(--color-border-line);
    position: relative;
}
.dim-line-v::before,
.dim-line-v::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 1px;
    background: var(--color-border-line);
}
.dim-line-v::before { top: 0; }
.dim-line-v::after  { bottom: 0; }
.dim-label {
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: rgba(138, 153, 173, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ── 26. IMPLANTATION / NETWORK MAP ── */
.implantation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.coverage-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.coverage-item {
    display: grid;
    grid-template-columns: 12px 140px 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border-line);
}
.coverage-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}
.coverage-dot.primary {
    background-color: var(--color-lima-accent);
    box-shadow: 0 0 10px rgba(160, 220, 40, 0.5);
}
.coverage-dot.secondary {
    background-color: var(--color-primary-blue);
}
.coverage-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}
.coverage-place {
    font-size: 14px;
    color: var(--color-white);
}
.implantation-map-box { position: relative; }
.network-svg { width: 100%; }
.map-caption {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 500;
    color: rgba(138, 153, 173, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Network SVG styles */
.network-line {
    stroke: rgba(20, 100, 200, 0.4);
    stroke-width: 1;
    stroke-dasharray: 4 3;
}
.network-pulse-outer {
    transform-origin: 244px 188px;
    animation: pulse-node 3s ease-in-out infinite;
}
@keyframes pulse-node {
    0%, 100% { opacity: 0.9; transform: scale(1); }
    50%       { opacity: 0.2; transform: scale(1.4); }
}
.network-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    fill: var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.network-label-home {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 600;
    fill: rgba(160, 220, 40, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.network-label-city {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.network-label-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    fill: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.network-label-far {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    fill: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.network-distance {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    fill: rgba(138, 153, 173, 0.7);
    letter-spacing: 0.03em;
}

/* ── 27. TEAM SECTION ── */
.team-header {
    max-width: 700px;
    margin-bottom: 60px;
}
.team-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.team-card {
    border: 1px solid var(--color-border-line);
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--color-white);
}
.team-card:hover {
    border-color: var(--color-primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20, 100, 200, 0.1);
}
.team-card.featured {
    border-color: rgba(20, 100, 200, 0.4);
}
.team-img-box {
    position: relative;
    height: 180px;
    background-color: rgba(20, 100, 200, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.team-card.featured .team-img-box { height: 320px; }

/* Foto real — card do fundador */
.team-photo-fill {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    transition: transform 6s ease-in-out;
}
.team-card.featured:hover .team-photo-fill {
    transform: scale(1.04);
}
.team-photo-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(13,27,42,0.06) 0%, transparent 35%, rgba(13,27,42,0.52) 100%),
        repeating-linear-gradient(0deg, rgba(20,100,200,0.028) 0px, rgba(20,100,200,0.028) 1px, transparent 1px, transparent 4px);
}

.ghost-img {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 4px,
        rgba(20, 100, 200, 0.04) 4px,
        rgba(20, 100, 200, 0.04) 8px
    );
}
.team-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--color-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    border: 2px solid rgba(160, 220, 40, 0.5);
    position: relative;
    z-index: 1;
}
.team-card.featured .team-avatar-placeholder { width: 84px; height: 84px; font-size: 26px; }
.team-avatar-placeholder.ghost {
    background-color: rgba(20, 100, 200, 0.08);
    border: 1px dashed rgba(20, 100, 200, 0.3);
    color: var(--color-text-muted);
    font-size: 18px;
}
.team-badge-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background-color: rgba(13, 27, 42, 0.85);
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: var(--color-lima-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-top: 1px solid var(--color-border-line);
}
.ghost-badge {
    color: var(--color-text-muted);
}
.team-info { padding: 24px; }
.team-name {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-primary-blue) !important;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.team-name.placeholder-name {
    color: var(--color-text-muted) !important;
    font-size: 15px;
}
.team-role-desc {
    font-size: 13px;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 16px;
}
.team-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.team-spec {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 700;
    color: var(--color-primary-blue);
    background-color: rgba(20, 100, 200, 0.06);
    border: 1px solid var(--color-border-line);
    padding: 4px 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
/* ── TRIBUTE CARD — Carlos Pessoa v2 ── */

/* Card shell */
.tribute-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(1, 112, 230, 0.25) !important;
    background: #ffffff;
    padding: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
}
.tribute-card-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border-radius: 0;
}
.tribute-card:hover {
    transform: translateY(-4px);
}

/* Photo wrap */
.tribute-photo-wrap {
    position: relative;
    width: 100%;
    height: 265px;
    overflow: hidden;
}
.tribute-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 62% top;
    background-repeat: no-repeat;
    transition: transform 6s ease-in-out;
}
.tribute-card:hover .tribute-photo-bg {
    transform: scale(1.03);
}
/* Gradiente suave só nos últimos 60px — para o badge ser legível */
.tribute-photo-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0,6,18,0.55));
    z-index: 1;
    pointer-events: none;
}
.tribute-photo-badge { z-index: 2; }

/* Quote overlay — sem fundo escuro */
.tribute-quote-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 58%;
    min-height: 250px;
    padding: 20px 16px 0 20px;
    background: transparent;
    pointer-events: none;
}
.tribute-quote-mark {
    display: block;
    font-size: 32px;
    color: #0170e6;
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.tribute-quote-text {
    font-size: 11.5px;
    line-height: 1.72;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0,0,0,0.65), 0 0 12px rgba(0,0,0,0.4);
}
.tq-accent { color: #0170e6; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.tribute-quote-line {
    width: 26px; height: 2px;
    background: #0170e6;
    border-radius: 1px;
    margin-top: 12px;
}

/* Photo badge */
.tribute-photo-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(4, 12, 30, 0.92);
    border-top: 1px solid rgba(1, 112, 230, 0.32);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tpbadge-icon { width: 14px; height: 14px; color: #0170e6; flex-shrink: 0; }
.tpbadge-primary {
    font-family: var(--font-heading);
    font-size: 8.5px; font-weight: 800;
    color: #0170e6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.tpbadge-sep { color: rgba(1,112,230,0.38); font-size: 10px; margin: 0 3px; flex-shrink: 0; }
.tpbadge-secondary {
    font-family: var(--font-heading);
    font-size: 8px; font-weight: 500;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Info section */
.tribute-info-section { padding: 20px 20px 22px; background: #fff; }

.tribute-name-wrap { margin-bottom: 14px; }
.tribute-name-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 800;
    color: #0D1B2A;
    letter-spacing: 0.02em;
    margin: 0 0 7px;
    text-transform: uppercase;
}
.tribute-name-line { width: 26px; height: 3px; background: #0170e6; border-radius: 2px; }

.tribute-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}
.tribute-desc-text {
    font-family: var(--font-body);
    font-size: 13px; line-height: 1.6;
    color: #3a4a5a; margin: 0;
}
.tribute-desc-text strong { color: #0D1B2A; font-weight: 700; }

/* Badges em linha horizontal */
.tribute-specs-col {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: stretch;
}
.tribute-spec-box {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    gap: 6px;
    padding: 10px 4px 8px;
    border: 1px solid rgba(1,112,230,0.22);
    border-radius: 8px;
    background: rgba(1,112,230,0.03);
    text-align: center;
    min-width: 0;
}
.tribute-spec-icon { width: 22px; height: 22px; color: #0170e6; display: block; flex-shrink: 0; }
.tribute-spec-label {
    font-family: var(--font-heading);
    font-size: 7px; font-weight: 700;
    color: #0170e6;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}

/* Footer */
.tribute-footer-row {
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(1,112,230,0.1);
}
.tribute-legacy-block { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.tribute-heart-wrap {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(1,112,230,0.10);
    display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
}
.tribute-heart-wrap svg { width: 20px; height: 20px; }
.tribute-legacy-block p {
    font-family: var(--font-body);
    font-size: 12px; line-height: 1.45;
    color: #3a4a5a; margin: 0;
}
.tribute-legado-link { color: #0170e6; font-weight: 700; }
.tribute-sig {
    font-family: 'Alex Brush', cursive;
    font-size: 38px; font-weight: 400;
    color: #1648c8;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.team-note {
    margin-top: 40px;
    text-align: center;
}

/* ── 28. REVEAL SCROLL ANIMATIONS ── */
.reveal-element {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-element.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-element:nth-child(2) { transition-delay: 0.08s; }
.reveal-element:nth-child(3) { transition-delay: 0.16s; }
.reveal-element:nth-child(4) { transition-delay: 0.24s; }
.reveal-element:nth-child(5) { transition-delay: 0.32s; }
.reveal-element:nth-child(6) { transition-delay: 0.40s; }

/* ── 29. PORTFOLIO IMAGE ZOOM ON HOVER ── */
.card-img-box {
    overflow: hidden;
}
.card-img-box .img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.portfolio-card:hover .card-img-box {
    filter: brightness(1.05);
}

/* ── PORTFOLIO CARD VISUAL IDENTITIES ── */
/* Grid overlay em todos os cards */
.card-img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(20,100,200,0.06) 0px, rgba(20,100,200,0.06) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(90deg, rgba(20,100,200,0.06) 0px, rgba(20,100,200,0.06) 1px, transparent 1px, transparent 50px);
    z-index: 1;
    pointer-events: none;
}
/* Glyph tipográfico único de cada card */
.card-tech-glyph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 104px;
    font-weight: 800;
    letter-spacing: -0.05em;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    opacity: 0.07;
    color: var(--color-white);
    transition: opacity 0.4s ease;
}
.portfolio-card:hover .card-tech-glyph { opacity: 0.12; }

/* Nota de canto estilo blueprint */
.card-corner-note {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    z-index: 3;
    background: rgba(0,0,0,0.3);
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}
/* Crosshair corners nos cards */
.card-crosshair {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 16px;
    height: 16px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.4;
}
.card-crosshair::before,
.card-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(160, 220, 40, 0.7);
}
.card-crosshair::before { width: 1px; height: 100%; left: 50%; top: 0; }
.card-crosshair::after  { width: 100%; height: 1px; top: 50%; left: 0; }

/* Backgrounds únicos por categoria */
.card-bg-lsf {
    background: linear-gradient(148deg, #07152a 0%, #0c2545 45%, #1464C8 140%);
}
.card-bg-residencial {
    background: linear-gradient(148deg, #0d1626 0%, #1a2e4a 55%, #253d60 100%);
}
.card-bg-modular {
    background: linear-gradient(148deg, #071510 0%, #0e2418 55%, #1b3c24 100%);
}
.card-bg-reabilitacao {
    background: linear-gradient(148deg, #1c0e05 0%, #2e1e08 50%, #3c2a0e 100%);
}
.card-bg-comercial {
    background: linear-gradient(148deg, #06091a 0%, #0e1835 55%, #122248 100%);
}
.card-bg-industrial {
    background: linear-gradient(148deg, #070a12 0%, #0e1622 55%, #162030 100%);
}

/* CTA overlay: remover screenshot */
.cta-bg-overlay {
    background-image:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
    background-size: auto, 60px 60px, 60px 60px;
    opacity: 1;
}

/* ── 22. RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1200px) {
    .about-grid, .lsf-grid, .modular-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .process-timeline::before { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .implantation-grid { gap: 40px; }
}

@media (max-width: 991px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: block; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-aside { display: none; }
    .about-grid, .lsf-grid, .modular-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .stat-box { border-bottom: 1px solid var(--color-border-line); }
    .stat-box:nth-child(2) { border-right: none; }
    .stat-box:nth-child(3), .stat-box:nth-child(4) { border-bottom: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-col { grid-column: span 2; }
    /* manifesto-quote usa clamp() — sem override necessário */
    .manifesto-container { padding: 0 40px; }
    .manifesto-dimension { display: none; }
    .implantation-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .hero-lead { font-size: 15px; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; }
    .services-grid, .portfolio-grid, .blog-grid, .process-timeline { grid-template-columns: 1fr; }
    .blueprint-tech-grid { grid-template-columns: 1fr; }
    .tech-isometric-draw { height: 180px; }
    .step-options-grid, .form-group-grid { grid-template-columns: 1fr; }
    .modal-card { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-col { grid-column: span 1; }
    .cookie-banner { left: 10px; bottom: 10px; width: calc(100% - 20px); }
    .project-modal-grid { grid-template-columns: 1fr; }
    .manifesto-section { padding: 80px 0; }
    .manifesto-quote-mark { font-size: 130px; }
    .manifesto-container { padding: 0 24px; }
    .hero-coordinates { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .coverage-item { grid-template-columns: 12px 1fr; }
    .coverage-label { display: none; }
}
