:root {
    --bg-1: #f1f3f4;
    --bg-2: #d7dcdf;
    --graphite: #121619;
    --graphite-2: #1d2327;
    --graphite-3: #2f363b;
    --text: #182126;
    --muted: #5b676d;
    --line: rgba(18, 22, 25, 0.12);
    --blue: #075f75;
    --blue-light: #16a1bd;
    --yellow: #f3c33f;
    --orange: #ef7626;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(18, 22, 25, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background:
        linear-gradient(90deg, rgba(7, 95, 117, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 12% 8%, rgba(22, 161, 189, 0.16), transparent 26%),
        radial-gradient(circle at 86% 20%, rgba(243, 195, 63, 0.14), transparent 24%),
        linear-gradient(145deg, var(--bg-1) 0%, var(--bg-2) 52%, #bdc4c8 100%);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.36) 58% 58.2%, transparent 58.2%),
        radial-gradient(ellipse at center, transparent 48%, rgba(18, 22, 25, 0.08) 100%);
}

a {
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(18, 22, 25, 0.08);
    box-shadow: 0 14px 40px rgba(18, 22, 25, 0.08);
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 7px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
}

.container {
    width: 100%;
    height: 138px;
    margin: 0;
    padding: 0 clamp(18px, 2.6vw, 48px) 0 clamp(10px, 1.8vw, 34px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(32px, 5vw, 96px);
}

.brand-lockup {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    flex: 0 1 auto;
    overflow: hidden;
    border-radius: 10px;
}

.brand-lockup::after {
    content: "";
    position: absolute;
    inset: 8px -20px;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.72) 48%, transparent 58%);
    mix-blend-mode: screen;
    opacity: 0;
    transform: translateX(-135%) skewX(-18deg);
    transition: transform 1.25s ease, opacity 0.35s ease;
}

.brand-lockup:hover::after {
    opacity: 1;
    transform: translateX(135%) skewX(-18deg);
}

.logo {
    width: auto;
    height: 124px;
    max-width: 350px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
    transform: translateX(8px);
}

.header-slogan {
    width: clamp(145px, 15vw, 260px);
    height: auto;
    max-height: 40px;
    object-fit: contain;
    display: block;
    flex: 0 1 auto;
    opacity: 0.82;
    filter: drop-shadow(0 8px 14px rgba(18, 22, 25, 0.08));
    transform: translateY(1px);
    transition: transform 0.24s ease, opacity 0.24s ease, filter 0.24s ease;
}

.brand-lockup:hover .header-slogan {
    opacity: 1;
    filter: drop-shadow(0 12px 18px rgba(18, 22, 25, 0.16));
    transform: translateY(-1px) scale(1.03);
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-left: auto;
    padding: 6px;
    background: rgba(18, 22, 25, 0.045);
    border: 1px solid rgba(18, 22, 25, 0.08);
    border-radius: 8px;
    flex-wrap: wrap;
}

nav a {
    position: relative;
    min-width: 92px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #263239;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

nav a[href*="projeto-3axes"],
nav a[href*="projetos.html"] {
    display: none !important;
}

nav a:hover,
nav a.active {
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 8px 22px rgba(18, 22, 25, 0.08);
}

nav a:hover {
    transform: translateY(-2px);
}

nav a:active {
    transform: translateY(0) scale(0.98);
}

.nav-cta {
    min-width: 104px;
    color: var(--white);
    background: var(--graphite);
}

nav .nav-cta:hover {
    color: var(--white);
    background: var(--blue);
}

main {
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero {
    width: min(1180px, calc(100% - 40px));
    min-height: 640px;
    margin: 0 auto;
    padding: 72px 0 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 54px;
}

.hero-content {
    align-self: start;
    max-width: 650px;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
    content: "";
    width: 34px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    border-radius: 999px;
}

.hero h1 {
    max-width: 780px;
    color: var(--graphite);
    font-size: clamp(40px, 4.9vw, 64px);
    font-weight: 800;
    line-height: 0.98;
}

.hero p {
    max-width: 640px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn,
.btn-secondary,
.btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn::before,
.btn-secondary::before,
.btn-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 56%);
    transform: translateX(-120%);
    transition: transform 0.45s ease;
}

.btn:hover::before,
.btn-secondary:hover::before,
.btn-whatsapp:hover::before {
    transform: translateX(120%);
}

.btn {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #043a47);
    box-shadow: 0 16px 34px rgba(7, 95, 117, 0.22);
}

.btn-secondary {
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 22, 25, 0.12);
}

.btn:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(18, 22, 25, 0.14);
    filter: brightness(1.04);
}

.btn:active,
.btn-secondary:active,
.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
}

.btn:focus-visible,
.btn-secondary:focus-visible,
.btn-whatsapp:focus-visible,
nav a:focus-visible,
.home-links a:focus-visible,
.info-list a:focus-visible {
    outline: 3px solid rgba(22, 161, 189, 0.45);
    outline-offset: 3px;
}

