/* 
    Gixtoh Consolidated — H27-HX26 Generation Renewal UIX
    File: /_css/gixtoh_h27_renewal.css
    Haxter Corporation Suites Enterprise
*/

/* ================================
   01. Design Tokens
================================ */

:root {
    --gix-blue-main: #002060;
    --gix-blue-deep: #061a3d;
    --gix-blue-dark: #081f4d;
    --gix-blue-mid: #123f82;
    --gix-blue-soft: #eaf1fb;
    --gix-blue-pale: #f4f8ff;

    --gix-cyan: #0d8fe8;
    --gix-cyan-soft: #e9f6ff;

    --gix-black: #101318;
    --gix-ink: #182033;
    --gix-gray-900: #242936;
    --gix-gray-700: #4c5568;
    --gix-gray-500: #737d91;
    --gix-gray-300: #d9dfeb;
    --gix-gray-200: #edf1f6;
    --gix-gray-100: #f7f9fc;

    --gix-white: #ffffff;

    --gix-border: rgba(0, 32, 96, 0.14);
    --gix-border-strong: rgba(0, 32, 96, 0.24);

    --gix-shadow-soft: 0 12px 34px rgba(0, 32, 96, 0.08);
    --gix-shadow-card: 0 18px 48px rgba(0, 32, 96, 0.12);
    --gix-shadow-header: 0 8px 28px rgba(0, 32, 96, 0.10);

    --gix-radius-sm: 8px;
    --gix-radius-md: 14px;
    --gix-radius-lg: 22px;

    --gix-container: 1200px;
    --gix-header-height: 80px;

    --gix-font-main: 'Work Sans', "Montserrat", "Open Sans", Arial, sans-serif;
    --gix-font-text: 'Work Sans', "Open Sans", Arial, sans-serif;
}

/* ================================
   02. Reset / Base
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.gix-site,
body {
    margin: 0;
    min-width: 320px;
    color: var(--gix-ink);
    background: var(--gix-white);
    font-family: var(--gix-font-main);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.gix-skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--gix-white);
    background: var(--gix-blue-main);
    border-radius: 999px;
    transition: top 0.2s ease;
}

.gix-skip-link:focus {
    top: 16px;
}

.gix-container {
    width: min(calc(100% - 48px), var(--gix-container));
    margin: 0 auto;
}

/* ================================
   03. Header
================================ */

.gix-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    width: 100%;
    height: var(--gix-header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 32, 96, 0.08);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.gix-header--scrolled {
    box-shadow: var(--gix-shadow-header);
    border-color: rgba(0, 32, 96, 0.12);
}

.gix-header__bar {
    width: min(calc(100% - 48px), 1440px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gix-header__left {
    display: flex;
    align-items: center;
    gap: 36px;
    min-width: 0;
}

.gix-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.gix-header__logo img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.gix-header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gix-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    color: var(--gix-black);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    border-radius: 999px;
    transition: color 0.18s ease, background 0.18s ease;
}

.gix-header__nav a:hover,
.gix-header__nav a:focus {
    color: var(--gix-blue-main);
    background: var(--gix-blue-pale);
}

.gix-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex: 0 0 auto;
}

.gix-header__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    transition: transform 0.18s ease, background 0.18s ease;
}

.gix-header__social:hover {
    transform: translateY(-1px);
    background: var(--gix-blue-pale);
}

.gix-header__social img {
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

.gix-header__search {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gix-border);
    border-radius: 999px;
    background: var(--gix-white);
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.gix-header__search:hover {
    border-color: var(--gix-blue-main);
    background: var(--gix-blue-pale);
    transform: translateY(-1px);
}

.gix-header__search span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gix-blue-main);
    border-radius: 50%;
}

.gix-header__search span::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    background: var(--gix-blue-main);
    border-radius: 999px;
    transform: rotate(45deg);
    transform-origin: center;
}

.gix-header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gix-border);
    border-radius: 999px;
    color: var(--gix-blue-main);
    background: var(--gix-white);
    font-size: 1.4rem;
    line-height: 1;
}

.gix-mobile-nav {
    display: none;
    width: min(calc(100% - 32px), 520px);
    margin: 0 auto;
    padding: 16px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: 0 0 var(--gix-radius-lg) var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-card);
}

.gix-mobile-nav--open {
    display: block;
}

.gix-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gix-mobile-nav li + li {
    border-top: 1px solid var(--gix-gray-200);
}

.gix-mobile-nav a {
    display: block;
    padding: 14px 8px;
    color: var(--gix-ink);
    font-weight: 600;
}

.gix-mobile-nav a:hover {
    color: var(--gix-blue-main);
}

/* ================================
   04. Searcher
================================ */

.gix-searcher {
    position: fixed;
    top: var(--gix-header-height);
    left: 0;
    right: 0;
    z-index: 900;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--gix-border);
    box-shadow: var(--gix-shadow-soft);
}

.gix-searcher form {
    width: min(100%, 860px);
    margin: 0 auto;
}

