:root {
    --gl-black: #050505;
    --gl-black-soft: #0b0b0f;
    --gl-white: #ffffff;
    --gl-purple: #7c3cff;
    --gl-yellow: #ffd400;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gl-black);
    color: var(--gl-white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.gl-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gl-logo {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gl-main-nav {
    display: flex;
    gap: 24px;
}

.gl-main-nav a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.25s ease;
}

.gl-main-nav a:hover {
    color: var(--gl-yellow);
}

.gl-home-test {
    min-height: 100vh;
    padding: 150px 24px 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 60, 255, 0.28), transparent 32%),
        radial-gradient(circle at 80% 60%, rgba(255, 212, 0, 0.13), transparent 30%),
        linear-gradient(180deg, #050505 0%, #0b0b0f 100%);
}

/* ================================
   HERO HOME
================================ */

.gl-hero {
    --hero-progress: 0;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #050505;
    isolation: isolate;
    padding: 120px 24px 80px;
}

.gl-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 60, 255, 0.24), transparent 34%),
        radial-gradient(circle at 82% 62%, rgba(255, 212, 0, 0.12), transparent 30%),
        linear-gradient(120deg, #050505 0%, #08070d 48%, #040404 100%);
}

.gl-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, calc(var(--hero-progress) * 0.7));
    z-index: 3;
    pointer-events: none;
}

.gl-hero-light {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.gl-hero-light-purple {
    left: -160px;
    top: 12%;
    background: rgba(124, 60, 255, 0.45);
    transform: translateY(calc(var(--hero-progress) * -45px));
    animation: glLightFloatPurple 8s ease-in-out infinite alternate;
}

.gl-hero-light-yellow {
    right: -220px;
    bottom: 6%;
    background: rgba(255, 212, 0, 0.24);
    opacity: calc(0.45 - (var(--hero-progress) * 0.25));
    transform: translateY(calc(var(--hero-progress) * 35px));
    animation: glLightFloatYellow 9s ease-in-out infinite alternate;
}

.gl-hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mix-blend-mode: screen;
}

.gl-hero-inner {
    max-width: 1180px;
    min-height: calc(100svh - 200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: 56px;
}

.gl-hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(calc(var(--hero-progress) * -70px));
    opacity: calc(1 - (var(--hero-progress) * 1.15));
}

.gl-hero-kicker {
    margin: 0 0 18px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 700;
}

.gl-hero-title {
    max-width: 820px;
    margin: 0;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.gl-hero-text {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.65;
}

.gl-hero-actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.gl-btn:hover {
    transform: translateY(-3px);
}

.gl-btn-primary {
    background: var(--gl-yellow);
    color: #050505;
    box-shadow: 0 18px 45px rgba(255, 212, 0, 0.18);
}

.gl-btn-primary:hover {
    box-shadow: 0 22px 60px rgba(255, 212, 0, 0.28);
}

.gl-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--gl-white);
    background: rgba(255, 255, 255, 0.04);
}

.gl-btn-secondary:hover {
    border-color: rgba(124, 60, 255, 0.8);
    box-shadow: 0 18px 45px rgba(124, 60, 255, 0.16);
}

.gl-hero-visual {
    position: relative;
    z-index: 1;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform:
        scale(calc(1 - (var(--hero-progress) * 0.04)))
        translateY(calc(var(--hero-progress) * 35px));
}

.gl-hero-image-wrap {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 4 / 5.6;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(124,60,255,.22), rgba(255,212,0,.08)),
        #101015;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(124, 60, 255, 0.14);
}

.gl-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.035);
}

.gl-hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 20%, rgba(0,0,0,.35) 100%),
        rgba(0, 0, 0, calc(var(--hero-progress) * 0.72));
    pointer-events: none;
}

.gl-hero-camera-shape {
    position: absolute;
    width: 360px;
    height: 250px;
    right: 46%;
    top: 12%;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 70% 38%, rgba(255,255,255,.12), transparent 12%),
        linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    filter: blur(0.2px);
    opacity: 0.38;
    transform: rotate(-8deg);
}

.gl-hero-camera-shape::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    left: 38px;
    top: 68px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle, rgba(124,60,255,.18), rgba(0,0,0,.22));
}

.gl-hero-social {
    position: fixed;
    right: 28px;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gl-hero-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 700;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.gl-hero-social a:hover {
    color: #050505;
    background: var(--gl-yellow);
    border-color: var(--gl-yellow);
    transform: translateX(-4px);
}
/* ================================
   SECTION — QUÉ HAGO
================================ */

.gl-section-inner {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.gl-what {
    position: relative;
    padding: 130px 0 150px;
    background:
        linear-gradient(180deg, #050505 0%, #08070d 48%, #050505 100%);
    overflow: hidden;
}

.gl-what::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 28%, rgba(124, 60, 255, 0.11), transparent 30%),
        radial-gradient(circle at 84% 70%, rgba(255, 212, 0, 0.06), transparent 28%);
    pointer-events: none;
}

.gl-section-heading {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-bottom: 58px;
}

.gl-section-kicker {
    margin: 0 0 16px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 800;
}

.gl-section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.gl-section-heading p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.7;
}

.gl-what-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gl-what-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.gl-what-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 0%, rgba(124, 60, 255, 0.14), transparent 34%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.gl-what-card::after {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gl-purple), var(--gl-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}

.gl-what-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 60, 255, 0.65);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.38),
        0 0 42px rgba(124, 60, 255, 0.16);
}

.gl-what-card:hover::before {
    opacity: 1;
}

.gl-what-card:hover::after {
    transform: scaleX(1);
}

.gl-what-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 15px;
    font-weight: 800;
    transition:
        color 0.28s ease,
        border-color 0.28s ease,
        transform 0.28s ease,
        background 0.28s ease;
}

.gl-what-card:hover .gl-what-icon {
    color: var(--gl-yellow);
    border-color: rgba(255, 212, 0, 0.45);
    background: rgba(255, 212, 0, 0.08);
    transform: translateY(-2px);
}

.gl-what-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.gl-what-card p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.7;
}

.gl-card-link {
    position: absolute;
    z-index: 1;
    left: 30px;
    bottom: 30px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.25s ease;
}

.gl-card-link span {
    transition: transform 0.25s ease;
}

.gl-what-card:hover .gl-card-link {
    color: var(--gl-yellow);
}

.gl-what-card:hover .gl-card-link span {
    transform: translateX(4px);
}
/* ================================
   FIX — CARDS QUÉ HAGO
================================ */

.gl-what-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.gl-what-card p {
    margin-bottom: 24px;
}

.gl-card-link {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: auto;
    padding-top: 20px;
}
/* ================================
   SECTION — PORTFOLIO DESTACADO
================================ */

.gl-portfolio {
    position: relative;
    padding: 140px 0 160px;
    background:
        linear-gradient(180deg, #050505 0%, #090714 46%, #050505 100%);
    overflow: hidden;
}

.gl-portfolio::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(124, 60, 255, 0.16), transparent 30%),
        radial-gradient(circle at 85% 78%, rgba(255, 212, 0, 0.07), transparent 28%);
    pointer-events: none;
}