.page-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.profile-showcase {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 26px 34px 136px;
    background:
        radial-gradient(circle at 50% 28%, rgba(22, 161, 189, 0.3), transparent 30%),
        linear-gradient(90deg, rgba(22, 161, 189, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 161, 189, 0.08) 1px, transparent 1px),
        linear-gradient(160deg, rgba(47, 54, 59, 0.98), rgba(18, 22, 25, 0.98));
    background-size: auto, 38px 38px, 38px 38px, auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.profile-showcase::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.profile-showcase::after {
    content: "0101  ENGINEERING  DATA_BUS  SYSTEM_IO  1100";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 28px;
    color: rgba(225, 238, 241, 0.42);
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}

.profile-circuit {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.profile-circuit::before,
.profile-circuit::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    opacity: 0.7;
}

.profile-circuit::before {
    left: 10%;
    top: 38%;
    width: 80%;
    height: 2px;
}

.profile-circuit::after {
    left: 24%;
    top: 18%;
    width: 2px;
    height: 62%;
    background: linear-gradient(180deg, transparent, var(--yellow), transparent);
}

.profile-circuit span {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 7px rgba(22, 161, 189, 0.14), 0 0 28px rgba(22, 161, 189, 0.52);
}

.profile-circuit span:nth-child(1) {
    left: 23%;
    top: 37%;
}

.profile-circuit span:nth-child(2) {
    right: 18%;
    top: 37%;
    background: var(--yellow);
}

.profile-circuit span:nth-child(3) {
    left: 23%;
    bottom: 22%;
    background: var(--orange);
}

.profile-circuit span:nth-child(4) {
    right: 26%;
    bottom: 28%;
}

.profile-photo-wrap {
    position: relative;
    z-index: 2;
    width: min(390px, 100%);
    height: 482px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.profile-photo-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 78%;
    height: 34px;
    background: rgba(0, 0, 0, 0.34);
    border-radius: 50%;
    filter: blur(18px);
    transform: translateX(-50%);
}

.profile-photo-wrap::after {
    content: "";
    position: absolute;
    z-index: 4;
    left: -8%;
    right: -8%;
    bottom: -2px;
    height: 28%;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(18, 22, 25, 0.34) 42%, rgba(18, 22, 25, 0.92) 100%),
        radial-gradient(ellipse at center bottom, rgba(22, 161, 189, 0.14), transparent 58%);
}

.profile-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 482px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
    animation: profileFloat 6s ease-in-out infinite;
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
}

.profile-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 34px;
    z-index: 3;
    padding: 18px 20px;
    color: var(--white);
    background: rgba(18, 22, 25, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.profile-caption strong {
    display: block;
    font-size: 22px;
    line-height: 1.1;
}

.profile-caption span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.42;
    text-align: justify;
    text-indent: 0;
}

.profile-caption span + span {
    margin-top: 9px;
}

.profile-caption span.no-indent {
    text-indent: 0;
}

@keyframes profileFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-12px) scale(1.018);
    }
}

.engineering-panel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(47, 54, 59, 0.96), rgba(18, 22, 25, 0.98)),
        linear-gradient(90deg, rgba(22, 161, 189, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 161, 189, 0.1) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.panel-header {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-header span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
}

.panel-header span:nth-child(2) {
    background: var(--orange);
}

.panel-header span:nth-child(3) {
    background: var(--blue-light);
}

.brand-animation {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(360px, calc(100% - 54px));
    min-height: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: var(--white);
    transform: translate(-50%, -48%);
    animation: panelFloat 5s ease-in-out infinite;
}

.engineering-symbol {
    position: relative;
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
}

.gear-ring {
    position: absolute;
    inset: 10px;
    border: 12px solid rgba(22, 161, 189, 0.84);
    border-radius: 50%;
    box-shadow: 0 0 34px rgba(22, 161, 189, 0.34);
    animation: rotateSymbol 16s linear infinite;
}

.gear-ring::before,
.gear-ring::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 168px;
    height: 18px;
    background: rgba(22, 161, 189, 0.84);
    border-radius: 4px;
    transform: translate(-50%, -50%);
}

.gear-ring::after {
    width: 18px;
    height: 168px;
}