.gix-searcher__input {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    color: var(--gix-ink);
    background: var(--gix-gray-100);
    border: 1px solid var(--gix-border);
    border-radius: 999px;
    outline: none;
}

.gix-searcher__input:focus {
    border-color: var(--gix-blue-main);
    background: var(--gix-white);
    box-shadow: 0 0 0 4px rgba(0, 32, 96, 0.08);
}

/* ================================
   05. Main / Hero
================================ */

.gix-main {
    padding-top: 0;
}

.gix-hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background: var(--gix-blue-deep);
}

.gix-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gix-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gix-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 32, 96, 0.82), rgba(0, 32, 96, 0.40) 48%, rgba(0, 32, 96, 0.12)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.30), transparent 42%);
}

.gix-hero__content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), var(--gix-container));
    min-height: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--gix-header-height) + 86px) 0 86px;
    color: var(--gix-white);
}

.gix-eyebrow {
    margin: 0 0 14px;
    color: var(--gix-cyan);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gix-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2.3rem, 4.2vw, 4.8rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.gix-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.90);
    font-family: var(--gix-font-text);
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    line-height: 1.72;
}

.gix-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* ================================
   06. Buttons
================================ */

.gix-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.gix-button:hover {
    transform: translateY(-2px);
}

.gix-button--primary {
    color: var(--gix-white);
    background: var(--gix-blue-main);
    border-color: var(--gix-blue-main);
    box-shadow: 0 12px 28px rgba(0, 32, 96, 0.22);
}

.gix-button--primary:hover {
    background: var(--gix-blue-mid);
    border-color: var(--gix-blue-mid);
}

.gix-button--secondary {
    color: var(--gix-white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.46);
    backdrop-filter: blur(8px);
}

.gix-button--secondary:hover {
    color: var(--gix-blue-main);
    background: var(--gix-white);
}

/* ================================
   07. Intro
================================ */

.gix-intro {
    padding: 72px 0 64px;
    background: var(--gix-white);
}

.gix-intro__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.gix-intro__logo img {
    width: min(100%, 330px);
    height: auto;
}

.gix-intro__text {
    width: min(100%, 960px);
    margin: 0 auto;
    color: var(--gix-ink);
    text-align: justify;
}

.gix-intro__text p {
    margin: 0;
    font-family: var(--gix-font-text);
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    line-height: 1.78;
}

.gix-intro__text p + p {
    margin-top: 18px;
}

.gix-intro__text strong {
    color: var(--gix-blue-main);
    font-weight: 800;
}

/* ================================
   08. Sections
================================ */

.gix-section {
    padding: 86px 0;
    background: var(--gix-white);
}

.gix-section--soft {
    background: var(--gix-gray-100);
}

.gix-section--blue {
    color: var(--gix-white);
    background:
        linear-gradient(135deg, var(--gix-blue-deep), var(--gix-blue-main));
}

.gix-section__header {
    max-width: 820px;
    margin-bottom: 42px;
}

.gix-section__header h2 {
    margin: 0;
    color: var(--gix-blue-main);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.gix-section__header p:not(.gix-eyebrow) {
    margin: 16px 0 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 1.05rem;
}

.gix-section--blue .gix-section__header h2,
.gix-section--blue .gix-section__header p,
.gix-section--blue .gix-eyebrow {
    color: var(--gix-white);
}

/* ================================
   09. Services
================================ */

.gix-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gix-service-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gix-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gix-border-strong);
    box-shadow: var(--gix-shadow-card);
}

.gix-service-card h3 {
    margin: 0;
    color: var(--gix-blue-main);
    font-size: 1.28rem;
    line-height: 1.24;
    font-weight: 700;
}

.gix-service-card p {
    margin: 16px 0 22px;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.96rem;
    line-height: 1.68;
}

.gix-service-card a {
    margin-top: auto;
    color: var(--gix-blue-main);
    font-size: 0.92rem;
    font-weight: 800;
}

.gix-service-card a:hover {
    color: var(--gix-cyan);
}

/* ================================
   10. Sector Cards
================================ */

.gix-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gix-sector-card {
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-soft);
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gix-sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gix-shadow-card);
}

.gix-sector-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.gix-sector-card__body {
    padding: 24px;
}

.gix-sector-card__body h3 {
    margin: 0 0 10px;
    color: var(--gix-blue-main);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 700;
}

.gix-sector-card__body p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.96rem;
    line-height: 1.7;
    text-align: justify;
}

/* ================================
   11. Stats
================================ */

.gix-stats {
    position: relative;
    min-height: 500px;
    color: var(--gix-white);
    overflow: hidden;
    background: var(--gix-blue-deep);
}

.gix-stats__background {
    position: absolute;
    inset: 0;
}

.gix-stats__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gix-stats__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(10, 18, 38, 0.38), rgba(10, 18, 38, 0.10)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.00) 35%);
}

.gix-stats__overlay {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 76px 0;
}

