:root {
    --bg: #f3f6fa;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --text: #11243b;
    --text-muted: #5f6f84;
    --border: #dbe5f2;
    --brand-900: #0d355f;
    --brand-700: #145b97;
    --brand-600: #1a78c3;
    --brand-500: #33a2eb;
    --accent: #17b27a;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 8px 24px rgba(14, 45, 77, 0.08);
    --shadow-card: 0 16px 32px rgba(11, 37, 65, 0.08);
    --container: min(1160px, 92vw);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f8fbff 0%, #f3f6fa 45%, #edf2f8 100%);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    z-index: 100;
    background: #fff;
    color: #111;
    border: 2px solid #111;
    border-radius: 8px;
    padding: 0.6rem 1rem;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}
.container {
    width: var(--container);
    margin-inline: auto;
}
section {
    padding-inline: 0;
}

.topbar {
    background: #eef3f8;
    border-bottom: 1px solid #e1e8f2;
    color: #67788f;
    font-size: 0.82rem;
}
.topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e3eaf4;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 80;
    background: linear-gradient(90deg, #1a78c3, #33a2eb);
    transition: width 0.08s linear;
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--brand-900);
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand-copy strong {
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.02em;
    font-size: 1.85rem;
}

.brand-copy small {
    font-size: 0.7rem;
    color: #5d6e84;
    margin-top: 0.2rem;
    letter-spacing: 0.02em;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd8e9;
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
    margin-inline: auto;
    display: block;
    color: var(--brand-900);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav a {
    text-decoration: none;
    color: #22364e;
    font-weight: 600;
    font-size: 0.98rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    background: linear-gradient(90deg, var(--brand-700), var(--brand-500));
}

.nav a:hover,
.nav a[aria-current="page"] {
    color: var(--brand-700);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.lang {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d5e1ef;
    border-radius: 999px;
    padding: 0.2rem;
    background: #f7fbff;
    gap: 0.25rem;
}

.lang button {
    border: 0;
    background: transparent;
    color: #4f6178;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.25rem 0.52rem;
    cursor: pointer;
}

.lang button.active {
    color: #fff;
    background: linear-gradient(180deg, #329fe6, #137ac2);
}

.hero {
    position: relative;
    min-height: clamp(560px, 72vh, 760px);
    display: grid;
    align-items: center;
    overflow: clip;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/inicio/hero-01.jpg") center/cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.03);
}

.hero-bg.is-active {
    opacity: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(9, 35, 65, 0.58);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    align-items: end;
    padding: 2rem 0 3.8rem;
}
.hero-copy {
    color: #f6fbff;
    max-width: 700px;
    background: rgba(9, 35, 65, 0.36);
    border: 1px solid rgba(172, 211, 244, 0.24);
    border-radius: 14px;
    padding: 1rem;
    backdrop-filter: blur(2px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(180, 217, 245, 0.35);
    background: rgba(26, 120, 195, 0.22);
    padding: 0.35rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.05rem, 4.4vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.15rem;
    text-shadow: 0 4px 18px rgba(6, 18, 33, 0.65);
}

.hero p {
    max-width: 60ch;
    color: #d9e9fa;
    font-size: clamp(1rem, 2vw, 1.08rem);
    margin-bottom: 1.45rem;
    text-shadow: 0 2px 10px rgba(6, 18, 33, 0.55);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.3rem;
}

.btn {
    text-decoration: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 46px;
    padding: 0.65rem 1.2rem;
    font: inherit;
    font-weight: 700;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.btn:focus-visible,
.nav a:focus-visible,
.menu-toggle:focus-visible,
.lang button:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(180deg, #34a4ec 0%, #1577be 100%);
    box-shadow: 0 10px 24px rgba(21, 120, 191, 0.35);
}

.btn-secondary {
    color: #e8f4ff;
    border: 1px solid rgba(201, 227, 248, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    color: #cae3f8;
    font-size: 0.95rem;
}

.hero-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.55rem;
    background: #72c4ff;
    box-shadow: 0 0 0 4px rgba(114, 196, 255, 0.2);
}

.hero-stats {
    background: rgba(9, 35, 65, 0.66);
    border: 1px solid rgba(172, 211, 244, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    padding: 1.2rem;
    color: #f4fbff;
    box-shadow: var(--shadow-card);
}

.hero-stats h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
}

.metric {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.7rem;
    border: 1px solid rgba(176, 216, 248, 0.23);
}

.metric strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.1;
}
.metric span {
    color: #c8def3;
    font-size: 0.8rem;
}

main {
    display: grid;
    gap: 2.6rem;
    padding-bottom: 2.8rem;
}

.section {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

.section-title-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.65rem, 2.6vw, 2.3rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-sub {
    color: var(--text-muted);
    max-width: 60ch;
    font-size: 0.98rem;
}
.about-copy {
    margin-top: 0.85rem;
    display: grid;
    gap: 0.6rem;
    color: var(--text-muted);
    max-width: 72ch;
    font-size: 0.96rem;
    text-align: left;
}

.about-copy p {
    margin: 0;
}
.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem;
}

.about-grid--quad {
    align-items: stretch;
}

.about-card {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--surface);
    color: inherit;
    display: block;
}

.about-card:focus-visible {
    outline: 2px solid #9bd2ff;
    outline-offset: 2px;
}

.about-card__summary {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    line-height: 1.5;
    min-height: calc(1.5em * 3);
    max-height: calc(1.5em * 3);
}

.about-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-700);
    font-size: 0.85rem;
    font-weight: 600;
}
.about-grid .card--full {
    grid-column: 1 / -1;
}

.about-grid .card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    line-height: 1.15;
    color: var(--brand-900);
    margin-bottom: 0.6rem;
}