.chip-core {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(145deg, #263037, #111719);
    background-size: 12px 12px, 12px 12px, auto;
    border: 2px solid rgba(246, 195, 63, 0.88);
    border-radius: 8px;
    box-shadow: 0 0 0 8px rgba(246, 195, 63, 0.08), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.chip-core::before {
    content: "</>";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--yellow);
    font-family: "Courier New", monospace;
    font-size: 18px;
    font-weight: 800;
}

.trace {
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: 0.82;
}

.trace-a,
.trace-b {
    width: 86px;
    height: 2px;
}

.trace-a {
    left: -18px;
    top: 50%;
}

.trace-b {
    right: -18px;
    top: 50%;
}

.trace-c,
.trace-d {
    width: 2px;
    height: 86px;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
}

.trace-c {
    left: 50%;
    top: -18px;
}

.trace-d {
    left: 50%;
    bottom: -18px;
}

.animated-copy {
    max-width: 330px;
    text-align: center;
    animation: copyReveal 1.1s ease both;
}

.animated-copy strong {
    display: block;
    color: var(--white);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.animated-copy span {
    display: block;
    margin-top: 12px;
    color: rgba(225, 238, 241, 0.78);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes rotateSymbol {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes panelFloat {
    0%,
    100% {
        transform: translate(-50%, -48%);
    }

    50% {
        transform: translate(-50%, -52%);
    }
}

@keyframes copyReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    opacity: 0.75;
}

.line-a {
    left: 12%;
    top: 39%;
    width: 76%;
    height: 2px;
}

.line-b {
    left: 28%;
    top: 22%;
    width: 2px;
    height: 58%;
    background: linear-gradient(180deg, transparent, var(--yellow), transparent);
}

.line-c {
    right: 24%;
    top: 25%;
    width: 2px;
    height: 54%;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 6px rgba(22, 161, 189, 0.14), 0 0 26px rgba(22, 161, 189, 0.56);
}

.node-a {
    left: 27%;
    top: 38%;
}

.node-b {
    right: 23%;
    top: 38%;
}

.node-c {
    right: 23%;
    bottom: 20%;
    background: var(--orange);
}

.binary-code {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: rgba(225, 238, 241, 0.56);
    font-family: "Courier New", monospace;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 1px;
}

.metrics {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(18, 22, 25, 0.1);
}

.metrics div {
    padding: 26px 28px;
    border-right: 1px solid rgba(18, 22, 25, 0.09);
}

.metrics div:last-child {
    border-right: 0;
}

.metrics strong {
    display: block;
    color: var(--graphite);
    font-size: 18px;
}

.metrics span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
}

.location-section {
    width: min(1180px, calc(100% - 40px));
    margin: 24px auto 92px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    align-items: stretch;
}

.map-panel,
.location-info {
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(18, 22, 25, 0.1);
}

.map-panel {
    background: var(--graphite);
    border: 1px solid rgba(18, 22, 25, 0.1);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    border: 0;
    filter: grayscale(0.18) contrast(1.04);
}

.location-info {
    padding: 38px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 243, 244, 0.76)),
        linear-gradient(90deg, rgba(7, 95, 117, 0.08) 1px, transparent 1px);
    background-size: auto, 38px 38px;
    border: 1px solid rgba(18, 22, 25, 0.1);
}

.location-info h2 {
    color: var(--graphite);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
}

.location-info p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.info-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.info-list a,
.info-list strong {
    display: block;
    padding: 13px 15px;
    color: var(--graphite);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(18, 22, 25, 0.09);
    border-radius: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.info-list a:hover {
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 12px 26px rgba(18, 22, 25, 0.1);
    transform: translateX(4px);
}

.page-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0 58px;
}

.about-page-hero {
    padding-top: 72px;
}

.services-page-hero {
    padding-top: 72px;
}

.services-page-hero + .services-cards-section {
    margin-top: -34px;
}

.contact-page-hero {
    padding-top: 72px;
}

.page-hero h1 {
    max-width: 960px;
    color: var(--graphite);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1;
}

.page-hero p {
    max-width: 820px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 19px;
}

.home-links {
    width: min(1180px, calc(100% - 40px));
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-links a,
.system-card {
    position: relative;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(18, 22, 25, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-links a::before,
.system-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
}

.home-links a:hover,
.system-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(18, 22, 25, 0.14);
}

.home-links a:active,
.system-card:active {
    transform: translateY(-2px) scale(0.99);
}

.home-links a:hover strong,
.system-card:hover h3 {
    color: var(--blue);
}

.home-links span,
.system-card .card-index {
    display: inline-block;
    margin-bottom: 34px;
    color: var(--blue);
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 800;
}

.home-links strong,
.system-card h3 {
    display: block;
    color: var(--graphite);
    font-size: 23px;
    line-height: 1.15;
}

.home-links p,
.system-card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
}

.home-video-callout {
    width: min(1180px, calc(100% - 40px));
    margin: 8px auto 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.96), rgba(7, 95, 117, 0.94)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.video-preview {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.video-preview img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    display: block;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.03);
    transition: transform 0.24s ease, filter 0.24s ease;
}

.video-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 22, 25, 0.04), rgba(18, 22, 25, 0.42));
}

.video-preview:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.06);
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

.video-play::before {
    content: "";
    position: absolute;
    left: 31px;
    top: 23px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 21px solid var(--blue);
}

.home-video-copy .section-label {
    color: var(--yellow);
}

.home-video-copy h2 {
    max-width: 640px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
}