.gix-stats__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 34px;
}

.gix-stats__logo img {
    width: min(100%, 320px);
    padding: 16px 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.gix-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: min(100%, 860px);
    margin: 0 auto;
}

.gix-stat-item {
    text-align: center;
    padding: 18px;
    border-radius: var(--gix-radius-md);
    background: rgba(10, 32, 82, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.gix-stat-item strong {
    display: block;
    color: var(--gix-white);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 800;
}

.gix-stat-item span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ================================
   12. Experience
================================ */

.gix-experience {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 42px;
    align-items: start;
}

.gix-experience__content h2 {
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.gix-experience__content p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: var(--gix-font-text);
    font-size: 1.04rem;
    line-height: 1.78;
}

.gix-experience__panel {
    padding: 34px;
    color: var(--gix-ink);
    background: var(--gix-white);
    border-radius: var(--gix-radius-lg);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

.gix-experience__panel h3 {
    margin: 0 0 20px;
    color: var(--gix-blue-main);
    font-size: 1.55rem;
    line-height: 1.2;
}

.gix-experience__panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gix-experience__panel li {
    position: relative;
    padding-left: 18px;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.94rem;
    line-height: 1.5;
}

.gix-experience__panel li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--gix-blue-main);
    border-radius: 50%;
}

/* ================================
   13. News
================================ */

.gix-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gix-news-card {
    min-height: 180px;
    padding: 26px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gix-news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gix-shadow-card);
}

.gix-news-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--gix-gray-500);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gix-news-card h3 {
    margin: 0;
    color: var(--gix-blue-main);
    font-size: 1.22rem;
    line-height: 1.36;
    font-weight: 700;
}

/* ================================
   14. Contact
================================ */

.gix-contact {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.gix-contact__info {
    padding: 38px;
    color: var(--gix-white);
    background:
        linear-gradient(135deg, rgba(0, 32, 96, 0.96), rgba(18, 63, 130, 0.94));
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-card);
}

.gix-contact__info .gix-eyebrow {
    color: var(--gix-cyan);
}

.gix-contact__info h2 {
    margin: 0;
    color: var(--gix-white);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.gix-contact__info p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--gix-font-text);
    font-size: 1rem;
    line-height: 1.74;
}

.gix-contact__links {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.gix-contact__links a {
    color: var(--gix-white);
    font-weight: 700;
}

.gix-contact__links a:hover {
    color: var(--gix-cyan);
}

.gix-map {
    margin-top: 28px;
    overflow: hidden;
    border-radius: var(--gix-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.22);
    aspect-ratio: 16 / 10;
    background: var(--gix-blue-deep);
}

.gix-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.gix-contact__form-card {
    padding: 38px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-card);
}

.gix-form-success {
    margin-bottom: 18px;
    padding: 14px 16px;
    color: var(--gix-blue-main);
    background: var(--gix-blue-pale);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-md);
    font-weight: 700;
}

.gix-contact-form {
    display: grid;
    gap: 16px;
}

.gix-contact-form label {
    display: grid;
    gap: 8px;
    color: var(--gix-blue-main);
    font-size: 0.86rem;
    font-weight: 800;
}

.gix-contact-form input,
.gix-contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    color: var(--gix-ink);
    background: var(--gix-gray-100);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-md);
    outline: none;
    font-family: var(--gix-font-text);
    font-size: 0.98rem;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.gix-contact-form textarea {
    resize: vertical;
    min-height: 128px;
}

.gix-contact-form input:focus,
.gix-contact-form textarea:focus {
    background: var(--gix-white);
    border-color: var(--gix-blue-main);
    box-shadow: 0 0 0 4px rgba(0, 32, 96, 0.08);
}

.gix-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* ================================
   15. Footer
================================ */
/* ================================
   Footer blanco corporativo
   Fusión index 0 + H27
================================ */

.gix-footer {
    padding: 78px 0 28px;
    color: var(--gix-ink);
    background: var(--gix-white);
    border-top: 1px solid var(--gix-border);
}

.gix-footer__main {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(220px, 0.95fr) minmax(190px, 0.75fr) minmax(190px, 0.75fr);
    gap: 44px;
    align-items: start;
    padding-bottom: 54px;
}

.gix-footer__brand img {
    width: min(100%, 260px);
    height: auto;
    margin-bottom: 22px;
}

.gix-footer__brand p {
    max-width: 360px;
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.98rem;
    line-height: 1.75;
}

.gix-footer__nav {
    display: grid;
    align-content: start;
    gap: 9px;
}

.gix-footer__nav h3 {
    margin: 0 0 12px;
    padding-bottom: 11px;
    color: var(--gix-blue-main);
    border-bottom: 1px solid rgba(0, 32, 96, 0.38);
    font-family: var(--gix-font-main);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gix-footer__nav a {
    width: fit-content;
    color: var(--gix-black);
    font-family: var(--gix-font-text);
    font-size: 0.96rem;
    line-height: 1.45;
    transition: color 0.18s ease, transform 0.18s ease;
}

.gix-footer__nav a:hover {
    color: var(--gix-blue-main);
    transform: translateX(3px);
}

.gix-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gix-border);
}