.about-grid .card-copy p:last-child {
    margin-bottom: 0;
}

.about-extras {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1rem;
}

.about-extras .card--full {
    grid-column: 1 / -1;
}

.about-extras .card-body {
    padding: 1rem;
}

.about-extras .card h3 {
    font-size: 1.1rem;
}

.about-extras .text-list {
    font-size: 0.9rem;
}


.partner-intro {
    color: var(--text-muted);
    margin: 0 0 0.9rem;
    font-size: 0.95rem;
}

.partner-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 1fr);
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
}

.partner-card {
    border: 1px solid #dbe6f3;
    background: #f8fbff;
    border-radius: 14px;
    padding: 1rem 0.9rem;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 0.65rem;
    box-shadow: var(--shadow-soft);
}

.partner-avatar {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 3px solid #cfe2ff;
    background: #fff;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    color: #1d4f7a;
    margin: 0;
}
.text-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
}

.text-list li::before {
    content: "•";
    color: var(--brand-600);
    margin-right: 0.45rem;
}

.cards--about {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.card--full {
    grid-column: 1 / -1;
}
.about-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
    color: #2c4761;
    font-size: 0.95rem;
}

.about-list li {
    background: #f6fafe;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.card-head {
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--brand-700) 0 40%,
        #b8d9f1 40% 100%
    );
}
.card-body {
    padding: 1.2rem;
}

.card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.55rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
    .card-copy {
        display: grid;
        gap: 0.6rem;
        color: var(--text-muted);
        font-size: 0.95rem;
    }

    .card-copy p {
        margin: 0;
    }
.card-toggle {
    margin-top: 0.2rem;
}

.card-details {
    margin-top: 0.85rem;
    padding: 0.8rem;
    border: 1px solid #d7e4f3;
    border-radius: 10px;
    background: #f7fbff;
    color: #2f4863;
    font-size: 0.9rem;
}

.card-details h4 {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: #17456f;
    font-family: "Space Grotesk", sans-serif;
}

.card-details ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.card-details li::before {
    content: "•";
    color: #1a78c3;
    margin-right: 0.4rem;
}

.info-modal[hidden] {
    display: none;
}

.info-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.info-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 49, 0.62);
    backdrop-filter: blur(2px);
}

.info-modal__dialog {
    position: relative;
    width: min(720px, 96vw);
    max-height: 88vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #d7e4f3;
    box-shadow: 0 18px 45px rgba(10, 30, 54, 0.28);
    padding: 1.1rem 1.1rem 1rem;
}

.info-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 1px solid #d0deee;
    border-radius: 50%;
    background: #f4f8fc;
    color: #1f466d;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.info-modal__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    color: #163d63;
    margin-bottom: 0.6rem;
    padding-right: 2rem;
}