.home-video-copy p {
    max-width: 640px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.story-layout {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 92px;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 42px;
    align-items: start;
}

.story-photo-card {
    position: sticky;
    isolation: isolate;
    top: 130px;
    overflow: hidden;
    padding: 28px 28px 24px;
    background:
        radial-gradient(circle at 50% 26%, rgba(22, 161, 189, 0.24), transparent 32%),
        linear-gradient(160deg, rgba(47, 54, 59, 0.98), rgba(18, 22, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-photo-card img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 100%);
}

.story-photo-card img.about-photo {
    filter: grayscale(1) contrast(1.08) drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
}

.juridico-photo-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    background:
        linear-gradient(90deg, rgba(22, 161, 189, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 161, 189, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 50% 26%, rgba(22, 161, 189, 0.22), transparent 32%);
    background-size: 38px 38px, 38px 38px, auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    opacity: 0.9;
    pointer-events: none;
}

.juridico-photo-card::after {
    content: "LEGAL  GOVTECH  CONTRACTS  DATA  0110";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 28px;
    z-index: 1;
    color: rgba(225, 238, 241, 0.4);
    font-family: "Courier New", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
}

.juridico-photo-card img {
    position: relative;
    z-index: 2;
    align-self: center;
    width: min(106%, 390px);
    max-height: 430px;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    mix-blend-mode: normal;
    filter: brightness(1.14) contrast(1.04) saturate(1.02) drop-shadow(0 28px 38px rgba(0, 0, 0, 0.38));
    mask-image: none;
    transform: translateY(64px);
}

.juridico-photo-card strong {
    margin-top: -6px;
}

.juridico-photo-card span {
    text-align: left;
    text-indent: 0;
}

.story-photo-card strong,
.story-photo-card span {
    position: relative;
    z-index: 3;
    display: block;
    color: var(--white);
}

.story-photo-card strong {
    margin-top: -20px;
    font-size: 22px;
}

.story-photo-card span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    line-height: 1.45;
    text-align: justify;
    text-indent: 3em;
}

.story-photo-card.juridico-photo-card span {
    text-align: justify;
    text-indent: 3em;
}

.story-photo-card.juridico-photo-card strong {
    margin-top: 14px;
    padding: 16px 18px 0;
    background: rgba(18, 22, 25, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    position: relative;
    z-index: 4;
}

.story-photo-card.juridico-photo-card span {
    margin-top: 0;
    padding: 8px 18px 16px;
    background: rgba(18, 22, 25, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    position: relative;
    z-index: 4;
}

.story-photo-card span + span {
    margin-top: 10px;
}

.story-content h2 {
    max-width: 760px;
    color: var(--graphite);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.story-content > p {
    max-width: 860px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    text-align: justify;
    text-indent: 2em;
}

.story-content > p.no-indent {
    text-indent: 0;
}

.juridico-content > p.no-indent {
    text-indent: 0 !important;
}

.story-content > p strong {
    color: var(--graphite);
}

.story-content > .story-signature {
    margin-top: 28px;
    padding: 22px 24px;
    color: var(--graphite);
    text-align: left;
    text-indent: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(7, 95, 117, 0.14);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(18, 22, 25, 0.08);
}

.timeline {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.timeline article {
    padding: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(18, 22, 25, 0.08);
}

.timeline span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--blue);
    font-family: "Courier New", monospace;
    font-weight: 800;
}

.timeline strong {
    display: block;
    color: var(--graphite);
    font-size: 20px;
}

.timeline p {
    margin-top: 8px;
    color: var(--muted);
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.system-card strong {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-size: 14px;
}

.project-page-hero {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.project-page-hero > img {
    width: min(360px, 100%);
    justify-self: center;
    filter: drop-shadow(0 18px 28px rgba(18, 22, 25, 0.22));
}

.project-points.standalone {
    margin-top: 34px;
}

.gallery-section {
    width: min(1180px, calc(100% - 40px));
    margin: -24px auto 92px;
}

.gallery-section h2 {
    max-width: 760px;
    color: var(--graphite);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.gallery-grid article {
    min-height: 240px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.88), rgba(7, 95, 117, 0.78)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-grid .student-projects-card {
    min-height: 240px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background:
        linear-gradient(180deg, rgba(18, 22, 25, 0.12), rgba(18, 22, 25, 0.82)),
        linear-gradient(90deg, rgba(7, 95, 117, 0.42), rgba(242, 122, 46, 0.34)),
        url("img/sistemacni.png"),
        url("img/carluxacare.png");
    background-repeat: no-repeat;
    background-position: center left, center center, left center, right center;
    background-size: auto, auto, 50% 100%, 50% 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.gallery-grid .student-projects-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(18, 22, 25, 0.22);
    filter: saturate(1.08);
}

.gallery-grid .student-projects-card span,
.gallery-grid .student-projects-card strong {
    position: relative;
    z-index: 1;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.gallery-grid span {
    color: var(--yellow);
    font-family: "Courier New", monospace;
    font-weight: 800;
}

.gallery-grid strong {
    margin-top: 8px;
    color: var(--white);
    font-size: 22px;
}

.contact-band.page-contact {
    margin: 0 auto 92px;
}

.projects-page-hero {
    padding-bottom: 12px;
}

.axis-list {
    width: min(1180px, calc(100% - 40px));
    margin: 16px auto 56px;
    display: grid;
    gap: 34px;
}

.axis-list + .project-detail-list {
    margin-top: -18px;
}

.axis-item {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 34px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(18, 22, 25, 0.1);
}

.axis-item.reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.axis-item.reverse .axis-image {
    order: 2;
}

.axis-item.reverse .axis-copy {
    order: 1;
}

.axis-image {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 46px rgba(18, 22, 25, 0.18);
}

.axis-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.axis-image img.bovitech-preview {
    width: min(360px, 78%);
    height: auto;
    min-height: 0;
    margin: 34px auto 64px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(18, 22, 25, 0.18));
}

.axis-image img.juritech-preview {
    width: min(340px, 76%);
    height: auto;
    min-height: 0;
    margin: 30px auto 64px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(18, 22, 25, 0.18));
}

.axis-image img.educatech-preview {
    width: min(325px, 72%);
    height: auto;
    min-height: 0;
    margin: 34px auto 72px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(18, 22, 25, 0.2));
}

.axis-image img.farmatech-preview {
    width: min(390px, 82%);
    height: auto;
    min-height: 0;
    margin: 32px auto 70px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 18px 28px rgba(18, 22, 25, 0.2));
}

.axis-image.bovitech-logo-bg {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92), rgba(241, 243, 244, 0.68) 46%, rgba(213, 221, 224, 0.86) 100%),
        linear-gradient(90deg, rgba(7, 95, 117, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.07) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
}

.axis-image.bovitech-logo-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 22, 25, 0.18));
    opacity: 0.5;
}