.gl-portfolio::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(124, 60, 255, 0.16), #050505);
    pointer-events: none;
}

.gl-portfolio-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px;
}

.gl-portfolio-action {
    padding-bottom: 8px;
}

.gl-portfolio-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    perspective: 1200px;
}

.gl-portfolio-card {
    position: relative;
    min-height: 430px;
    border-radius: 30px;
    overflow: hidden;
    background: #101015;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    transform-style: preserve-3d;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-portfolio-card:hover {
    border-color: rgba(255, 212, 0, 0.55);
    box-shadow:
        0 34px 110px rgba(0, 0, 0, 0.48),
        0 0 45px rgba(124, 60, 255, 0.18);
}

.gl-portfolio-link {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 430px;
    flex-direction: column;
    text-decoration: none;
    color: var(--gl-white);
}

.gl-portfolio-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72)),
        var(--portfolio-img),
        radial-gradient(circle at 35% 20%, rgba(124,60,255,.28), transparent 30%),
        #14141a;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.gl-portfolio-card:hover .gl-portfolio-media {
    transform: scale(1.09);
    filter: saturate(1.12) contrast(1.08);
}

.gl-portfolio-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 74%, rgba(0,0,0,0.92) 100%),
        rgba(0, 0, 0, 0);
    transition: background 0.35s ease;
}

.gl-portfolio-card:hover .gl-portfolio-media::after {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.62) 66%, rgba(0,0,0,0.94) 100%),
        rgba(124, 60, 255, 0.16);
}

.gl-portfolio-play {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 212, 0, 0.95);
    color: #050505;
    font-size: 13px;
    box-shadow: 0 18px 50px rgba(255, 212, 0, 0.22);
}

.gl-portfolio-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 28px;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.gl-portfolio-card:hover .gl-portfolio-content {
    transform: translateY(0);
}

.gl-portfolio-content p {
    margin: 0 0 12px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 11px;
    font-weight: 800;
}

.gl-portfolio-content h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.gl-portfolio-content span {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        color 0.3s ease;
}

.gl-portfolio-card:hover .gl-portfolio-content span {
    opacity: 1;
    transform: translateY(0);
    color: var(--gl-yellow);
}
/* ================================
   SECTION — FRASE DE AUTORIDAD
================================ */

.gl-authority {
    position: relative;
    padding: 160px 0 170px;
    background: #050505;
    overflow: hidden;
    isolation: isolate;
}

.gl-authority-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 25% 50%, rgba(124, 60, 255, 0.18), transparent 34%),
        radial-gradient(circle at 85% 30%, rgba(255, 212, 0, 0.06), transparent 26%),
        linear-gradient(135deg, #050505 0%, #090714 50%, #050505 100%);
}

.gl-authority-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, transparent, black 22%, black 78%, transparent);
}

.gl-authority-content {
    max-width: 1040px;
}

.gl-authority-line {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 2px;
    margin-bottom: 42px;
    overflow: hidden;
}

.gl-authority-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gl-yellow), var(--gl-purple), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s ease;
}

.gl-authority-line.is-visible::before {
    transform: scaleX(1);
}

.gl-authority-title {
    margin: 0;
    max-width: 1040px;
    font-size: clamp(44px, 6vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.gl-authority-title span {
    color: var(--gl-yellow);
    text-shadow: 0 0 34px rgba(255, 212, 0, 0.22);
}

.gl-authority-text {
    max-width: 760px;
    margin: 36px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.7;
}
/* ================================
   SECTION — SERVICIOS PRINCIPALES
================================ */

.gl-services {
    position: relative;
    padding: 150px 0 165px;
    background:
        linear-gradient(180deg, #050505 0%, #07070b 58%, #10091f 100%);
    overflow: hidden;
}

.gl-services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 20%, rgba(124, 60, 255, 0.12), transparent 30%),
        radial-gradient(circle at 82% 84%, rgba(255, 212, 0, 0.08), transparent 28%);
    pointer-events: none;
}

.gl-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 64px;
}

.gl-service-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        opacity 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 212, 0, 0.12), transparent 34%),
        radial-gradient(circle at 80% 100%, rgba(124, 60, 255, 0.12), transparent 30%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.gl-services-grid:hover .gl-service-card:not(:hover) {
    opacity: 0.42;
}

.gl-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 212, 0, 0.55);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.42),
        0 0 50px rgba(255, 212, 0, 0.13);
}

.gl-service-card:hover::before {
    opacity: 1;
}

.gl-service-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
    transition: color 0.28s ease;
}

.gl-service-card:hover .gl-service-number {
    color: var(--gl-yellow);
}

.gl-service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.035em;
    transition: transform 0.28s ease;
}

.gl-service-card:hover h3 {
    transform: translateY(-3px);
}

.gl-service-card p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.7;
}

.gl-service-extra {
    position: relative;
    z-index: 1;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
    transition:
        max-height 0.32s ease,
        opacity 0.32s ease,
        margin-top 0.32s ease;
}

.gl-service-card:hover .gl-service-extra {
    max-height: 80px;
    opacity: 1;
    margin-top: 16px;
}

.gl-service-cta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 28px;
    display: inline-flex;
    width: fit-content;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.gl-service-card:hover .gl-service-cta {
    color: var(--gl-yellow);
    transform: translateX(4px);
}
/* ================================
   SECTION — GL AGENCIA CREATIVA
================================ */

.gl-agency {
    position: relative;
    padding: 155px 0 170px;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 60, 255, 0.22), transparent 34%),
        radial-gradient(circle at 85% 80%, rgba(255, 212, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #10091f 0%, #07070b 52%, #050505 100%);
    overflow: hidden;
}

.gl-agency::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.45;
    pointer-events: none;
}

.gl-agency-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 56px;
    align-items: end;
    margin-bottom: 66px;
}

.gl-agency-text {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.gl-agency-text p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.gl-agency-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gl-agency-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.gl-agency-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 212, 0, 0.62);
    box-shadow:
        0 34px 110px rgba(0, 0, 0, 0.48),
        0 0 58px rgba(255, 212, 0, 0.14);
}

.gl-agency-preview {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.88)),
        var(--agency-img),
        radial-gradient(circle at 30% 20%, rgba(124,60,255,.22), transparent 32%),
        #111116;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transform: scale(1.03);
    transition:
        opacity 0.35s ease,
        transform 0.45s ease,
        filter 0.35s ease;
}

.gl-agency-card:hover .gl-agency-preview {
    opacity: 0.62;
    transform: scale(1.08);
    filter: saturate(1.1) contrast(1.08);
}

.gl-agency-content {
    position: relative;
    z-index: 1;
}

.gl-agency-content span {
    display: inline-flex;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    transition: color 0.28s ease;
}

.gl-agency-card:hover .gl-agency-content span {
    color: var(--gl-yellow);
}

.gl-agency-content h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.gl-agency-content p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

.gl-agency-content strong {
    display: inline-flex;
    margin-top: 20px;
    color: var(--gl-yellow);
    font-size: 15px;
    font-weight: 900;
}