.info-modal__body {
    color: #2f4863;
    font-size: 0.93rem;
    line-height: 1.55;
}

.info-modal__body h4 {
    margin-bottom: 0.45rem;
    color: #1a4f7c;
    font-size: 0.98rem;
}

.info-modal__body ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
}

.info-modal__body li::before {
    content: "•";
    color: #1a78c3;
    margin-right: 0.4rem;
}

.notice-modal {
    display: grid;
    gap: 0.75rem;
}

.notice-window {
    max-height: 52vh;
    overflow: auto;
    padding: 0.85rem;
    border: 1px solid #d7e4f3;
    border-radius: 12px;
    background: #f7fbff;
}

.notice-window:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
}

.notice-window ul {
    margin: 0;
}

.modal-diagnostic-form {
    display: grid;
    gap: 0.55rem;
    background: #f8fbff;
    border: 1px solid #d7e4f3;
    border-radius: 12px;
    padding: 0.85rem;
}

.modal-diagnostic-form label {
    font-size: 0.84rem;
    color: #1a456d;
    font-weight: 600;
}

.modal-diagnostic-form input,
.modal-diagnostic-form textarea {
    width: 100%;
    border: 1px solid #c8d9ec;
    border-radius: 8px;
    padding: 0.55rem 0.6rem;
    background: #ffffff;
    color: #153752;
    font: inherit;
    font-size: 0.92rem;
}

.modal-diagnostic-form input::placeholder,
.modal-diagnostic-form textarea::placeholder {
    color: #7188a1;
}

.modal-diagnostic-form textarea {
    min-height: 96px;
    resize: vertical;
}

.modal-diagnostic-form input:focus-visible,
.modal-diagnostic-form textarea:focus-visible {
    outline: 2px solid #9bd2ff;
    outline-offset: 1px;
    border-color: #9bd2ff;
}

.modal-diagnostic-form button {
    justify-self: start;
    margin-top: 0.2rem;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.7rem;
    color: #38506b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.feature-list li::before {
    content: "•";
    color: var(--brand-600);
    margin-right: 0.45rem;
}
.service-table {
    margin-top: 1rem;
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.service-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.service-table th,
.service-table td {
    text-align: left;
    vertical-align: top;
    padding: 0.85rem 0.8rem;
    border-bottom: 1px solid #e4ebf4;
    font-size: 0.92rem;
}

.service-table th {
    background: #f1f7fd;
    color: #1c4367;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.service-table tr:last-child td {
    border-bottom: 0;
}

.areas-intro {
    margin-top: 0.6rem;
    color: #2f4664;
    font-size: 0.96rem;
    max-width: 64ch;
}

.areas-grid {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
}

.area-tile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: center;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #0f3b75, #1264b1);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.area-tile .area-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
}

.area-copy {
    display: grid;
    gap: 0.35rem;
}

.area-title {
    font-size: 1rem;
    line-height: 1.25;
}

.area-copy__meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.area-tile:hover,
.area-tile.is-active {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-card);
}