.axis-image.juritech-logo-bg {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), rgba(241, 243, 244, 0.72) 48%, rgba(213, 221, 224, 0.88) 100%),
        linear-gradient(90deg, rgba(7, 95, 117, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.07) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
}

.axis-image.juritech-logo-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 22, 25, 0.18));
    opacity: 0.5;
}

.axis-image.educatech-logo-bg {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(241, 243, 244, 0.72) 48%, rgba(213, 221, 224, 0.9) 100%),
        linear-gradient(90deg, rgba(7, 95, 117, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.07) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
}

.axis-image.educatech-logo-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 22, 25, 0.18));
    opacity: 0.5;
}

.axis-image.farmatech-logo-bg {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), rgba(241, 243, 244, 0.72) 48%, rgba(213, 221, 224, 0.9) 100%),
        linear-gradient(90deg, rgba(20, 154, 74, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(8, 95, 190, 0.08) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
}

.axis-image.farmatech-logo-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(18, 22, 25, 0.18));
    opacity: 0.5;
}

.axis-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 22, 25, 0.04), rgba(18, 22, 25, 0.64));
    opacity: 0.82;
    transition: opacity 0.25s ease;
}

.axis-image span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 1;
    padding: 9px 13px;
    color: var(--graphite);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border-radius: 999px;
}

.axis-image:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.04);
}

.axis-image:hover::after {
    opacity: 0.58;
}