.gl-agency-content a {
    display: inline-flex;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.gl-agency-card:hover .gl-agency-content a {
    color: var(--gl-yellow);
    transform: translateX(4px);
}
/* ================================
   SECTION — PROYECTOS PROPIOS
================================ */

.gl-projects {
    position: relative;
    padding: 155px 0 165px;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.16), transparent 34%),
        radial-gradient(circle at 88% 70%, rgba(255, 212, 0, 0.07), transparent 30%),
        linear-gradient(180deg, #050505 0%, #08070d 54%, #050505 100%);
    overflow: hidden;
}

.gl-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.22;
    pointer-events: none;
}

.gl-projects-header {
    position: relative;
    z-index: 1;
    margin-bottom: 66px;
}

.gl-projects-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.gl-project-item {
    position: relative;
}

.gl-project-link {
    position: relative;
    min-height: 156px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto 44px;
    gap: 26px;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
    text-decoration: none;
    color: var(--gl-white);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-project-link:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 60, 255, 0.62);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.42),
        0 0 50px rgba(124, 60, 255, 0.16);
}

.gl-project-preview {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.78) 42%, rgba(5,5,5,0.36) 100%),
        var(--project-img),
        radial-gradient(circle at 70% 50%, rgba(124,60,255,0.22), transparent 34%),
        #101015;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition:
        opacity 0.35s ease,
        transform 0.45s ease;
}

.gl-project-link:hover .gl-project-preview {
    opacity: 1;
    transform: scale(1.08);
}

.gl-project-number,
.gl-project-main,
.gl-project-tag,
.gl-project-arrow {
    position: relative;
    z-index: 1;
}

.gl-project-number {
    color: rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.18em;
    transition: color 0.28s ease;
}

.gl-project-link:hover .gl-project-number {
    color: var(--gl-yellow);
}

.gl-project-main {
    transition: transform 0.28s ease;
}

.gl-project-link:hover .gl-project-main {
    transform: translateX(4px);
}

.gl-project-main h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.gl-project-main p {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.65;
}

.gl-project-tag {
    padding: 10px 14px;
    border-radius: 999px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 12px;
    font-weight: 800;
}

.gl-project-arrow {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #050505;
    background: var(--gl-yellow);
    font-weight: 900;
    transform: translateX(-6px);
    opacity: 0;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.gl-project-link:hover .gl-project-arrow {
    opacity: 1;
    transform: translateX(0);
}
/* ================================
   SECTION — PROCESO DE TRABAJO
================================ */

.gl-process {
    --process-progress: 0;
    position: relative;
    padding: 155px 0 170px;
    background:
        radial-gradient(circle at 20% 12%, rgba(124, 60, 255, 0.14), transparent 34%),
        radial-gradient(circle at 82% 78%, rgba(255, 212, 0, 0.07), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 55%, #050505 100%);
    overflow: hidden;
}

.gl-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.18;
    pointer-events: none;
}

.gl-process-header {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.gl-process-timeline {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
    padding-left: 92px;
}

.gl-process-line {
    position: absolute;
    left: 34px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.gl-process-line span {
    display: block;
    width: 100%;
    height: calc(var(--process-progress) * 100%);
    background: linear-gradient(180deg, var(--gl-yellow), var(--gl-purple));
    box-shadow: 0 0 28px rgba(255, 212, 0, 0.22);
    transition: height 0.08s linear;
}

.gl-process-step {
    position: relative;
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    min-height: 160px;
    padding: 30px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-process-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.1), transparent 28%),
        radial-gradient(circle at 90% 78%, rgba(124, 60, 255, 0.13), transparent 32%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.gl-process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 212, 0, 0.5);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.42),
        0 0 50px rgba(255, 212, 0, 0.12);
}

.gl-process-step:hover::before {
    opacity: 1;
}

.gl-process-number,
.gl-process-content {
    position: relative;
    z-index: 1;
}

.gl-process-number {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.28);
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
    transition: color 0.28s ease;
}

.gl-process-step:hover .gl-process-number {
    color: var(--gl-yellow);
}

.gl-process-content h3 {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -0.045em;
}

.gl-process-content p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.65;
}

.gl-process-content span {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
    transition:
        max-height 0.3s ease,
        opacity 0.3s ease,
        margin-top 0.3s ease;
}

.gl-process-step:hover .gl-process-content span {
    max-height: 80px;
    opacity: 1;
    margin-top: 16px;
}
/* ================================
   SECTION — CONFIANZA / CLIENTES
================================ */

.gl-trust {
    position: relative;
    padding: 150px 0 165px;
    background:
        radial-gradient(circle at 16% 18%, rgba(124, 60, 255, 0.13), transparent 34%),
        radial-gradient(circle at 82% 80%, rgba(255, 212, 0, 0.06), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 58%, #050505 100%);
    overflow: hidden;
}

.gl-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.18;
    pointer-events: none;
}

.gl-trust-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 56px;
    align-items: end;
    margin-bottom: 64px;
}

.gl-trust-note {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.gl-trust-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.gl-trust-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gl-trust-item {
    position: relative;
    min-height: 150px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
    border: 1px solid rgba(255, 255, 255, 0.095);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.26s ease,
        border-color 0.26s ease,
        background 0.26s ease,
        box-shadow 0.26s ease;
}

.gl-trust-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(124, 60, 255, 0.15), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(255, 212, 0, 0.09), transparent 30%);
    opacity: 0;
    transition: opacity 0.26s ease;
    pointer-events: none;
}

.gl-trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 212, 0, 0.44);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.032));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.36),
        0 0 38px rgba(255, 212, 0, 0.1);
}

.gl-trust-item:hover::before {
    opacity: 1;
}

.gl-trust-item span,
.gl-trust-item h3 {
    position: relative;
    z-index: 1;
}

.gl-trust-item span {
    margin-bottom: 14px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.4;
}

.gl-trust-item h3 {
    margin: 0;
    color: var(--gl-white);
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
/* ================================
   SECTION — CTA FINAL
================================ */

.gl-final-cta {
    position: relative;
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
    overflow: hidden;
}

.gl-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,0.45), transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(5,5,5,0.12), transparent 30%);
    pointer-events: none;
}

.gl-final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(5,5,5,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5,5,5,.045) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.32;
    pointer-events: none;
}