.gix-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.gix-footer__legal-links a {
    color: var(--gix-black);
    font-family: var(--gix-font-text);
    font-size: 0.78rem;
    line-height: 1.4;
}

.gix-footer__legal-links a:hover {
    color: var(--gix-blue-main);
}

.gix-footer__legal p {
    margin: 0;
    color: var(--gix-gray-500);
    font-family: var(--gix-font-text);
    font-size: 0.78rem;
    text-align: right;
}

/* Evita que reglas viejas del footer oscuro sigan afectando */
.gix-footer__brand img {
    filter: none;
}

/* Responsive */
@media (max-width: 1080px) {
    .gix-footer__main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 44px;
    }
}

@media (max-width: 720px) {
    .gix-footer {
        padding: 56px 0 26px;
    }

    .gix-footer__main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    .gix-footer__brand img {
        width: min(100%, 230px);
    }

    .gix-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }

    .gix-footer__legal p {
        text-align: left;
    }
}

/* ================================
   16. Responsive
================================ */

@media (max-width: 1180px) {
    .gix-service-grid,
    .gix-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gix-footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    :root {
        --gix-header-height: 74px;
    }

    .gix-header__bar {
        width: min(calc(100% - 32px), 1440px);
    }

    .gix-header__left {
        gap: 18px;
    }

    .gix-header__logo img {
        height: 42px;
    }

    .gix-header__nav {
        display: none;
    }

    .gix-header__right {
        gap: 10px;
    }

    .gix-header__social {
        display: none;
    }

    .gix-hero,
    .gix-hero__content {
        min-height: 580px;
    }

    .gix-experience,
    .gix-contact {
        grid-template-columns: 1fr;
    }

    .gix-experience__panel ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .gix-container,
    .gix-hero__content {
        width: min(calc(100% - 30px), var(--gix-container));
    }

    .gix-hero,
    .gix-hero__content {
        min-height: 560px;
    }

    .gix-hero__content {
        padding: 66px 0;
    }

    .gix-hero h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .gix-intro,
    .gix-section {
        padding: 58px 0;
    }

    .gix-service-grid,
    .gix-sector-grid,
    .gix-stats__grid,
    .gix-news-grid,
    .gix-form-row,
    .gix-footer__main {
        grid-template-columns: 1fr;
    }

    .gix-sector-card img {
        height: 220px;
    }

    .gix-stats,
    .gix-stats__overlay {
        min-height: auto;
    }

    .gix-contact__info,
    .gix-contact__form-card {
        padding: 26px;
    }

    .gix-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gix-header__search {
        display: none;
    }

    .gix-header__logo img {
        height: 38px;
    }

    .gix-button {
        width: 100%;
    }

    .gix-hero__actions {
        width: 100%;
    }

    .gix-section__header h2,
    .gix-contact__info h2,
    .gix-experience__content h2 {
        font-size: 2rem;
    }

    .gix-intro__text {
        text-align: left;
    }
}

/* ================================
   17. Reduced Motion
================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ================================
   18. About Feature / Quiénes somos
   Complemento para index2
================================ */
/* ================================
   18. About Feature / Quiénes somos
   FIX H27-HX26
================================ */

.gix-about-feature {
    padding: 84px 0 88px;
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.gix-about-feature .gix-container {
    width: min(calc(100% - 48px), 1180px);
}

.gix-about-feature__head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 38px;
}

.gix-about-feature__head .gix-eyebrow {
    margin-bottom: 14px;
    color: var(--gix-blue-main);
}

.gix-about-feature__title {
    max-width: 640px;
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(2.55rem, 4.1vw, 4.45rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.gix-about-feature__lead {
    max-width: 520px;
    margin-left: auto;
    padding-bottom: 10px;
}

.gix-about-feature__lead p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: clamp(1rem, 1.2vw, 1.16rem);
    line-height: 1.75;
}

.gix-about-feature__body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 34px;
    align-items: stretch;
}

.gix-about-feature__text {
    padding: clamp(28px, 3.4vw, 44px);
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-soft);
}

.gix-about-feature__text p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 1.02rem;
    line-height: 1.78;
}

.gix-about-feature__text p + p {
    margin-top: 18px;
}

.gix-about-feature__text strong {
    color: var(--gix-blue-main);
    font-weight: 800;
}

.gix-about-feature__image {
    position: relative;
    min-height: 390px;
    max-height: 470px;
    margin: 0;
    overflow: hidden;
    background: var(--gix-blue-pale);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-card);
}

.gix-about-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
}

.gix-about-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 32, 96, 0.10), rgba(0, 32, 96, 0.00));
    pointer-events: none;
}

/* Neutraliza cualquier regla anterior que esté inflando títulos */
.gix-about-feature h2 {
    font-family: var(--gix-font-main);
}