.axis-education-ai {
    background:
        linear-gradient(180deg, rgba(18, 22, 25, 0.05), rgba(18, 22, 25, 0.72)),
        url("img/educacional.png?v=20260507");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.axis-education-ai::after {
    opacity: 0.62;
}

.axis-education-ai:hover::after {
    opacity: 0.44;
}

.axis-copy h2,
.system-detail-panel h2,
.project-detail-list h2 {
    max-width: 760px;
    color: var(--graphite);
    font-size: clamp(30px, 3.7vw, 46px);
    line-height: 1.08;
}

.axis-copy p,
.system-detail-panel p,
.project-detail-list p {
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 18px;
}

.system-card-detail {
    align-items: start;
}

.system-detail-panel {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    scroll-margin-top: 140px;
    padding-top: 34px;
    border-top: 1px solid rgba(18, 22, 25, 0.1);
}

.system-detail-panel:target {
    display: block;
}

.detail-panel-heading {
    max-width: 820px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.detail-panel-heading a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.detail-panel-heading a:hover {
    color: var(--orange);
}

.system-info-grid {
    max-width: 980px;
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.system-page-content > .system-info-grid {
    max-width: none;
}

.educatech-page-content > .system-info-grid {
    margin-top: 0;
}

.farmatech-page-content > .system-info-grid {
    margin-top: 0;
}

.proposal-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.proposal-card figure {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(18, 22, 25, 0.14);
}

.proposal-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.proposal-card figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    background: rgba(18, 22, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.video-demo-card {
    scroll-margin-top: 150px;
}

.video-frame {
    margin-top: 24px;
    overflow: hidden;
    background: rgba(18, 22, 25, 0.96);
    border: 1px solid rgba(18, 22, 25, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(18, 22, 25, 0.16);
}

.video-frame video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    background: #121619;
}

.system-info-grid article {
    padding: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(18, 22, 25, 0.08);
}

.system-info-grid h3 {
    color: var(--graphite);
    font-size: 18px;
    line-height: 1.2;
}

.system-info-grid p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.impact-highlight {
    max-width: 820px;
    margin-top: 24px;
    padding: 24px;
    display: grid;
    gap: 12px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(7, 95, 117, 0.14);
    border-radius: 8px;
}

.impact-highlight strong {
    color: var(--graphite);
    font-size: 18px;
}

.impact-highlight span {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.impact-money-callout {
    max-width: 820px;
    margin-top: 24px;
    padding: 28px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(135deg, rgba(7, 95, 117, 0.96), rgba(18, 22, 25, 0.96)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(7, 95, 117, 0.22);
}

.impact-money-callout span {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.impact-money-callout strong {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1;
}

.impact-money-callout p {
    max-width: 620px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.farmatech-callout {
    background:
        linear-gradient(135deg, rgba(19, 142, 72, 0.96), rgba(7, 95, 117, 0.96)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
}

.educatech-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.educatech-gallery figure {
    position: relative;
    min-height: 230px;
    overflow: hidden;
    background: rgba(18, 22, 25, 0.06);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(18, 22, 25, 0.1);
}

.educatech-gallery .featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 476px;
}

.educatech-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}

.farmatech-gallery img {
    object-position: center center;
}

.educatech-gallery figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 10px 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    background: rgba(18, 22, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.project-detail-list {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 92px;
    display: grid;
    gap: 22px;
}

.project-detail-list article {
    scroll-margin-top: 150px;
    padding: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 243, 244, 0.76)),
        linear-gradient(90deg, rgba(7, 95, 117, 0.08) 1px, transparent 1px);
    background-size: auto, 38px 38px;
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(18, 22, 25, 0.1);
}

.section-block {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 92px 0;
}

.services-cards-section {
    padding-top: 0;
}

.section-block h2,
.contact-band h2 {
    max-width: 760px;
    color: var(--graphite);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.section-block p,
.contact-band p {
    max-width: 760px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.project-3axes {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 10px auto 24px;
    padding: 52px;
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 243, 244, 0.78)),
        linear-gradient(90deg, rgba(7, 95, 117, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.06) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(18, 22, 25, 0.13);
}

.page-project {
    margin-top: 84px;
}

.project-3axes::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, #9cc91b, var(--blue-light), var(--orange));
}

.project-3axes::after {
    content: "EDUCAÇÃO  •  TECNOLOGIA  •  INFORMÁTICA  •  PROJETO PEDAGÓGICO";
    position: absolute;
    right: 28px;
    top: 24px;
    color: rgba(18, 22, 25, 0.18);
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.project-visual {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(22, 161, 189, 0.32), transparent 32%),
        radial-gradient(circle at 78% 72%, rgba(243, 195, 63, 0.16), transparent 28%),
        linear-gradient(90deg, rgba(22, 161, 189, 0.1) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 161, 189, 0.08) 1px, transparent 1px),
        linear-gradient(160deg, rgba(47, 54, 59, 0.98), rgba(18, 22, 25, 0.98));
    background-size: auto, auto, 38px 38px, 38px 38px, auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.project-visual::before,
.project-visual::after {
    content: "";
    position: absolute;
}

.project-visual::before {
    inset: 24px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.project-visual::after {
    left: 26px;
    right: 26px;
    bottom: -2px;
    z-index: 3;
    height: 42%;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 0%, rgba(18, 22, 25, 0.34) 42%, rgba(18, 22, 25, 0.92) 100%),
        radial-gradient(ellipse at center bottom, rgba(22, 161, 189, 0.16), transparent 58%);
}

.project-circuit {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.project-circuit::before,
.project-circuit::after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
    opacity: 0.7;
}

.project-circuit::before {
    left: 10%;
    top: 42%;
    width: 80%;
    height: 2px;
}

.project-circuit::after {
    left: 28%;
    top: 18%;
    width: 2px;
    height: 62%;
    background: linear-gradient(180deg, transparent, var(--yellow), transparent);
}

.project-circuit span {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 7px rgba(22, 161, 189, 0.14), 0 0 28px rgba(22, 161, 189, 0.52);
}

.project-circuit span:nth-child(1) {
    left: 27%;
    top: 40%;
}

.project-circuit span:nth-child(2) {
    right: 18%;
    top: 40%;
    background: var(--yellow);
}

.project-circuit span:nth-child(3) {
    left: 27%;
    bottom: 20%;
    background: var(--orange);
}

.project-circuit span:nth-child(4) {
    right: 26%;
    bottom: 27%;
}

.project-visual img {
    position: relative;
    z-index: 2;
    width: min(520px, 160%);
    height: auto;
    filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.36));
    animation: projectLogoFloat 6s ease-in-out infinite;
    mask-image: linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.82) 88%, transparent 100%);
}

@keyframes projectLogoFloat {
    0%,
    100% {
        transform: translateX(18px) translateY(0) scale(1);
    }

    50% {
        transform: translateX(18px) translateY(-12px) scale(1.018);
    }
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-content h2 {
    max-width: 760px;
    color: var(--graphite);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.project-content p {
    max-width: 760px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.project-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.project-points article {
    min-height: 158px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 22, 25, 0.09);
    border-radius: 8px;
}

.project-points strong {
    display: block;
    color: var(--graphite);
    font-size: 16px;
    line-height: 1.2;
}

.project-points span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(18, 22, 25, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
}

.card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(7, 95, 117, 0.16);
    border-radius: 50%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(18, 22, 25, 0.14);
}

.card-link:hover h3 {
    color: var(--blue);
}

.card-index {
    display: inline-block;
    margin-bottom: 38px;
    color: var(--blue);
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 800;
}

.card h3 {
    color: var(--graphite);
    font-size: 23px;
    line-height: 1.15;
}

.card p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
}

.education-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
    gap: 42px;
    align-items: start;
}

.education-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.education-hero h1 {
    max-width: 820px;
    color: var(--graphite);
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 800;
    line-height: 1;
}

.education-hero p {
    max-width: 760px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 19px;
}

.education-hero-visual {
    position: relative;
    width: min(455px, 100%);
    min-height: 0;
    justify-self: end;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.18), rgba(7, 95, 117, 0.28)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 243, 244, 0.72));
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.education-hero-visual::after {
    content: "IA  •  EDUCACAO  •  INDUSTRIA 4.0";
    position: absolute;
    left: 24px;
    top: 22px;
    z-index: 1;
    padding: 10px 14px;
    color: var(--graphite);
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border-radius: 999px;
}

.education-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.04) contrast(1.02);
}

.education-focus {
    width: min(1180px, calc(100% - 40px));
    margin: 10px auto 56px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.education-focus article {
    position: relative;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 243, 244, 0.76)),
        linear-gradient(90deg, rgba(7, 95, 117, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 95, 117, 0.06) 1px, transparent 1px);
    background-size: auto, 38px 38px, 38px 38px;
    border: 1px solid rgba(18, 22, 25, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(18, 22, 25, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.education-focus article::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
}

.education-focus article::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(7, 95, 117, 0.16);
    border-radius: 50%;
}

.education-focus article:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(18, 22, 25, 0.14);
}