.gl-final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.gl-final-cta-kicker {
    margin: 0 0 18px;
    color: rgba(5, 5, 5, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 900;
}

.gl-final-cta h2 {
    margin: 0;
    max-width: 950px;
    font-size: clamp(44px, 6vw, 94px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-final-cta p {
    max-width: 720px;
    margin: 30px 0 0;
    color: rgba(5, 5, 5, 0.74);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}

.gl-final-cta-actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gl-final-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.gl-final-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.gl-final-btn-primary {
    background: #050505;
    color: var(--gl-white);
    box-shadow: 0 22px 60px rgba(5, 5, 5, 0.24);
}

.gl-final-btn-primary:hover {
    box-shadow: 0 28px 80px rgba(5, 5, 5, 0.34);
}

.gl-final-btn-secondary {
    color: #050505;
    border: 1px solid rgba(5, 5, 5, 0.42);
    background: rgba(255, 255, 255, 0.18);
}

.gl-final-btn-secondary:hover {
    background: #050505;
    color: var(--gl-white);
    border-color: #050505;
}

.gl-final-cta-note {
    display: inline-flex;
    margin-top: 22px;
    color: rgba(5, 5, 5, 0.62);
    font-size: 14px;
    font-weight: 800;
}
/* ================================
   FOOTER DEFINITIVO
================================ */

.gl-site-footer {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(124, 60, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: var(--gl-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.gl-footer-inner {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: 76px 0 34px;
}

.gl-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 46px;
    padding-bottom: 56px;
}

.gl-footer-brand {
    max-width: 420px;
}

.gl-footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--gl-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.gl-footer-claim {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.gl-footer-text {
    margin: 22px 0 0;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 15px;
    line-height: 1.7;
}

.gl-footer-column {
    position: relative;
}

.gl-footer-column h3 {
    margin: 0 0 20px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 900;
}

.gl-footer-column nav {
    display: grid;
    gap: 12px;
}

.gl-footer-column a,
.gl-footer-legal a {
    position: relative;
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.gl-footer-column a::after,
.gl-footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: var(--gl-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.gl-footer-column a:hover,
.gl-footer-legal a:hover {
    color: var(--gl-yellow);
    transform: translateX(3px);
}

.gl-footer-column a:hover::after,
.gl-footer-legal a:hover::after {
    transform: scaleX(1);
}

.gl-footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

.gl-footer-legal {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}/* ================================
   FOOTER DEFINITIVO
================================ */

.gl-site-footer {
    position: relative;
    background:
        radial-gradient(circle at 18% 0%, rgba(124, 60, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    color: var(--gl-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.gl-footer-inner {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    padding: 76px 0 34px;
}

.gl-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 46px;
    padding-bottom: 56px;
}

.gl-footer-brand {
    max-width: 420px;
}

.gl-footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--gl-white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.gl-footer-claim {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.gl-footer-text {
    margin: 22px 0 0;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 15px;
    line-height: 1.7;
}

.gl-footer-column {
    position: relative;
}

.gl-footer-column h3 {
    margin: 0 0 20px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 900;
}

.gl-footer-column nav {
    display: grid;
    gap: 12px;
}

.gl-footer-column a,
.gl-footer-legal a {
    position: relative;
    width: fit-content;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.gl-footer-column a::after,
.gl-footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: var(--gl-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.gl-footer-column a:hover,
.gl-footer-legal a:hover {
    color: var(--gl-yellow);
    transform: translateX(3px);
}

.gl-footer-column a:hover::after,
.gl-footer-legal a:hover::after {
    transform: scaleX(1);
}

.gl-footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

.gl-footer-legal {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
/* ==================================================
   OPTIMIZACIÓN GENERAL HOME
   Reduce efectos pesados sin romper el diseño
================================================== */

/* Suaviza el renderizado general */
.gl-home {
    overflow-x: hidden;
}

/* Reduce el blur pesado del header */
.gl-site-header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Optimiza secciones largas */
.gl-what,
.gl-portfolio,
.gl-authority,
.gl-services,
.gl-agency,
.gl-projects,
.gl-process,
.gl-trust {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

/* Reduce luces pesadas del Hero */
.gl-hero-light {
    width: 420px;
    height: 420px;
    filter: blur(55px);
    opacity: 0.42;
}

/* Reduce sombras muy grandes en cards */
.gl-what-card,
.gl-portfolio-card,
.gl-service-card,
.gl-agency-card,
.gl-project-link,
.gl-process-step,
.gl-trust-item {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.26);
}

/* Hover menos costoso pero visualmente parecido */
.gl-what-card:hover,
.gl-service-card:hover,
.gl-agency-card:hover,
.gl-process-step:hover,
.gl-trust-item:hover {
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.34),
        0 0 32px rgba(255, 212, 0, 0.10);
}

/* Portfolio hover suavizado */
.gl-portfolio-card:hover {
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.38),
        0 0 32px rgba(124, 60, 255, 0.14);
}

/* Evita repintados raros en imágenes */
.gl-hero-image,
.gl-portfolio-media,
.gl-agency-preview,
.gl-project-preview {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Mejora transiciones generales */
.gl-btn,
.gl-final-btn,
.gl-card-link,
.gl-service-cta,
.gl-agency-content a,
.gl-project-link,
.gl-footer-column a {
    will-change: transform;
}
/* ================================
   PÁGINA — CONTACTO
================================ */

.gl-contact-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-contact-hero {
    position: relative;
    min-height: 82vh;
    padding: 150px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.gl-contact-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.26), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(255, 212, 0, 0.13), transparent 30%),
        linear-gradient(135deg, #050505 0%, #0b0715 55%, #050505 100%);
}

.gl-contact-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.28;
}

.gl-contact-hero-content {
    max-width: 980px;
}

.gl-contact-hero h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(56px, 8vw, 120px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-contact-hero-content > p {
    max-width: 760px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.gl-contact-actions {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gl-contact-note {
    display: inline-flex;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 800;
}

.gl-contact-options {
    position: relative;
    padding: 140px 0 150px;
    background:
        radial-gradient(circle at 18% 22%, rgba(124, 60, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 60px;
}

.gl-contact-card {
    min-height: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.55);
    box-shadow:
        0 26px 78px rgba(0, 0, 0, 0.36),
        0 0 34px rgba(255, 212, 0, 0.1);
}

.gl-contact-card span {
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.gl-contact-card h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.gl-contact-card p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.65;
}

.gl-contact-info {
    padding: 130px 0;
    background:
        radial-gradient(circle at 82% 30%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #07070b 0%, #050505 100%);
}

.gl-contact-info-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 56px;
    align-items: start;
    padding: 46px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.gl-contact-info-box h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gl-contact-info-list {
    display: grid;
    gap: 16px;
}

.gl-contact-info-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.6;
}

.gl-contact-info-list strong {
    color: var(--gl-yellow);
}

.gl-contact-final {
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
}

.gl-contact-final-content {
    max-width: 900px;
}

.gl-contact-final h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-contact-final p {
    max-width: 720px;
    margin: 28px 0 38px;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}
/* ================================
   PÁGINA — SERVICIOS
================================ */

.gl-services-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-services-page-hero {
    position: relative;
    min-height: 82vh;
    padding: 150px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.gl-services-page-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.26), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(255, 212, 0, 0.12), transparent 30%),
        linear-gradient(135deg, #050505 0%, #0b0715 55%, #050505 100%);
}

.gl-services-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
}

.gl-services-page-hero-content {
    max-width: 1040px;
}

.gl-services-page-hero h1 {
    margin: 0;
    max-width: 1040px;
    font-size: clamp(54px, 7.4vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-services-page-hero-content > p {
    max-width: 780px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.gl-services-page-list {
    position: relative;
    padding: 140px 0 155px;
    background:
        radial-gradient(circle at 16% 22%, rgba(124, 60, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 64px;
}

.gl-services-page-card {
    position: relative;
    min-height: 440px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-services-page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 212, 0, 0.1), transparent 30%),
        radial-gradient(circle at 86% 100%, rgba(124, 60, 255, 0.14), transparent 32%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.gl-services-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.52);
    box-shadow:
        0 26px 78px rgba(0, 0, 0, 0.36),
        0 0 34px rgba(255, 212, 0, 0.1);
}

.gl-services-page-card:hover::before {
    opacity: 1;
}

.gl-services-page-card span,
.gl-services-page-card h3,
.gl-services-page-card p,
.gl-services-page-card ul,
.gl-services-page-card a {
    position: relative;
    z-index: 1;
}

.gl-services-page-card span {
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.gl-services-page-card h3 {
    margin: 0;
    font-size: 31px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.gl-services-page-card p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.gl-services-page-card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.gl-services-page-card li {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
}

.gl-services-page-card li::before {
    content: "— ";
    color: var(--gl-yellow);
    font-weight: 900;
}

.gl-services-page-card a {
    width: fit-content;
    margin-top: auto;
    padding-top: 28px;
    color: var(--gl-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.25s ease;
}

.gl-services-page-card a:hover {
    transform: translateX(4px);
}

.gl-services-page-cta {
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
}

.gl-services-page-cta-box {
    max-width: 920px;
}

.gl-services-page-cta h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-services-page-cta p {
    max-width: 720px;
    margin: 28px 0 38px;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}
/* ================================
   PÁGINA — GL AGENCIA CREATIVA
================================ */

.gl-agency-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-agency-page-hero {
    position: relative;
    min-height: 82vh;
    padding: 150px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.gl-agency-page-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.26), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(255, 212, 0, 0.16), transparent 30%),
        linear-gradient(135deg, #050505 0%, #12091f 55%, #050505 100%);
}

.gl-agency-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
}

.gl-agency-page-hero-content {
    max-width: 1040px;
}

.gl-agency-page-hero h1 {
    margin: 0;
    max-width: 1060px;
    font-size: clamp(54px, 7.2vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-agency-page-hero-content > p {
    max-width: 780px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.gl-agency-page-intro {
    padding: 120px 0;
    background:
        radial-gradient(circle at 82% 30%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-agency-page-intro-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    gap: 56px;
    align-items: end;
    padding: 46px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.gl-agency-page-intro-box h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gl-agency-page-intro-box > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.gl-agency-page-services {
    padding: 140px 0 155px;
    background:
        radial-gradient(circle at 16% 22%, rgba(124, 60, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #07070b 0%, #050505 100%);
}

.gl-agency-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 64px;
}

.gl-agency-page-card {
    position: relative;
    min-height: 350px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-agency-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.52);
    box-shadow:
        0 26px 78px rgba(0, 0, 0, 0.36),
        0 0 34px rgba(255, 212, 0, 0.1);
}

.gl-agency-page-card span {
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.gl-agency-page-card h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.gl-agency-page-card p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.gl-agency-page-card strong {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gl-yellow);
    font-size: 16px;
    font-weight: 900;
}

.gl-agency-page-card a {
    width: fit-content;
    margin-top: auto;
    padding-top: 28px;
    color: var(--gl-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.25s ease;
}

.gl-agency-page-card a:hover {
    transform: translateX(4px);
}

.gl-agency-page-process {
    padding: 130px 0;
    background:
        radial-gradient(circle at 82% 26%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-agency-page-audience {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
}

.gl-agency-page-audience-item {
    min-height: 260px;
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
}

.gl-agency-page-audience-item h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.045em;
}

.gl-agency-page-audience-item p {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.gl-agency-page-cta {
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
}

.gl-agency-page-cta-box {
    max-width: 920px;
}

.gl-agency-page-cta h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-agency-page-cta p {
    max-width: 720px;
    margin: 28px 0 38px;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}
/* ================================
   PÁGINA — PORTFOLIO
================================ */

.gl-portfolio-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-portfolio-page-hero {
    position: relative;
    min-height: 82vh;
    padding: 150px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.gl-portfolio-page-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.28), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(255, 212, 0, 0.12), transparent 30%),
        linear-gradient(135deg, #050505 0%, #0b0715 55%, #050505 100%);
}

.gl-portfolio-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
}

.gl-portfolio-page-hero-content {
    max-width: 1060px;
}

.gl-portfolio-page-hero h1 {
    margin: 0;
    max-width: 1060px;
    font-size: clamp(54px, 7.2vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-portfolio-page-hero-content > p {
    max-width: 800px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.gl-portfolio-page-featured {
    padding: 140px 0 155px;
    background:
        radial-gradient(circle at 16% 22%, rgba(124, 60, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 64px;
}

.gl-portfolio-page-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 32px;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-portfolio-page-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 212, 0, 0.52);
    box-shadow:
        0 26px 78px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(124, 60, 255, 0.14);
}

.gl-portfolio-page-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.88)),
        var(--portfolio-page-img),
        radial-gradient(circle at 30% 20%, rgba(124,60,255,.22), transparent 32%),
        #111116;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition:
        transform 0.45s ease,
        filter 0.35s ease;
}

.gl-portfolio-page-card:hover .gl-portfolio-page-media {
    transform: scale(1.09);
    filter: saturate(1.08) contrast(1.06);
}

.gl-portfolio-page-content {
    position: relative;
    z-index: 1;
    padding: 30px;
}

.gl-portfolio-page-content span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 900;
}

.gl-portfolio-page-content h3 {
    margin: 0;
    font-size: 31px;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.gl-portfolio-page-content p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

.gl-portfolio-page-categories {
    padding: 125px 0;
    background:
        radial-gradient(circle at 84% 28%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #07070b 0%, #050505 100%);
}

.gl-portfolio-page-categories-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 56px;
    align-items: end;
    padding: 46px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.gl-portfolio-page-categories-box h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gl-portfolio-page-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gl-portfolio-page-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.105);
    font-size: 13px;
    font-weight: 800;
}

.gl-portfolio-page-cta {
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
}

.gl-portfolio-page-cta-box {
    max-width: 920px;
}

.gl-portfolio-page-cta h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-portfolio-page-cta p {
    max-width: 720px;
    margin: 28px 0 38px;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}
/* ================================
   PÁGINA — PROYECTOS PROPIOS
================================ */

.gl-projects-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-projects-page-hero {
    position: relative;
    min-height: 82vh;
    padding: 150px 0 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.gl-projects-page-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 20%, rgba(124, 60, 255, 0.28), transparent 34%),
        radial-gradient(circle at 88% 72%, rgba(255, 212, 0, 0.11), transparent 30%),
        linear-gradient(135deg, #050505 0%, #0b0715 55%, #050505 100%);
}

.gl-projects-page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
}

.gl-projects-page-hero-content {
    max-width: 1060px;
}

.gl-projects-page-hero h1 {
    margin: 0;
    max-width: 1060px;
    font-size: clamp(54px, 7.2vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-projects-page-hero-content > p {
    max-width: 800px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.65;
}

.gl-projects-page-featured {
    padding: 140px 0 155px;
    background:
        radial-gradient(circle at 16% 22%, rgba(124, 60, 255, 0.14), transparent 32%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-projects-page-list {
    display: grid;
    gap: 26px;
    margin-top: 64px;
}

.gl-projects-page-item {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.gl-projects-page-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.5);
    box-shadow:
        0 28px 86px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(124, 60, 255, 0.14);
}

.gl-projects-page-media {
    min-height: 430px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72)),
        var(--project-page-img),
        radial-gradient(circle at 35% 20%, rgba(124,60,255,.22), transparent 32%),
        #111116;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition:
        transform 0.45s ease,
        filter 0.35s ease;
}

.gl-projects-page-item:hover .gl-projects-page-media {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.06);
}

.gl-projects-page-content {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gl-projects-page-content span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 11px;
    font-weight: 900;
}

.gl-projects-page-content h3 {
    margin: 0;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.gl-projects-page-content p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.65;
}

.gl-projects-page-content ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.gl-projects-page-content li {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.105);
    font-size: 13px;
    font-weight: 800;
}

.gl-projects-page-philosophy {
    padding: 125px 0;
    background:
        radial-gradient(circle at 84% 28%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #07070b 0%, #050505 100%);
}

.gl-projects-page-philosophy-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 56px;
    align-items: end;
    padding: 46px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.gl-projects-page-philosophy-box h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.gl-projects-page-philosophy-box > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.gl-projects-page-cta {
    padding: 130px 0;
    background: var(--gl-yellow);
    color: #050505;
}

.gl-projects-page-cta-box {
    max-width: 920px;
}

.gl-projects-page-cta h2 {
    margin: 0;
    font-size: clamp(42px, 6vw, 88px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.gl-projects-page-cta p {
    max-width: 720px;
    margin: 28px 0 38px;
    color: rgba(5, 5, 5, 0.72);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    font-weight: 600;
}
/* ================================
   PÁGINAS LEGALES
================================ */

.gl-legal-page {
    background: #050505;
    color: var(--gl-white);
    overflow-x: hidden;
}

.gl-legal-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        radial-gradient(circle at 18% 22%, rgba(124, 60, 255, 0.22), transparent 34%),
        radial-gradient(circle at 86% 74%, rgba(255, 212, 0, 0.09), transparent 30%),
        linear-gradient(135deg, #050505 0%, #0b0715 55%, #050505 100%);
    overflow: hidden;
}

.gl-legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.25;
    pointer-events: none;
}

.gl-legal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.gl-legal-hero h1 {
    margin: 0;
    font-size: clamp(54px, 8vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.gl-legal-hero p {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: 1.65;
}

.gl-legal-content-section {
    padding: 95px 0 130px;
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 212, 0, 0.055), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-legal-content {
    max-width: 920px;
    padding: 46px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 24px 75px rgba(0, 0, 0, 0.28);
}

.gl-legal-content h2 {
    margin: 44px 0 18px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gl-legal-content h2:first-child {
    margin-top: 0;
}

.gl-legal-content p,
.gl-legal-content li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.gl-legal-content p {
    margin: 0 0 18px;
}

.gl-legal-content ul {
    margin: 0 0 24px;
    padding-left: 20px;
}

.gl-legal-content strong {
    color: var(--gl-white);
}

.gl-legal-content a {
    color: var(--gl-yellow);
    text-decoration: none;
    font-weight: 800;
}

.gl-legal-content a:hover {
    text-decoration: underline;
}
/* Ajuste extra — grupos de logos */

.gl-logo-group {
    position: relative;
    margin-top: 34px;
}

.gl-logo-group h3 {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
}

.gl-logo-group-media {
    margin-top: 42px;
}

.gl-logo-marquee-reverse .gl-logo-track {
    animation-direction: reverse;
}
/* ================================
   HOME — LOGOS / CONFIANZA
================================ */

.gl-logo-strip {
    position: relative;
    padding: 105px 0 115px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 35%, rgba(124, 60, 255, 0.12), transparent 32%),
        radial-gradient(circle at 82% 68%, rgba(255, 212, 0, 0.07), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.gl-logo-strip-header {
    max-width: 840px;
    margin-bottom: 46px;
}

.gl-logo-strip-header h2 {
    margin: 0;
    font-size: clamp(36px, 4.6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.gl-logo-strip-header p:not(.gl-section-kicker) {
    max-width: 820px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.65;
}

.gl-logo-group {
    position: relative;
    margin-top: 34px;
}

.gl-logo-group h3 {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 900;
}

.gl-logo-group-media {
    margin-top: 42px;
}

.gl-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 22px 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.gl-logo-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    gap: 18px;
    animation: glLogoMarquee 34s linear infinite;
}

.gl-logo-marquee:hover .gl-logo-track {
    animation-play-state: paused;
}

.gl-logo-marquee-reverse .gl-logo-track {
    animation-direction: reverse;
}

.gl-logo-item {
    width: 230px;
    height: 112px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.095);
    opacity: 0.72;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.gl-logo-item:hover {
    opacity: 1;
    transform: translateY(-4px);
    border-color: rgba(255, 212, 0, 0.38);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
}

.gl-logo-item img {
    display: block;
    max-width: 92%;
    max-height: 74px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.65);
    opacity: 0.9;
}

.gl-logo-item:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

@keyframes glLogoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* Ajuste visual específico para la fila de medios */

.gl-logo-group-media .gl-logo-item {
    width: 310px;
    height: 118px;
}

.gl-logo-group-media .gl-logo-item img {
    max-height: 78px;
    max-width: 88%;
}
/* ================================
   HOME — AUTORIDAD PROFESIONAL
================================ */

.gl-authority-pro {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 34%, rgba(124, 60, 255, 0.16), transparent 34%),
        radial-gradient(circle at 84% 72%, rgba(255, 212, 0, 0.075), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
}

.gl-authority-pro-box {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 54px;
    align-items: stretch;
    padding: 48px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.026));
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow:
        0 28px 85px rgba(0, 0, 0, 0.34),
        0 0 60px rgba(124, 60, 255, 0.075);
}

.gl-authority-pro-content h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 5.8vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.gl-authority-pro-content p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.7;
}

.gl-authority-pro-points {
    display: grid;
    gap: 18px;
}

.gl-authority-pro-point {
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.095);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.gl-authority-pro-point:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 212, 0, 0.36);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
}

.gl-authority-pro-point span {
    display: block;
    margin-bottom: 18px;
    color: var(--gl-yellow);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.gl-authority-pro-point strong {
    display: block;
    color: var(--gl-white);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.gl-authority-pro-point p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    line-height: 1.6;
}
/* ================================
   HOME — ECOSISTEMA PROFESIONAL
================================ */

.gl-ecosystem {
    position: relative;
}

.gl-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 58px;
}

.gl-ecosystem-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 32px;
    background: #09090d;
    border: 1px solid rgba(255, 255, 255, 0.105);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.gl-ecosystem-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.38);
    box-shadow:
        0 34px 95px rgba(0, 0, 0, 0.45),
        0 0 55px rgba(255, 212, 0, 0.09);
}

.gl-ecosystem-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.84) 68%, rgba(0,0,0,0.96) 100%),
        var(--eco-img);
    background-size: cover;
    background-position: center;
    opacity: 0.62;
    transform: scale(1.04);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.gl-ecosystem-card:hover .gl-ecosystem-bg {
    transform: scale(1.09);
    opacity: 0.78;
}

.gl-ecosystem-content {
    position: relative;
    z-index: 2;
    min-height: 520px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gl-ecosystem-number {
    position: absolute;
    top: 30px;
    left: 34px;
    color: rgba(255, 255, 255, 0.24);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.gl-ecosystem-kicker {
    margin: 0 0 14px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 12px;
    font-weight: 900;
}

.gl-ecosystem-content h3 {
    margin: 0;
    max-width: 360px;
    color: var(--gl-white);
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.gl-ecosystem-content ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.gl-ecosystem-content li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.35;
}

.gl-ecosystem-content li::before {
    content: "— ";
    color: var(--gl-yellow);
}

.gl-ecosystem-content .gl-card-link {
    margin-top: 28px;
}
/* ==========================================
   SERVICIOS PAGE — CARDS CON IMAGEN SUTIL
   Y TEXTO MUY LEGIBLE
========================================== */

.gl-services-page-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 8, 12, 0.88);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 12px rgba(124, 60, 255, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Imagen de fondo */
.gl-services-page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    transform: scale(1.04);
    filter: grayscale(100%) contrast(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Capa oscura para unificar el fondo */
.gl-services-page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(6, 6, 10, 0.45) 0%,
            rgba(6, 6, 10, 0.52) 20%,
            rgba(6, 6, 10, 0.68) 55%,
            rgba(6, 6, 10, 0.82) 100%
        );
    pointer-events: none;
}

/* Todo el contenido por encima */
.gl-services-page-card > * {
    position: relative;
    z-index: 3;
}

/* Número */
.gl-services-page-card > span:first-child {
    display: inline-block;
    color: rgba(255, 255, 255, 0.48) !important;
    font-weight: 800;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.95);
    opacity: 1 !important;
}

/* Título */
.gl-services-page-card h3 {
    color: #ffffff !important;
    font-weight: 800;
    opacity: 1 !important;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.12),
        0 0 20px rgba(255, 255, 255, 0.05),
        0 3px 12px rgba(0, 0, 0, 0.95);
}

/* Párrafo principal */
.gl-services-page-card p {
    color: rgba(255, 255, 255, 0.94) !important;
    opacity: 1 !important;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.95);
}

/* Lista */
.gl-services-page-card ul {
    margin-top: 18px;
}

.gl-services-page-card li {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.95);
}

.gl-services-page-card li::marker {
    color: rgba(255, 212, 0, 0.92);
}

/* Link */
.gl-services-page-card a {
    color: #ffd400 !important;
    font-weight: 700;
    opacity: 1 !important;
    text-shadow:
        0 0 8px rgba(255, 212, 0, 0.14),
        0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Efecto hover */
.gl-services-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.55);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 212, 0, 0.08),
        0 0 16px rgba(255, 212, 0, 0.18),
        0 0 24px rgba(124, 60, 255, 0.12);
}

.gl-services-page-card:hover::before {
    opacity: 0.23;
    transform: scale(1.06);
}

.gl-services-page-card:hover h3 {
    color: #ffffff !important;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.16),
        0 0 24px rgba(255, 255, 255, 0.07),
        0 3px 12px rgba(0, 0, 0, 0.96);
}
/* ==========================================
   SERVICIOS PAGE — CARDS CON IMAGEN SUTIL
   Y TEXTO MUY LEGIBLE
========================================== */

.gl-services-page-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 8, 12, 0.88);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 12px rgba(124, 60, 255, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Imagen de fondo */
.gl-services-page-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    transform: scale(1.04);
    filter: grayscale(100%) contrast(1.02);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Capa oscura para unificar el fondo */
.gl-services-page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(6, 6, 10, 0.45) 0%,
            rgba(6, 6, 10, 0.52) 20%,
            rgba(6, 6, 10, 0.68) 55%,
            rgba(6, 6, 10, 0.82) 100%
        );
    pointer-events: none;
}

/* Todo el contenido por encima */
.gl-services-page-card > * {
    position: relative;
    z-index: 3;
}

/* Número */
.gl-services-page-card > span:first-child {
    display: inline-block;
    color: rgba(255, 255, 255, 0.48) !important;
    font-weight: 800;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.95);
    opacity: 1 !important;
}

/* Título */
.gl-services-page-card h3 {
    color: #ffffff !important;
    font-weight: 800;
    opacity: 1 !important;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.12),
        0 0 20px rgba(255, 255, 255, 0.05),
        0 3px 12px rgba(0, 0, 0, 0.95);
}

/* Párrafo principal */
.gl-services-page-card p {
    color: rgba(255, 255, 255, 0.94) !important;
    opacity: 1 !important;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.95);
}

/* Lista */
.gl-services-page-card ul {
    margin-top: 18px;
}

.gl-services-page-card li {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
    text-shadow:
        0 1px 8px rgba(0, 0, 0, 0.95);
}

.gl-services-page-card li::marker {
    color: rgba(255, 212, 0, 0.92);
}

/* Link */
.gl-services-page-card a {
    color: #ffd400 !important;
    font-weight: 700;
    opacity: 1 !important;
    text-shadow:
        0 0 8px rgba(255, 212, 0, 0.14),
        0 2px 10px rgba(0, 0, 0, 0.95);
}

/* Efecto hover */
.gl-services-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.55);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 212, 0, 0.08),
        0 0 16px rgba(255, 212, 0, 0.18),
        0 0 24px rgba(124, 60, 255, 0.12);
}

.gl-services-page-card:hover::before {
    opacity: 0.23;
    transform: scale(1.06);
}

.gl-services-page-card:hover h3 {
    color: #ffffff !important;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.16),
        0 0 24px rgba(255, 255, 255, 0.07),
        0 3px 12px rgba(0, 0, 0, 0.96);
}
/* =========================================================
   FIX FINAL — SERVICIOS: TEXTO Y BORDES ILUMINADOS
   Este bloque debe ir AL FINAL DEL TODO de main.css
========================================================= */

.gl-services-page .gl-services-page-card {
    opacity: 1 !important;
    filter: none !important;
    border: 1px solid rgba(255, 212, 0, 0.30) !important;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 22px rgba(255, 212, 0, 0.10),
        0 0 34px rgba(124, 60, 255, 0.10) !important;
}

.gl-services-page .gl-services-page-card:hover {
    border-color: rgba(255, 212, 0, 0.72) !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 212, 0, 0.16),
        0 0 28px rgba(255, 212, 0, 0.24),
        0 0 42px rgba(124, 60, 255, 0.18) !important;
}

.gl-services-page .gl-services-page-card::before {
    opacity: 0.16 !important;
    filter: grayscale(100%) contrast(1.08) brightness(0.9) !important;
}

.gl-services-page .gl-services-page-card::after {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.58) 42%,
            rgba(0, 0, 0, 0.78) 100%
        ) !important;
}

.gl-services-page .gl-services-page-card > * {
    opacity: 1 !important;
    filter: none !important;
    position: relative !important;
    z-index: 5 !important;
}

.gl-services-page .gl-services-page-card h3 {
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.22),
        0 0 18px rgba(255, 255, 255, 0.10),
        0 3px 12px rgba(0, 0, 0, 1) !important;
}

.gl-services-page .gl-services-page-card p {
    color: #ffffff !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.10),
        0 2px 10px rgba(0, 0, 0, 1) !important;
}

.gl-services-page .gl-services-page-card li {
    color: rgba(255, 255, 255, 0.98) !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.08),
        0 2px 10px rgba(0, 0, 0, 1) !important;
}