.area-tile--blue {
    background: linear-gradient(135deg, #0b2c56, #1578c3);
}
.area-tile--green {
    background: linear-gradient(135deg, #1f6f3a, #2fa847);
}
.area-tile--orange {
    background: linear-gradient(135deg, #d0590e, #f18620);
}
.area-tile--purple {
    background: linear-gradient(135deg, #5e2f8c, #8a3dc1);
}
.area-tile--forest {
    background: linear-gradient(135deg, #1c7f45, #2aa55d);
}
.area-tile--yellow {
    background: linear-gradient(135deg, #c99817, #f4b70e);
}
.area-tile--aqua {
    background: linear-gradient(135deg, #0f6fb8, #24a5d4);
}
.area-tile--scarlet {
    background: linear-gradient(135deg, #a91d1d, #d63434);
}
.area-tile--charcoal {
    background: linear-gradient(135deg, #2c2c2c, #5a5c63);
}

.area-script {
    margin-top: 1.4rem;
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid #dbe5f2;
    background: #f4f8ff;
    color: #1f3754;
    box-shadow: var(--shadow-soft);
}

.area-script__label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #59709f;
    margin-bottom: 0.45rem;
}

.area-script__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: #173054;
}

.area-script__text {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: #2e4568;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1rem;
    align-items: stretch;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding: 0.85rem 0.7rem;
}

.team-card img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    margin-inline: auto;
    border: 3px solid #89c8f2;
    margin-bottom: 0.5rem;
    background: #d6e6f5;
}

.team-card strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.2;
}
.team-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.team-credentials {
    list-style: none;
    margin-top: 0.45rem;
    display: grid;
    gap: 0.2rem;
    color: #5a6f86;
    font-size: 0.76rem;
    line-height: 1.35;
}
.logos {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.7rem;
    align-content: center;
    width: 100%;
}

.partners-grid > .logos:only-child {
    grid-column: 1 / -1;
}

.logo-badge-chip {
    border: 1px solid #d2e0ef;
    border-radius: 10px;
    background: #f8fbff;
    color: #205986;
    text-align: center;
    padding: 0.65rem 0.5rem;
    font-weight: 800;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    display: grid;
    gap: 0.35rem;
    align-items: center;
    justify-items: center;
    min-height: 84px;
}

.logo-badge-chip img {
    max-width: 110px;
    max-height: 32px;
    object-fit: contain;
    filter: saturate(1.05);
}

.logo-badge-chip span {
    font-size: 0.68rem;
    font-weight: 700;
    color: #37658a;
    letter-spacing: 0.03em;
}

.news-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}

.news-feature {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 210px;
    gap: 1rem;
    padding: 1.2rem;
}

.news-feature h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.15;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.news-feature p {
    color: var(--text-muted);
    margin-bottom: 0.95rem;
}
.news-feature img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.news-photo-trigger {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.news-feature .news-photo-trigger {
    display: block;
    width: 100%;
}

.news-photo-trigger:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
    border-radius: 10px;
}

.news-photo-trigger img {
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.news-photo-trigger:hover img {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 32, 59, 0.16);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.news-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
}

.news-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #dce7f3;
}
.news-item p {
    padding: 0.62rem;
    font-size: 0.82rem;
    color: #40556f;
}
.media-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 0.9rem;
}
.media-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.media-card h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
}

.media-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.gallery-grid {
    margin-top: 0.7rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.gallery-photo-btn {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d6e4f2;
    background: #dce7f3;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.gallery-photo-btn:hover img {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 32, 59, 0.16);
}

.gallery-photo-btn:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
    border-radius: 10px;
}

.gallery-modal-content {
    display: grid;
    gap: 0.65rem;
}

.gallery-modal-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d6e4f2;
    background: #dce7f3;
}

.gallery-modal-description {
    margin: 0;
    color: #2f4863;
    font-size: 0.92rem;
}

.video-modal-content {
    display: grid;
    gap: 0.65rem;
}

.video-modal-player {
    width: 100%;
    max-height: 380px;
    border-radius: 10px;
    border: 1px solid #d6e4f2;
    background: #0d2238;
}

.video-list {
    margin-top: 0.7rem;
    display: grid;
    gap: 0.65rem;
}

.video-item {
    border: 0;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.65rem;
    border: 1px solid #d6e4f2;
    border-radius: 10px;
    padding: 0.5rem;
    background: #f9fbfe;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(8, 32, 59, 0.14);
}

.video-item:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    background: #dce7f3;
}

.video-copy strong {
    display: block;
    font-size: 0.9rem;
    color: #1a3551;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.video-copy p {
    margin: 0;
    font-size: 0.82rem;
    color: #51657d;
    line-height: 1.4;
}

.governance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.governance-layout {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.governance-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 1rem;
    align-content: start;
}
.governance-members {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    width: 100%;
}

.team-subtitle {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: #1a3551;
}

.team-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.team-mini-card {
    border: 1px solid #d2e0ef;
    border-radius: 10px;
    background: #f8fbff;
    color: #205986;
    text-align: center;
    padding: 0.75rem 0.55rem;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    display: grid;
    gap: 0.45rem;
    align-items: center;
    justify-items: center;
    min-height: 126px;
    width: 100%;
}

.team-mini-card img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #89c8f2;
    background: #d6e6f5;
}