.education-focus span,
.education-gallery span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 26px;
    color: var(--blue);
    font-family: "Courier New", monospace;
    font-size: 15px;
    font-weight: 800;
}

.education-focus h2 {
    position: relative;
    z-index: 1;
    color: var(--graphite);
    font-size: 23px;
    line-height: 1.15;
}

.education-focus p {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: var(--muted);
    font-size: 16px;
}

.education-story {
    width: min(1180px, calc(100% - 40px));
    margin: 6px auto 28px;
}

.education-story h2 {
    max-width: 860px;
    color: var(--graphite);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.education-story p {
    max-width: 820px;
    margin-top: 20px;
    color: var(--muted);
    font-size: 18px;
}

.education-gallery {
    width: min(1180px, calc(100% - 40px));
    margin: 4px auto 86px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.education-gallery article {
    min-height: 250px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.9), rgba(7, 95, 117, 0.78)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.education-gallery .featured,
.education-gallery .photo-card {
    position: relative;
    padding: 0;
}

.education-gallery .featured {
    grid-column: span 2;
}

.education-gallery .featured img,
.education-gallery .photo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-gallery .featured::after,
.education-gallery .photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 22, 25, 0.04), rgba(18, 22, 25, 0.74));
}

.education-gallery .featured div,
.education-gallery .photo-card div {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.education-gallery strong {
    display: block;
    color: var(--white);
    font-size: 22px;
    line-height: 1.15;
}

.education-gallery span {
    margin-bottom: 8px;
    color: var(--yellow);
}

.contact-band.education-contact {
    margin: -24px auto 92px;
}

.contact-band {
    width: min(1180px, calc(100% - 40px));
    margin: 24px auto 92px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.96), rgba(7, 95, 117, 0.94)),
        linear-gradient(90deg, rgba(243, 195, 63, 0.18), transparent);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-band .section-label,
.contact-band h2,
.contact-band p {
    color: var(--white);
}

.contact-band p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-site-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--yellow);
    font-weight: 800;
    text-decoration: none;
}

.contact-site-link:hover {
    color: var(--white);
}

.btn-whatsapp {
    flex: 0 0 auto;
    color: var(--graphite);
    background: linear-gradient(135deg, var(--yellow), var(--orange));
}

footer {
    position: relative;
    overflow: hidden;
    padding: 26px 20px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(7, 95, 117, 0.98), rgba(18, 22, 25, 0.98)),
        linear-gradient(90deg, rgba(243, 195, 63, 0.18), transparent);
}

footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--blue-light), var(--yellow), var(--orange));
}

footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 20%, rgba(22, 161, 189, 0.3), transparent 26%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 44px 44px, 44px 44px;
    opacity: 0.34;
}

footer p {
    position: relative;
    z-index: 1;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(135deg, #25d366, #128c4a);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(18, 140, 74, 0.34);
    isolation: isolate;
    animation: whatsapp-pulse 2.8s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    background: currentColor;
    clip-path: path("M15 0C6.7 0 0 6.3 0 14.1c0 2.5.7 4.9 2.1 7L.4 30l9.1-2.3c1.8.9 3.7 1.4 5.8 1.4 8.3 0 15-6.3 15-14.1S23.3 0 15 0Zm0 26.5c-1.8 0-3.5-.5-5-1.3l-.4-.2-5.4 1.4 1.1-5.2-.3-.5c-1.2-1.9-1.8-4.1-1.8-6.4C3.2 7.9 8.5 2.6 15 2.6s11.8 5.3 11.8 11.7S21.5 26.5 15 26.5Zm6.5-8.9c-.4-.2-2.1-1-2.4-1.1-.3-.1-.6-.2-.8.2-.2.4-.9 1.1-1.1 1.3-.2.2-.4.3-.8.1-.4-.2-1.5-.5-2.8-1.7-1-.9-1.7-2-1.9-2.3-.2-.4 0-.6.2-.8.2-.2.4-.4.6-.7.2-.2.3-.4.4-.6.1-.2 0-.5 0-.7-.1-.2-.8-1.9-1.1-2.6-.3-.7-.6-.6-.8-.6h-.7c-.2 0-.7.1-1 .5-.3.4-1.3 1.2-1.3 2.9s1.3 3.4 1.5 3.6c.2.2 2.6 3.8 6.3 5.3.9.4 1.6.6 2.1.8.9.3 1.7.3 2.3.2.7-.1 2.1-.8 2.4-1.6.3-.8.3-1.5.2-1.6-.1-.2-.3-.3-.7-.5Z");
}

.whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 24px 48px rgba(18, 140, 74, 0.42);
    filter: brightness(1.04);
    animation-play-state: paused;
}

.whatsapp-float:active {
    transform: translateY(-1px) scale(0.98);
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    max-width: 860px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(18, 22, 25, 0.97), rgba(7, 95, 117, 0.96)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: auto, 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(18, 22, 25, 0.24);
}

.cookie-consent strong {
    display: block;
    color: var(--yellow);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cookie-consent p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.42;
}

.cookie-consent button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 18px;
    color: var(--graphite);
    font: inherit;
    font-weight: 800;
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.cookie-consent button:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