.gl-services-page .gl-services-page-card a {
    color: #ffd400 !important;
    opacity: 1 !important;
    filter: none !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 10px rgba(255, 212, 0, 0.32),
        0 2px 10px rgba(0, 0, 0, 1) !important;
}

.gl-services-page .gl-services-page-card > span:first-child {
    color: rgba(255, 255, 255, 0.70) !important;
    opacity: 1 !important;
    filter: none !important;
    font-weight: 900 !important;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.18),
        0 2px 10px rgba(0, 0, 0, 1) !important;
}
/* ================================
   PAGE PORTFOLIO — BASE
================================ */

.gl-portfolio-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 16%, rgba(124, 60, 255, 0.16), transparent 34%),
        radial-gradient(circle at 84% 42%, rgba(255, 212, 0, 0.07), transparent 30%),
        linear-gradient(180deg, #050505 0%, #07070b 100%);
    color: var(--gl-white);
}

.gl-portfolio-page-hero {
    position: relative;
    padding: 160px 0 90px;
}

.gl-portfolio-page-hero-content {
    max-width: 980px;
}

.gl-portfolio-page-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.gl-portfolio-page-hero p:not(.gl-section-kicker) {
    max-width: 760px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.7;
}

.gl-portfolio-page-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.gl-portfolio-page-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 800;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.gl-portfolio-page-nav a:hover {
    color: #050505;
    background: var(--gl-yellow);
    border-color: var(--gl-yellow);
    transform: translateY(-3px);
}