/* Responsive */
@media (max-width: 980px) {
    .gix-about-feature {
        padding: 68px 0 72px;
    }

    .gix-about-feature__head,
    .gix-about-feature__body {
        grid-template-columns: 1fr;
    }

    .gix-about-feature__head {
        gap: 18px;
        margin-bottom: 30px;
    }

    .gix-about-feature__lead {
        max-width: 760px;
        margin-left: 0;
        padding-bottom: 0;
    }

    .gix-about-feature__title {
        max-width: 760px;
        font-size: clamp(2.25rem, 7vw, 3.6rem);
    }

    .gix-about-feature__image {
        min-height: 340px;
        max-height: none;
    }

    .gix-about-feature__image img {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .gix-about-feature {
        padding: 54px 0 60px;
    }

    .gix-about-feature .gix-container {
        width: min(calc(100% - 30px), 1180px);
    }

    .gix-about-feature__title {
        font-size: clamp(2rem, 10vw, 2.85rem);
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

    .gix-about-feature__text {
        padding: 24px;
    }

    .gix-about-feature__image,
    .gix-about-feature__image img {
        min-height: 280px;
    }
}
/* ================================
   18. About Feature / Quiénes somos
================================ */

.gix-about-feature {
    padding: 78px 0 84px;
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.gix-about-feature .gix-container {
    width: min(calc(100% - 48px), 1180px);
}

.gix-about-feature__head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 36px;
}

.gix-about-feature__heading {
    min-width: 0;
}

.gix-about-feature__heading .gix-eyebrow {
    margin: 0 0 14px;
    color: var(--gix-blue-main);
}

.gix-about-feature__title {
    max-width: 660px;
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(2.35rem, 4vw, 4.1rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.gix-about-feature__lead {
    max-width: 520px;
    margin-left: auto;
    padding-bottom: 8px;
}

.gix-about-feature__lead p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    line-height: 1.72;
}

.gix-about-feature__body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
    gap: 32px;
    align-items: stretch;
}

.gix-about-feature__text {
    padding: clamp(28px, 3.4vw, 44px);
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-soft);
}

.gix-about-feature__text p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 1.02rem;
    line-height: 1.78;
}

.gix-about-feature__text p + p {
    margin-top: 18px;
}

.gix-about-feature__text strong {
    color: var(--gix-blue-main);
    font-weight: 800;
}

.gix-about-feature__image {
    position: relative;
    min-height: 390px;
    max-height: 460px;
    margin: 0;
    overflow: hidden;
    background: var(--gix-blue-pale);
    border: 1px solid var(--gix-border);
    border-radius: var(--gix-radius-lg);
    box-shadow: var(--gix-shadow-card);
}

.gix-about-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
}

.gix-about-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 32, 96, 0.10), rgba(0, 32, 96, 0));
    pointer-events: none;
}

@media (max-width: 980px) {
    .gix-about-feature {
        padding: 64px 0 70px;
    }

    .gix-about-feature__head,
    .gix-about-feature__body {
        grid-template-columns: 1fr;
    }

    .gix-about-feature__head {
        gap: 18px;
        margin-bottom: 30px;
    }

    .gix-about-feature__lead {
        max-width: 760px;
        margin-left: 0;
        padding-bottom: 0;
    }

    .gix-about-feature__title {
        max-width: 760px;
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .gix-about-feature__image,
    .gix-about-feature__image img {
        min-height: 340px;
        max-height: none;
    }
}

@media (max-width: 640px) {
    .gix-about-feature {
        padding: 54px 0 60px;
    }

    .gix-about-feature .gix-container {
        width: min(calc(100% - 30px), 1180px);
    }

    .gix-about-feature__title {
        font-size: clamp(2rem, 10vw, 2.85rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    .gix-about-feature__text {
        padding: 24px;
    }

    .gix-about-feature__image,
    .gix-about-feature__image img {
        min-height: 280px;
    }
}


/* ================================
   Hero Stats Line
================================ */

.gix-hero-stats {
    position: relative;
    z-index: 3;
    background: var(--gix-white);
    border-top: 1px solid var(--gix-border);
    border-bottom: 1px solid var(--gix-border);
}

.gix-hero-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.gix-hero-stats__item {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 36px;
    border-right: 1px solid var(--gix-border);
    background: var(--gix-white);
}

.gix-hero-stats__item:last-child {
    border-right: 0;
}

.gix-hero-stats__item strong {
    display: block;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.gix-hero-stats__item span {
    display: block;
    margin-top: 12px;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-main);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .gix-hero-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gix-hero-stats__item:nth-child(2) {
        border-right: 0;
    }

    .gix-hero-stats__item:nth-child(1),
    .gix-hero-stats__item:nth-child(2) {
        border-bottom: 1px solid var(--gix-border);
    }
}

@media (max-width: 520px) {
    .gix-hero-stats__grid {
        grid-template-columns: 1fr;
    }

    .gix-hero-stats__item {
        min-height: 108px;
        padding: 24px 28px;
        border-right: 0;
        border-bottom: 1px solid var(--gix-border);
    }

    .gix-hero-stats__item:last-child {
        border-bottom: 0;
    }
}

/* ================================
   Header transparente sobre hero
   + header blanco al hacer scroll
================================ */

.gix-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    width: 100%;
    height: var(--gix-header-height);
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    color: var(--gix-white);
    transition:
        background 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        color 0.24s ease;
}

.gix-header__bar {
    height: 100%;
}

.gix-header__nav a {
    color: var(--gix-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.gix-header__nav a:hover,
.gix-header__nav a:focus {
    color: var(--gix-white);
    background: rgba(255, 255, 255, 0.14);
}

.gix-header__search {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.42);
}

.gix-header__search span {
    border-color: var(--gix-white);
}

.gix-header__search span::after {
    background: var(--gix-white);
}

.gix-header__search:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.70);
}

.gix-header__menu-toggle {
    color: var(--gix-white);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.42);
}