.team-mini-card span {
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.governance-lead,
.governance-team {
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
}

.governance-lead h3,
.governance-team h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.governance-lead-copy {
    color: #40556f;
    margin-bottom: 0.8rem;
}

.governance-lead-members {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.governance-team-list {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: #2e4a66;
    font-size: 0.92rem;
}

.team-detail-trigger {
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.team-detail-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(8, 32, 59, 0.14);
    border-color: #b7d6ee;
}

.team-detail-trigger:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 3px;
}

.team-modal {
    display: grid;
    gap: 0.8rem;
}

.team-modal p,
.team-modal ul {
    margin: 0;
}

.team-modal h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    margin: 0;
    color: #173755;
}

.team-modal ul {
    padding-left: 1.1rem;
    color: #34506c;
    display: grid;
    gap: 0.35rem;
}

.cta-band {
    margin-top: 0.6rem;
    background: linear-gradient(95deg, #0f426f, #1a78c3);
    color: #e8f4ff;
    border-radius: 16px;
    padding: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(176, 216, 248, 0.22);
}

.cta-band strong {
    font-size: 1.07rem;
    font-family: "Space Grotesk", sans-serif;
}

.footer-top {
    background: #f8fbff;
    border-top: 1px solid #e0e8f3;
    border-bottom: 1px solid #e0e8f3;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}


.notice-trigger {
    border: 0;
    background: transparent;
    color: #1f4f7a;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 0.2rem 0;
}

.notice-trigger:hover {
    color: var(--brand-700);
}

.notice-trigger:focus-visible {
    outline: 3px solid #9bd2ff;
    outline-offset: 2px;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #3a4f67;
}

.footer-main {
    color: #e7f2ff;
    background: radial-gradient(
        130% 180% at 0% 0%,
        #1a5f98 0%,
        #0d355f 45%,
        #082844 100%
    );
    padding: 2.1rem 0 1.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    align-items: start;
}

.footer-main h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.55rem;
    letter-spacing: -0.01em;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 0.25rem;
    color: #cce0f5;
    font-size: 0.94rem;
}
.socials {
    display: flex;
    gap: 0.45rem;
    justify-content: end;
    margin-top: 0.75rem;
}
.contact-info-card {
    border: 1px solid rgba(214, 233, 250, 0.28);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1rem;
}

.contact-info-card .footer-list li {
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(214, 233, 250, 0.18);
}

.contact-info-card .footer-list li:last-child {
    border-bottom: 0;
}
.contact-form {
    display: grid;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 233, 250, 0.28);
    border-radius: 12px;
    padding: 0.8rem;
    min-width: 290px;
}

.contact-form label {
    font-size: 0.82rem;
    color: #d8e9fa;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(214, 233, 250, 0.35);
    border-radius: 8px;
    padding: 0.55rem 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font: inherit;
    font-size: 0.9rem;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: 2px solid #9bd2ff;
    outline-offset: 1px;
    border-color: #9bd2ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #c8def3;
}

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

.contact-form button {
    justify-self: start;
}

.form-status {
    font-size: 0.82rem;
    min-height: 1.2rem;
    color: #c8def3;
}

.form-status.success {
    color: #9df0c3;
}

.form-status.error {
    color: #ffd3d3;
}

.fab-group {
    position: fixed;
    bottom: 18px;
    z-index: 60;
    display: grid;
    gap: 0.55rem;
}

.fab-group-left {
    left: 18px;
}

.fab-group-right {
    right: 18px;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 10px 20px rgba(7, 31, 56, 0.25);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    cursor: pointer;
}

.fab:hover {
    transform: translateY(-2px);
}
.fab-whatsapp {
    background: #25d366;
    color: #ffffff;
}
.fab-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.fab-top {
    background: #1a78c3;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.fab-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(214, 233, 250, 0.45);
    border-radius: 50%;
    text-decoration: none;
    color: #e7f2ff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.87rem;
    background: rgba(255, 255, 255, 0.06);
}

.socials a svg {
    width: 17px;
    height: 17px;
    display: block;
}