/* ================================
   PAGE PORTFOLIO — CATEGORÍAS
================================ */

.gl-portfolio-category {
    position: relative;
    padding: 105px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gl-portfolio-category:nth-of-type(even) {
    background:
        radial-gradient(circle at 16% 45%, rgba(124, 60, 255, 0.10), transparent 32%),
        radial-gradient(circle at 86% 70%, rgba(255, 212, 0, 0.045), transparent 28%);
}

.gl-portfolio-category-header {
    max-width: 850px;
    margin-bottom: 48px;
}

.gl-portfolio-category-header h2 {
    margin: 0;
    font-size: clamp(42px, 5.7vw, 86px);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.gl-portfolio-category-header p:not(.gl-section-kicker) {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}


/* ================================
   PAGE PORTFOLIO — CARDS VIDEO / WEB
================================ */

.gl-portfolio-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gl-portfolio-work-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.34),
        0 0 30px rgba(124, 60, 255, 0.055);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.gl-portfolio-work-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.46);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.46),
        0 0 26px rgba(255, 212, 0, 0.12),
        0 0 42px rgba(124, 60, 255, 0.10);
}

.gl-portfolio-work-media {
    position: relative;
    min-height: 300px;
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.72) 100%),
        var(--work-img);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gl-portfolio-work-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(124, 60, 255, 0.18), transparent 34%),
        linear-gradient(180deg, transparent 38%, rgba(0,0,0,0.78) 100%);
    pointer-events: none;
}