.gix-header__logo img {
    transition: filter 0.24s ease, opacity 0.24s ease;
}

/* Activa esta línea si el logo azul se pierde demasiado sobre el hero */
/*
.gix-header:not(.gix-header--scrolled) .gix-header__logo img {
    filter: brightness(0) invert(1);
}
*/

.gix-header--scrolled {
    color: var(--gix-ink);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 32, 96, 0.10);
    box-shadow: var(--gix-shadow-header);
}

.gix-header--scrolled .gix-header__nav a {
    color: var(--gix-black);
    text-shadow: none;
}

.gix-header--scrolled .gix-header__nav a:hover,
.gix-header--scrolled .gix-header__nav a:focus {
    color: var(--gix-blue-main);
    background: var(--gix-blue-pale);
}

.gix-header--scrolled .gix-header__search {
    background: var(--gix-white);
    border-color: var(--gix-border);
}

.gix-header--scrolled .gix-header__search span {
    border-color: var(--gix-blue-main);
}

.gix-header--scrolled .gix-header__search span::after {
    background: var(--gix-blue-main);
}

.gix-header--scrolled .gix-header__search:hover {
    background: var(--gix-blue-pale);
    border-color: var(--gix-blue-main);
}

.gix-header--scrolled .gix-header__menu-toggle {
    color: var(--gix-blue-main);
    background: var(--gix-white);
    border-color: var(--gix-border);
}

/* ================================
   Editorial Head
   Base compartida para sectores/servicios
================================ */

.gix-editorial-head {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
    gap: 58px;
    align-items: end;
    margin-bottom: 44px;
}

.gix-editorial-head__title {
    min-width: 0;
}

.gix-editorial-head__title .gix-eyebrow {
    margin: 0 0 14px;
    color: var(--gix-blue-main);
}

.gix-editorial-head__title h2 {
    max-width: 760px;
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.gix-editorial-head__copy {
    max-width: 560px;
    margin-left: auto;
    padding-bottom: 12px;
}

.gix-editorial-head__copy p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: clamp(1.02rem, 1.2vw, 1.18rem);
    line-height: 1.76;
}

/* ================================
   Sector Showcase
================================ */

.gix-sector-showcase {
    padding: 88px 0 96px;
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.gix-sector-panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gix-sector-panel {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--gix-blue-deep);
    box-shadow: 0 18px 46px rgba(0, 32, 96, 0.12);
    isolation: isolate;
}

.gix-sector-panel img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 0.55s ease;
}

.gix-sector-panel__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(0, 22, 50, 0.82), rgba(0, 22, 50, 0.18) 58%, rgba(0, 22, 50, 0.04)),
        linear-gradient(90deg, rgba(0, 32, 96, 0.22), rgba(0, 32, 96, 0.00));
}