@keyframes whatsapp-pulse {
    0%,
    100% {
        box-shadow: 0 18px 38px rgba(18, 140, 74, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.28);
    }

    55% {
        box-shadow: 0 18px 38px rgba(18, 140, 74, 0.34), 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .engineering-panel {
        min-height: 360px;
    }

    .profile-showcase {
        min-height: 680px;
    }

    .metrics,
    .location-section,
    .cards,
    .project-points,
    .home-links,
    .home-video-callout,
    .story-layout,
    .system-grid,
    .project-page-hero,
    .gallery-grid,
    .education-hero,
    .education-focus,
    .education-gallery,
    .educatech-gallery,
    .system-info-grid,
    .proposal-card,
    .axis-item,
    .axis-item.reverse {
        grid-template-columns: 1fr;
    }

    .education-gallery .featured,
    .educatech-gallery .featured {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 320px;
    }

    .axis-item.reverse .axis-image,
    .axis-item.reverse .axis-copy {
        order: initial;
    }

    .story-photo-card {
        position: relative;
        top: auto;
    }

    .project-page-hero > img {
        justify-self: start;
        width: min(280px, 100%);
    }

    .project-3axes {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .project-visual {
        min-height: 280px;
    }

    .metrics div {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 22, 25, 0.09);
    }

    .location-section {
        grid-template-columns: 1fr;
    }

    .metrics div:last-child {
        border-bottom: 0;
    }

    .contact-band {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    body {
        line-height: 1.5;
        background-attachment: scroll;
    }

    .container {
        height: auto;
        padding: 12px 14px 14px;
        flex-direction: column;
        gap: 12px;
    }

    .brand-lockup {
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .logo {
        width: auto;
        height: 76px;
        max-width: 190px;
        transform: none;
    }

    .header-slogan {
        width: min(168px, 44vw);
        max-height: 30px;
    }

    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 5px;
        gap: 5px;
    }

    nav a {
        min-width: 0;
        flex: 1 1 30%;
        min-height: 38px;
        padding: 8px 7px;
        font-size: 13px;
    }

    .hero {
        width: min(1180px, calc(100% - 28px));
        min-height: 0;
        padding: 42px 0 34px;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.02;
    }

    .hero p {
        margin-top: 18px;
        font-size: 17px;
    }

    .hero-actions {
        margin-top: 24px;
        gap: 10px;
    }

    .hero-actions .btn,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .btn,
    .btn-secondary,
    .btn-whatsapp {
        min-height: 46px;
        padding: 12px 18px;
        text-align: center;
    }

    .page-hero {
        width: min(1180px, calc(100% - 28px));
        padding: 48px 0 30px;
    }

    .page-hero h1 {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.04;
    }

    .page-hero p {
        margin-top: 18px;
        font-size: 17px;
    }

    .profile-showcase {
        min-height: 560px;
        padding: 22px 16px 138px;
    }

    .profile-photo-wrap {
        height: 360px;
    }

    .profile-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 15px 16px;
    }

    .profile-caption strong {
        font-size: 19px;
    }

    .profile-caption span {
        font-size: 12.8px;
        line-height: 1.38;
    }

    .home-video-callout,
    .home-links,
    .location-section,
    .story-layout,
    .project-detail-list,
    .section-block {
        width: min(1180px, calc(100% - 28px));
    }

    .home-video-callout {
        margin-top: 4px;
        padding: 22px;
        gap: 22px;
    }

    .video-preview,
    .video-preview img {
        min-height: 220px;
    }

    .video-play {
        width: 60px;
        height: 60px;
    }

    .video-play::before {
        left: 26px;
        top: 19px;
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-left-width: 17px;
    }

    .home-video-copy h2 {
        font-size: clamp(28px, 9vw, 40px);
    }

    .home-video-copy p {
        font-size: 16px;
    }

    .home-links {
        margin-top: 18px;
        gap: 14px;
    }

    .home-links a,
    .system-card,
    .card {
        min-height: 0;
        padding: 24px;
    }

    .home-links span,
    .system-card .card-index,
    .card-index {
        margin-bottom: 22px;
    }

    .location-section {
        margin-top: 18px;
        margin-bottom: 64px;
        gap: 16px;
    }

    .map-panel,
    .location-info,
    .map-panel iframe {
        min-height: 280px;
    }

    .location-info {
        padding: 26px;
    }

    .location-info h2 {
        font-size: clamp(26px, 8vw, 34px);
    }

    .section-block {
        padding: 66px 0;
    }

    .project-3axes {
        width: min(1180px, calc(100% - 28px));
        padding: 34px 22px;
    }

    .project-3axes::after {
        display: none;
    }

    .contact-band {
        width: min(1180px, calc(100% - 28px));
        padding: 30px 22px;
        gap: 22px;
    }

    .contact-band.page-contact {
        margin-top: 0;
    }

    .contact-band .btn-whatsapp {
        width: 100%;
    }

    .story-photo-card {
        padding: 22px;
    }

    .juridico-photo-card img {
        width: min(112%, 350px);
        max-height: 390px;
        transform: translateY(44px);
    }

    .project-detail-list {
        margin-bottom: 64px;
        gap: 16px;
    }

    .project-detail-list article,
    .system-info-grid article {
        padding: 26px 22px;
    }

    .proposal-card {
        gap: 20px;
    }

    .proposal-card figure {
        min-height: 260px;
    }

    .video-frame video {
        aspect-ratio: 16 / 10;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent button {
        width: 100%;
    }
}