.gl-portfolio-work-media span {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #050505;
    background: var(--gl-yellow);
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(255, 212, 0, 0.22);
}

.gl-portfolio-work-content {
    padding: 28px;
}

.gl-portfolio-work-content p {
    margin: 0 0 12px;
    color: var(--gl-yellow);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 11px;
    font-weight: 900;
}

.gl-portfolio-work-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.gl-portfolio-work-content span {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.5;
}

.gl-portfolio-work-content a {
    display: inline-flex;
    margin-top: 22px;
    color: var(--gl-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.gl-portfolio-work-content a:hover {
    color: var(--gl-yellow);
    transform: translateX(4px);
}


/* ================================
   PAGE PORTFOLIO — SLIDERS IMÁGENES
================================ */

.gl-portfolio-slider {
    position: relative;
    overflow: hidden;
    padding: 8px 0 14px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.gl-portfolio-slider-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: glPortfolioSlider 38s linear infinite;
}

.gl-portfolio-slider:hover .gl-portfolio-slider-track {
    animation-play-state: paused;
}

.gl-portfolio-slider-track img {
    width: 330px;
    height: 430px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.34),
        0 0 28px rgba(124, 60, 255, 0.055);
    opacity: 0.88;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.gl-portfolio-slider-track img:hover {
    opacity: 1;
    transform: translateY(-5px);
    border-color: rgba(255, 212, 0, 0.42);
}

@keyframes glPortfolioSlider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ================================
   PAGE PORTFOLIO — CTA FINAL
================================ */

.gl-portfolio-page-cta {
    padding: 110px 0 130px;
    background:
        radial-gradient(circle at 22% 30%, rgba(124, 60, 255, 0.13), transparent 34%),
        radial-gradient(circle at 84% 64%, rgba(255, 212, 0, 0.08), transparent 30%),
        linear-gradient(180deg, #07070b 0%, #050505 100%);
}
/* ================================
   HOME — GL AGENCIA FOOTER
================================ */

.gl-agency-footer {
    margin-top: 56px;
    padding: 34px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background:
        linear-gradient(135deg, rgba(255, 212, 0, 0.10), rgba(124, 60, 255, 0.08)),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.28),
        0 0 40px rgba(124, 60, 255, 0.06);
}

.gl-agency-footer p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.gl-agency-footer .gl-btn {
    flex: 0 0 auto;
}
/* ================================
   HOME — CONFIANZA / PROYECTOS REALES
================================ */

.gl-trust {
    position: relative;
    padding: 110px 0;
    background: #050505;
}

.gl-trust-header {
    margin-bottom: 44px;
}

.gl-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.gl-trust-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: 28px;
    background-image: var(--trust-img);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 22px 70px rgba(0, 0, 0, 0.30),
        0 0 24px rgba(124, 60, 255, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.gl-trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, 0.38);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.40),
        0 0 28px rgba(255, 212, 0, 0.10);
}

.gl-trust-card a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 340px;
    text-decoration: none;
    color: inherit;
}

.gl-trust-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.78) 100%),
        radial-gradient(circle at top left, rgba(124,60,255,.16), transparent 36%);
    z-index: 1;
}

.gl-trust-card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 24px;
}

.gl-trust-card-content span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gl-yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gl-trust-card-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 18px rgba(0,0,0,.5);
}

.gl-trust-card-content p {
    margin: 16px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.25s ease, transform 0.25s ease;
}

.gl-trust-card:hover .gl-trust-card-content p {
    color: var(--gl-yellow);
    transform: translateX(4px);
}