.gix-sector-panel h3 {
    position: absolute;
    left: 26px;
    right: 22px;
    bottom: 24px;
    z-index: 2;
    margin: 0;
    color: var(--gix-white);
    font-family: var(--gix-font-main);
    font-size: clamp(1.55rem, 2.1vw, 2.35rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.gix-sector-panel:hover img {
    transform: scale(1.07);
}

/* ================================
   Service Editorial
================================ */

.gix-service-editorial {
    padding: 90px 0 100px;
    background: var(--gix-white);
    overflow: hidden;
}

.gix-service-editorial__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gix-service-editorial__card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(0, 32, 96, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.gix-service-editorial__card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 32, 96, 0.25);
    box-shadow: 0 20px 54px rgba(0, 32, 96, 0.12);
}

.gix-service-editorial__card span {
    display: block;
    margin-bottom: 18px;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gix-service-editorial__card h3 {
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(1.45rem, 1.8vw, 2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.gix-service-editorial__card p {
    margin: 20px 0 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.98rem;
    line-height: 1.72;
}

.gix-service-editorial__card a {
    margin-top: auto;
    padding-top: 28px;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 0.9rem;
    font-weight: 850;
}

.gix-service-editorial__card a:hover {
    color: var(--gix-cyan);
}

/* ================================
   Neutralizar secciones antiguas tipo SaaS si siguen en DOM
================================ */

.gix-service-grid,
.gix-sector-grid {
    display: none;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1080px) {
    .gix-editorial-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .gix-editorial-head__copy {
        max-width: 760px;
        margin-left: 0;
        padding-bottom: 0;
    }

    .gix-sector-panels,
    .gix-service-editorial__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gix-sector-panel {
        min-height: 360px;
    }
}

@media (max-width: 680px) {
    .gix-sector-showcase,
    .gix-service-editorial {
        padding: 62px 0 70px;
    }

    .gix-editorial-head__title h2 {
        font-size: clamp(2rem, 10vw, 3.15rem);
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

    .gix-sector-panels,
    .gix-service-editorial__grid {
        grid-template-columns: 1fr;
    }

    .gix-sector-panel {
        min-height: 330px;
    }

    .gix-service-editorial__card {
        min-height: auto;
    }
}

/* ================================
   Experiencia / Método / Perspectivas
   Integración index4
================================ */

.gix-experience-showcase {
    padding: 94px 0 104px;
    color: var(--gix-white);
    background:
        radial-gradient(circle at 0% 40%, rgba(18, 63, 130, 0.34), transparent 34%),
        linear-gradient(135deg, #031b35 0%, #002060 54%, #041225 100%);
    overflow: hidden;
}

.gix-experience-showcase__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.gix-experience-showcase__image {
    margin: 0;
    min-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.gix-experience-showcase__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
}

.gix-experience-showcase .gix-eyebrow {
    color: #7cc7ff;
}

.gix-experience-showcase__content h2 {
    max-width: 760px;
    margin: 0;
    color: var(--gix-white);
    font-family: var(--gix-font-main);
    font-size: clamp(2.4rem, 4.8vw, 5rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.065em;
}

.gix-experience-showcase__lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--gix-font-text);
    font-size: 1.08rem;
    line-height: 1.74;
}

.gix-experience-showcase__items {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.gix-experience-showcase__item {
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.gix-experience-showcase__item h3 {
    margin: 0 0 8px;
    color: var(--gix-white);
    font-family: var(--gix-font-main);
    font-size: 1.08rem;
    font-weight: 800;
}

.gix-experience-showcase__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--gix-font-text);
    font-size: 0.98rem;
    line-height: 1.68;
}

/* Método */

.gix-method-section {
    padding: 92px 0 104px;
    background: var(--gix-white);
    overflow: hidden;
}

.gix-method-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--gix-border);
    border-radius: 28px;
    background: var(--gix-white);
    box-shadow: 0 18px 48px rgba(0, 32, 96, 0.06);
}

.gix-method-step {
    min-height: 245px;
    padding: 34px 30px;
    border-right: 1px solid var(--gix-border);
    background: var(--gix-white);
}

.gix-method-step:last-child {
    border-right: 0;
}

.gix-method-step span {
    display: block;
    margin-bottom: 18px;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 0.92rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.gix-method-step h3 {
    margin: 0 0 12px;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 1.42rem;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.gix-method-step p {
    margin: 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.96rem;
    line-height: 1.68;
}

/* Perspectivas */

.gix-perspectives-section {
    padding: 92px 0 106px;
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
    overflow: hidden;
}

.gix-perspectives-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.76fr);
    gap: 28px;
    align-items: stretch;
}

.gix-perspectives-feature {
    position: relative;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: var(--gix-blue-deep);
    box-shadow: 0 22px 60px rgba(0, 32, 96, 0.13);
    isolation: isolate;
}

.gix-perspectives-feature img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gix-perspectives-feature__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(0, 22, 50, 0.86), rgba(0, 22, 50, 0.18) 58%, rgba(0, 22, 50, 0.04)),
        linear-gradient(90deg, rgba(0, 32, 96, 0.30), rgba(0, 32, 96, 0.00));
}

.gix-perspectives-feature__content {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    color: var(--gix-white);
}

.gix-perspectives-feature__content h3 {
    max-width: 680px;
    margin: 0;
    color: var(--gix-white);
    font-family: var(--gix-font-main);
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.065em;
    text-shadow: 0 6px 26px rgba(0, 0, 0, 0.32);
}

.gix-perspectives-feature__content p {
    max-width: 620px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--gix-font-text);
    font-size: 1rem;
    line-height: 1.72;
}

.gix-perspectives-list {
    display: grid;
    gap: 18px;
}

.gix-perspective-card {
    padding: 28px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(0, 32, 96, 0.08);
}