.footer-bottom {
    margin-top: 1.15rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(212, 233, 255, 0.2);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #bdd5ed;
    font-size: 0.82rem;
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

[data-animate].in {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1060px) {
    .hero-grid,
    .partners-grid,
    .governance-grid,
    .news-layout,
    .footer-grid,
    .news-feature {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-bottom: 3rem;
    }
    .hero-stats {
        max-width: 520px;
    }
    .news-list {
        grid-template-columns: repeat(3, minmax(140px, 1fr));
    }
    .socials {
        justify-content: start;
    }
    .contact-form {
        min-width: 0;
    }
    .header-inner {
        min-height: 76px;
    }
    .brand-copy strong {
        font-size: 1.6rem;
    }
    .governance-stack {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .about-extras {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    :root {
        --container: min(1160px, 94vw);
    }
    .topbar-inner {
        justify-content: center;
    }
    .topbar-inner span:last-child {
        display: none;
    }
    .hero {
        min-height: 520px;
    }
    .hero-grid {
        padding: 1.7rem 0 2.5rem;
    }
    .cta-band {
        align-items: flex-start;
    }
    .logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .team-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-wrap {
        position: absolute;
        inset: 84px 0 auto;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid #e1e9f3;
        display: grid;
        gap: 0.9rem;
        padding: 0.9rem 1rem 1rem;
        transform: translateY(-125%);
        opacity: 0;
        pointer-events: none;
        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    .nav-wrap.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .cards,
    .team-grid,
    .logos {
        grid-template-columns: 1fr;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
    .about-list li {
        font-size: 0.92rem;
    }
    .news-feature {
        padding: 1rem;
    }
    .governance-stack {
        grid-template-columns: 1fr;
    }
    .governance-lead-members {
        grid-template-columns: 1fr;
    }
    .team-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .service-table {
        overflow: visible;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .service-table table,
    .service-table thead,
    .service-table tbody,
    .service-table tr,
    .service-table th,
    .service-table td {
        display: block;
        width: 100%;
    }

    .service-table table {
        min-width: 0;
    }
    .service-table thead {
        display: none;
    }

    .service-table tr {
        margin-bottom: 0.8rem;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        background: var(--surface);
    }

    .service-table td {
        border-bottom: 1px solid #e4ebf4;
        padding: 0.72rem;
        font-size: 0.9rem;
    }

    .service-table td:last-child {
        border-bottom: 0;
    }

    .service-table td::before {
        content: attr(data-label);
        display: block;
        font-family: "Space Grotesk", sans-serif;
        font-size: 0.8rem;
        color: #1d507c;
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 640px) {
    .about-extras {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-auto-columns: minmax(160px, 1fr);
    }

    .topbar {
        display: none;
    }
    .hero {
        min-height: 580px;
    }
    .hero h1 {
        font-size: 2.1rem;
    }
    .hero-actions {
        width: 100%;
    }
    .hero-actions .btn {
        flex: 1;
    }
    .metrics {
        grid-template-columns: 1fr;
    }
    .news-list {
        grid-template-columns: 1fr;
    }
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand-copy strong {
        font-size: 1.38rem;
    }
    .brand-copy small {
        font-size: 0.62rem;
    }
    .header-inner {
        min-height: 70px;
    }
    .nav-wrap {
        inset: 70px 0 auto;
    }
    .btn {
        min-height: 44px;
        padding: 0.6rem 1rem;
        font-size: 0.92rem;
    }
    .section-title {
        font-size: 1.45rem;
    }
    .section-sub {
        font-size: 0.92rem;
    }
    .about-copy {
        font-size: 0.92rem;
    }
    .hero p {
        font-size: 0.96rem;
    }
    .fab-group {
        bottom: 12px;
    }
    .fab-group-left {
        left: 12px;
    }
    .fab-group-right {
        right: 12px;
    }
    .fab {
        width: 46px;
        height: 46px;
        font-size: 0.78rem;
    }
    .video-item {
        grid-template-columns: 1fr;
    }
    .team-grid-compact {
        grid-template-columns: 1fr;
    }
    .team-mini-card {
        min-height: 112px;
    }
}

@media (max-width: 420px) {
    .brand {
        gap: 0.5rem;
    }
    .brand-mark {
        width: 36px;
        height: 36px;
    }
    .hero h1 {
        font-size: 1.85rem;
    }
    .hero-actions {
        gap: 0.55rem;
    }
    .footer-links {
        gap: 0.6rem;
        font-size: 0.84rem;
    }
    .footer-bottom {
        font-size: 0.77rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