.gix-perspective-card span {
    display: block;
    margin-bottom: 16px;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gix-perspective-card h3 {
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: 1.42rem;
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.gix-perspective-card p {
    margin: 14px 0 0;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 0.96rem;
    line-height: 1.68;
}

/* Responsive */

@media (max-width: 1080px) {
    .gix-experience-showcase__grid,
    .gix-perspectives-layout {
        grid-template-columns: 1fr;
    }

    .gix-experience-showcase__image {
        min-height: 420px;
    }

    .gix-experience-showcase__image img {
        min-height: 420px;
    }

    .gix-method-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .gix-method-step:nth-child(2) {
        border-right: 0;
    }

    .gix-method-step:nth-child(1),
    .gix-method-step:nth-child(2) {
        border-bottom: 1px solid var(--gix-border);
    }
}

@media (max-width: 680px) {
    .gix-experience-showcase,
    .gix-method-section,
    .gix-perspectives-section {
        padding: 64px 0 72px;
    }

    .gix-experience-showcase__content h2 {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
        line-height: 1.08;
    }

    .gix-experience-showcase__image {
        min-height: 330px;
        border-radius: 22px;
    }

    .gix-experience-showcase__image img {
        min-height: 330px;
    }

    .gix-method-steps {
        grid-template-columns: 1fr;
    }

    .gix-method-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--gix-border);
    }

    .gix-method-step:last-child {
        border-bottom: 0;
    }

    .gix-perspectives-feature {
        min-height: 440px;
        border-radius: 22px;
    }

    .gix-perspectives-feature__content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .gix-perspectives-feature__content h3 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .gix-perspective-card {
        padding: 24px;
    }
}

/* ================================
   Clientes / Confianza
================================ */

.gix-trusted-clients {
    padding: 82px 0 92px;
    background: var(--gix-white);
    border-top: 1px solid var(--gix-border);
    border-bottom: 1px solid var(--gix-border);
    overflow: hidden;
}

.gix-trusted-clients__head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.76fr);
    gap: 52px;
    align-items: end;
    margin-bottom: 38px;
}

.gix-trusted-clients__head .gix-eyebrow {
    margin: 0 0 12px;
    color: var(--gix-blue-main);
}

.gix-trusted-clients__head h2 {
    max-width: 720px;
    margin: 0;
    color: var(--gix-blue-main);
    font-family: var(--gix-font-main);
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.gix-trusted-clients__head > p {
    max-width: 560px;
    margin: 0 0 6px auto;
    color: var(--gix-gray-700);
    font-family: var(--gix-font-text);
    font-size: 1.02rem;
    line-height: 1.72;
}

.gix-trusted-clients__rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gix-trusted-client {
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: var(--gix-white);
    border: 1px solid var(--gix-border);
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(0, 32, 96, 0.06);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        filter 0.18s ease;
}

.gix-trusted-client:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 32, 96, 0.24);
    box-shadow: 0 18px 46px rgba(0, 32, 96, 0.11);
}

.gix-trusted-client img {
    width: auto;
    max-width: 180px;
    max-height: 72px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.92;
    transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.gix-trusted-client:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}

.gix-trusted-client--dark {
    background: var(--gix-blue-deep);
    border-color: rgba(0, 32, 96, 0.18);
}

.gix-trusted-client--dark img {
    filter: none;
    opacity: 1;
}

/* Mobile/tablet: se vuelve carrusel horizontal sin JS */
@media (max-width: 960px) {
    .gix-trusted-clients__head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gix-trusted-clients__head > p {
        max-width: 760px;
        margin-left: 0;
    }

    .gix-trusted-clients__rail {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 24px;
        padding: 4px 0 14px;
        -webkit-overflow-scrolling: touch;
    }

    .gix-trusted-clients__rail::-webkit-scrollbar {
        height: 8px;
    }

    .gix-trusted-clients__rail::-webkit-scrollbar-track {
        background: var(--gix-gray-200);
        border-radius: 999px;
    }

    .gix-trusted-clients__rail::-webkit-scrollbar-thumb {
        background: rgba(0, 32, 96, 0.34);
        border-radius: 999px;
    }

    .gix-trusted-client {
        min-width: 230px;
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    .gix-trusted-clients {
        padding: 62px 0 70px;
    }

    .gix-trusted-clients__head h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .gix-trusted-client {
        min-width: 210px;
        min-height: 116px;
        padding: 22px;
    }

    .gix-trusted-client img {
        max-width: 150px;
        max-height: 62px;
    }
}

.gix-trusted-clients__disclaimer {
    max-width: 980px;
    margin: 22px auto 0;
    color: var(--gix-gray-500);
    font-family: var(--gix-font-text);
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: center;
}

.gix-form-success,
.gix-form-error {
    margin-bottom: 20px;
    padding: 15px 18px;
    border-radius: 14px;
    font-family: var(--gix-font-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gix-form-success {
    color: #0b4f2a;
    background: #eaf8ef;
    border: 1px solid rgba(11, 79, 42, 0.18);
}

.gix-form-error {
    color: #7a1f1f;
    background: #fff0f0;
    border: 1px solid rgba(122, 31, 31, 0.18);
}