/* ═══════════════════════════════════════════
 *  GRUPOHIDRO – Landing Page Stylesheet
 *  Design System: Industrial Authority
 *  Fonts: Montserrat, Inter
 * ═══════════════════════════════════════════ */
/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.gh-landing {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--gh-on-surface);
    background: var(--gh-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

.gh-landing ::selection {
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}
.gh-landing img { max-width: 100%; height: auto; }
.gh-landing a { text-decoration: none; color: inherit; }

/* ── Typography Tokens ── */
.gh-display    { font-family: 'Lexend', sans-serif; font-size: 48px; line-height: 56px; font-weight: 800; letter-spacing: -0.02em; }
.gh-headline-l { font-family: 'Lexend', sans-serif; font-size: 32px; line-height: 40px; font-weight: 700; color: var(--gh-primary);}
.gh-headline-m { font-family: 'Lexend', sans-serif; font-size: 32px; line-height: 32px; font-weight: 600; }
.gh-body-l     { font-family: 'Lexend', sans-serif; font-size: 18px; line-height: 28px; }
.gh-body-m     { font-family: 'Lexend', sans-serif; font-size: 16px; line-height: 24px; }
.gh-label      { font-family: 'Lexend', monospace; font-size: 14px; line-height: 20px; font-weight: 500; letter-spacing: 0.05em; }
.gh-button-text{ font-family: 'Lexend', sans-serif; font-size: 16px; line-height: 24px; font-weight: 600; }

/* ── Container ── */
.gh-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .gh-container { padding: 0 24px; }
}

/* ── Scrollbar ── */
.gh-landing::-webkit-scrollbar { width: 8px; }
.gh-landing::-webkit-scrollbar-track { background: var(--gh-surface); }
.gh-landing::-webkit-scrollbar-thumb { background: var(--gh-outline); }
.gh-landing::-webkit-scrollbar-thumb:hover { background: var(--gh-primary); }

/* ═══════════════════════════════════════════
 *  HEADER
 * ═══════════════════════════════════════════ */
.gh-header {
    position: fixed;
    top: 0; left: 0; right: 0;
	width: 100%;
    z-index: 50;
    background: var(--gh-on-primary);
    border-bottom: 1px solid var(--gh-outline-variant);
    transition: all 0.3s;
    height: 80px;
}
.gh-header.scrolled {
    height: 64px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	background: var(--gh-on-primary);
}
.gh-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.gh-header__brand {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gh-primary);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gh-header__brand i { font-size: 26px; }
.gh-header__brand img { height: 36px; width: auto; }

/* Desktop Nav */
.gh-nav { display: none; align-items: center; gap: 32px; }
.gh-nav a {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gh-on-surface-variant);
    transition: color 0.2s;
    padding-bottom: 4px;
}
.gh-nav a:hover { color: var(--gh-secondary); }
.gh-nav a.active {
    color: var(--gh-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--gh-secondary);
}

.gh-header__cta-wrap { display: none; }

@media (min-width: 768px) {
    .gh-nav { display: flex; }
    .gh-header__cta-wrap { display: block; }
}

/* CTA Button (shared) */
.gh-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--gh-primary);
    color: var(--gh-on-primary);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--gh-primary);
    cursor: pointer;
    transition: all 0.2s;
}
.gh-btn-primary:hover, .gh-btn-primary:active, .gh-btn-primary:visited { background: #a00; border: 1px solid #a00; }

.gh-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--gh-on-primary);
    color: var(--gh-on-surface) !important;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
	border-radius: 4px;
}
.gh-btn-cta:hover { color: #E30613 !Important; }

.gh-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--gh-primary);
    color: var(--gh-primary);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}
.gh-btn-outline:hover {
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}

/* Mobile Menu Button */
.gh-mobile-btn {
    display: block;
    background: none;
    border: none;
    color: var(--gh-primary);
    padding: 8px;
    cursor: pointer;
    font-size: 28px;
}
@media (min-width: 768px) { .gh-mobile-btn { display: none; } }

/* ── Mobile Sidebar Nav ── */
.gh-mobile-nav {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 60;
    width: 288px;
    background: var(--gh-on-primary);
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
.gh-mobile-nav.open { transform: translateX(0); }

.gh-mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px 16px;
    border-bottom: 1px solid var(--gh-surface-container);
    margin-bottom: 16px;
}
.gh-mobile-nav__header .brand-text {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gh-primary);
}
.gh-mobile-nav__header .brand-sub {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-outline);
}
.gh-mobile-nav__close {
    background: none; border: none;
    color: var(--gh-on-surface-variant);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.gh-mobile-nav__links {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gh-mobile-nav__links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-on-surface-variant);
    transition: background 0.2s;
}
.gh-mobile-nav__links a:hover {
    background: var(--gh-surface-container-highest);
}
.gh-mobile-nav__links a.active {
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}
.gh-mobile-nav__links a i { width: 20px; text-align: center; }

.gh-mobile-nav__footer {
    padding: 16px 24px 0;
    margin-top: auto;
    border-top: 1px solid var(--gh-surface-container);
}

.gh-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 55;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.gh-mobile-overlay.visible { display: block; opacity: 1; }

/* ═══════════════════════════════════════════
 *  HERO
 * ═══════════════════════════════════════════ */
.gh-hero {
    position: relative;
    min-height: 600px;
    height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    overflow: hidden;
    margin-top: 50px;
}
.gh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 1s;
}
.gh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,52,111,0.92) 0%, rgba(24,28,30,0.7) 100%);
    z-index: 1;
}
.gh-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.gh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    margin-bottom: 24px;
    border-radius: 2px;
}
.gh-hero__badge .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gh-secondary);
    animation: pulse 2s infinite;
}
.gh-hero__badge span {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-on-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gh-hero h1 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: var(--gh-on-primary);
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .gh-hero h1 { font-size: 48px; line-height: 56px; letter-spacing: -0.02em; }
}
.gh-hero__subtitle {
    font-size: 18px;
    line-height: 28px;
    color: var(--gh-on-primary-container);
    margin-bottom: 40px;
    max-width: 640px;
}
.gh-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 640px) {
    .gh-hero__actions { flex-direction: row; }
}
.gh-hero .gh-btn-cta { padding: 16px 32px; border: 1px solid var(--gh-secondary); color: var(--gh-on-primary);}
.gh-hero .gh-btn-cta:hover { border-color: #a00; }
.gh-hero .gh-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--gh-on-primary);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.2s;
}
.gh-hero .gh-btn-ghost:hover {
    background: rgba(0,74,153,0.3);
    border-color: var(--gh-on-primary);
}

/* Scroll indicator */
.gh-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}
.gh-scroll-indicator span {
    font-family: 'Lexend', monospace;
    font-size: 10px;
    color: var(--gh-on-primary-container);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════
 *  VALORES & CERTIFICACIONES
 * ═══════════════════════════════════════════ */
.gh-valores {
    padding: 80px 0;
    background: var(--gh-surface-bright);
    position: relative;
    border-bottom: 1px solid var(--gh-surface-container-high);
}
.gh-valores .industrial-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gh-outline-variant) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
}
.gh-valores__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.gh-valores__header h2 {
    color: var(--gh-primary);
    margin-bottom: 16px;
}
.gh-valores__header p {
    color: var(--gh-on-surface-variant);
}
.gh-valores__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .gh-valores__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Value Card */
.gh-value-card {
    background: var(--gh-surface-container-lowest);
    padding: 32px;
    border: 1px solid var(--gh-outline-variant);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s;
}
.gh-value-card:hover { border-color: var(--gh-primary); }

.gh-value-card__icon {
    width: 56px; height: 56px;
    background: var(--gh-surface-container);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gh-primary);
    font-size: 24px;
    transition: all 0.2s;
}
.gh-value-card:hover .gh-value-card__icon {
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}
.gh-value-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.gh-value-card p {
    color: var(--gh-on-surface-variant);
    margin-bottom: 24px;
    flex: 1;
}
.gh-value-card__tags {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gh-surface-container);
}
.gh-value-card__tags span {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-outline);
    font-weight: 700;
}

/* ── Certificaciones ── */
.gh-certs {
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid rgba(115,119,131,0.3);
}
.gh-certs__header {
    text-align: center;
    margin-bottom: 48px;
}
.gh-certs__header h3 {
    color: var(--gh-primary);
    margin-bottom: 8px;
}
.gh-certs__header p { color: var(--gh-on-surface-variant); }

.gh-certs__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) {
    .gh-certs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gh-certs__grid { grid-template-columns: repeat(6, 1fr); }
}

.gh-cert-card {
    background: var(--gh-surface-container-lowest);
    border: 1px solid var(--gh-outline-variant);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s;
}
.gh-cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.gh-cert-card__image {
    position: relative;
/*    aspect-ratio: 16/10;*/
	overflow: hidden;
    background: var(--gh-surface-container);
	display: flex;
    justify-content: center;
}
.gh-cert-card__image img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.gh-cert-card:hover .gh-cert-card__image img {
    transform: scale(1.05);
}
.gh-cert-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gh-outline-variant);
}

.gh-cert-card__body {
    padding: 0px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gh-cert-card__body h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gh-on-surface);
}
.gh-cert-card__body h4 span {
    font-weight: 400;
    color: var(--gh-on-surface-variant);
/*    margin-left: 4px;*/}

.gh-cert-card__btn {
    padding: 5px 9px;
    font-size: 9px;
    gap: 8px;
    border-width: 1px;
}
.gh-cert-card__btn i {
    color: var(--gh-secondary);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
	font-size: 10px;
}
.gh-cert-card:hover .gh-cert-card__btn i {
    transform: scale(1.2);
}


/* ═══════════════════════════════════════════
 *  NOSOTROS
 * ═══════════════════════════════════════════ */
.gh-about {
    padding: 80px 0;
    background: var(--gh-surface-container-lowest);
}
.gh-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .gh-about__grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}
.gh-about__overline {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.gh-about__text h2 {
    margin-bottom: 24px;
}
.gh-about__text p {
    color: var(--gh-on-surface-variant);
    margin-bottom: 24px;
}
.gh-about__text p:last-of-type { margin-bottom: 0; }
.gh-about__cta { margin: 32px 0 8px; }
.gh-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}
.gh-stat {
    border: 1px solid var(--gh-outline-variant);
    padding: 16px;
    background: var(--gh-surface-bright);
}
.gh-stat__num {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gh-primary);
    margin-bottom: 4px;
}
.gh-stat__label {
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: var(--gh-outline);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Video placeholder */
.gh-about__video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--gh-surface-container-high);
    border: 1px solid var(--gh-outline-variant);
    overflow: hidden;
}
.gh-about__video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.gh-about__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 3;
}
.gh-about__video.playing .gh-about__video-play,
.gh-about__video.playing .gh-about__video-thumb,
.gh-about__video.playing .gh-about__video-label,
.gh-about__video.playing .gh-about__video-live {
    display: none;
}
.gh-about__video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.gh-about__video-play button {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(0,52,111,0.9);
    color: var(--gh-on-primary);
    border: none;
    font-size: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gh-about__video-play button:hover { background: var(--gh-secondary); }
.gh-about__video-label {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: var(--gh-on-primary);
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    backdrop-filter: blur(8px);
}
.gh-about__video-live {
    position: absolute;
    bottom: 16px; right: 16px;
    z-index: 2;
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: var(--gh-on-primary);
    background: rgba(187,0,16,0.8);
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gh-about__video-frame {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(194,198,211,0.3);
    z-index: -1;
    display: none;
}
@media (min-width: 768px) { .gh-about__video-frame { display: block; } }
.gh-about__video-corner-bl {
    position: absolute;
    bottom: -16px; left: -16px;
    width: 64px; height: 64px;
    border-bottom: 2px solid var(--gh-primary);
    border-left: 2px solid var(--gh-primary);
    display: none;
}
.gh-about__video-corner-tr {
    position: absolute;
    top: -16px; right: -16px;
    width: 64px; height: 64px;
    border-top: 2px solid var(--gh-primary);
    border-right: 2px solid var(--gh-primary);
    display: none;
}
@media (min-width: 768px) {
    .gh-about__video-corner-bl,
    .gh-about__video-corner-tr { display: block; }
}

/* ═══════════════════════════════════════════
 *  UNIDADES
 * ═══════════════════════════════════════════ */
.gh-unidades {
    padding: 80px 0;
    background: var(--gh-surface-container);
    position: relative;
}
.gh-unidades__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--gh-outline-variant);
    padding-bottom: 24px;
    margin-bottom: 64px;
}
#gh-unidad {
	padding: 10px;
}
@media (min-width: 768px) {
    .gh-unidades__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.gh-unidades__header .overline {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.gh-unidades__header .subtitle {
    color: var(--gh-on-surface-variant);
    max-width: 380px;
}
.gh-unidades__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .gh-unidades__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Unit Card */
.gh-unit-card {
    background: var(--gh-surface-container-lowest);
    border: 1px solid var(--gh-outline-variant);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.gh-unit-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.gh-unit-card__image {
    position: relative;
    height: 256px;
    overflow: hidden;
    background: var(--gh-surface-container-high);
    border-bottom: 1px solid var(--gh-outline-variant);
}
.gh-unit-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.7s;
}
.gh-unit-card:hover .gh-unit-card__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.gh-unit-card__image .overlay {
    position: absolute; inset: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    transition: opacity 0.5s;
    opacity: 0.2;
}
.gh-unit-card:hover .gh-unit-card__image .overlay { opacity: 0; }
.gh-unit-card__image .overlay--primary   { background: var(--gh-primary); }
.gh-unit-card__image .overlay--secondary { background: var(--gh-secondary); }
.gh-unit-card__image .overlay--tertiary  { background: var(--gh-tertiary); }

.gh-unit-card__tag {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
    background: var(--gh-surface-container-lowest);
    padding: 4px 12px;
    font-family: 'Lexend', monospace;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--gh-outline-variant);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	color: var(--gh-on-primary);
	text-shadow: 2px 2px 2px rgba(43, 19, 12, 1);
}
.gh-unit-card__tag--primary, .gh-unit-card__tag--secondary, .gh-unit-card__tag--tertiary   { color: var(--gh-on-primary); text-shadow: 2px 2px 2px rgba(43, 19, 12, 1); }


.gh-unit-card__body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gh-unit-card__logo {
    width: auto;
    margin-bottom: 12px;
}
.gh-unit-card__body p {
    color: var(--gh-on-surface-variant);
    margin-bottom: 24px;
    flex: 1;
}
.gh-unit-card__sellos {
    display: grid;
    grid-auto-flow: column;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
    margin-top: auto;
    margin-bottom: 24px;
    border-top: 1px solid var(--gh-surface-container);
}
.gh-unit-card__sello {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(30%);
    transition: opacity 0.3s, filter 0.3s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.gh-unit-card__sello:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.15);
}

.gh-unit-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border: 2px solid var(--gh-primary);
    color: var(--gh-primary);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s;
}
.gh-unit-card:hover .gh-unit-card__link {
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}

/* ═══════════════════════════════════════════
 *  CLIENTES
 * ═══════════════════════════════════════════ */
.gh-clientes {
    padding: 64px 0;
    background: var(--gh-surface-container-lowest);
    border-top: 1px solid var(--gh-surface-container-high);
    border-bottom: 1px solid var(--gh-surface-container-high);
    overflow: hidden;
}
.gh-clientes__header {
    text-align: center;
    margin-bottom: 40px;
}
.gh-clientes__header h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gh-primary);
}
.gh-clientes__ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.gh-clientes__ticker-fade-l,
.gh-clientes__ticker-fade-r {
    display: none;
}
@media (min-width: 768px) {
    .gh-clientes__ticker-fade-l,
    .gh-clientes__ticker-fade-r {
        display: block;
        position: absolute;
        top: 0;
        width: 96px;
        height: 100%;
        z-index: 1;
    }
    .gh-clientes__ticker-fade-l {
        left: 0;
        background: linear-gradient(to right, var(--gh-surface-container-lowest), transparent);
    }
    .gh-clientes__ticker-fade-r {
        right: 0;
        background: linear-gradient(to left, var(--gh-surface-container-lowest), transparent);
    }
}
.gh-clientes__track {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.gh-clientes__track:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.gh-clientes__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 64px;
    margin: 0 16px;
}
.gh-clientes__logo img {
    max-height: 48px;
    max-width: 160px;
    object-fit: contain;
}
.gh-clientes__logo span {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    color: var(--gh-outline-variant);
}

/* ═══════════════════════════════════════════
 *  CTA BANNER
 * ═══════════════════════════════════════════ */
.gh-cta-banner {
    position: relative;
    background: #ce171e;
    overflow: hidden;
}
.gh-cta-banner__diagonal {
    position: absolute;
    inset: 0;
    background: var(--gh-primary-container);
    transform: skewX(-12deg) translateX(50%);
    opacity: 0.5;
}
.gh-cta-banner__inner {
    position: relative;
    z-index: 1;
    padding: 64px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}
@media (min-width: 768px) {
    .gh-cta-banner__inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 64px 10px;
        text-align: left;
    }
}
.gh-cta-banner__text { max-width: 640px; }
.gh-cta-banner .overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-on-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gh-cta-banner .overline i { color: var(--gh-secondary); font-size: 20px; }
.gh-cta-banner h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    line-height: 36px;
    font-weight: 800;
    color: var(--gh-on-primary);
    margin-bottom: 16px;
}
@media (min-width: 768px) {
    .gh-cta-banner h2 { font-size: 40px; line-height: 48px; }
}
.gh-cta-banner p {
    font-size: 18px;
    line-height: 28px;
    color: var(--gh-on-primary);
}
.gh-cta-banner .gh-btn-cta {
    padding: 20px 40px;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.2s;
}
.gh-cta-banner .gh-btn-cta:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
 *  CONTACTO
 * ═══════════════════════════════════════════ */
.gh-contacto {
    padding: 80px 0;
    background: var(--gh-surface-bright);
    position: relative;
}
.gh-contacto .industrial-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(var(--gh-outline-variant) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
}
.gh-contacto__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
	grid-auto-flow: column;
}

@media (max-width: 760px) {
	.gh-contacto__grid {
		grid-auto-flow: row;
	}
}

.gh-about__grid > *:nth-child(1) { order: 1; }
.gh-about__grid > *:nth-child(2) { order: 2; }

@media (min-width: 1024px) {
    .gh-about__grid { grid-template-columns: 1fr 1fr; gap: 96px; }
    .gh-about__grid > *:nth-child(1) { order: 2; }
    .gh-about__grid > *:nth-child(2) { order: 1; }
}

/* Contact Info */
.gh-contacto__info .overline {
    font-family: 'Lexend', monospace;
    font-size: 14px;
    color: var(--gh-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.gh-contacto__info h2 { margin-bottom: 32px; }
.gh-contacto__items { display: flex; flex-direction: column; gap: 32px; }
.gh-contacto__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.gh-contacto__item-icon {
    width: 48px; height: 48px;
    background: var(--gh-surface-container);
    border: 1px solid var(--gh-outline-variant);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gh-primary);
    font-size: 20px;
}
.gh-contacto__item h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.gh-contacto__item p {
    color: var(--gh-on-surface-variant);
    font-size: 16px;
    line-height: 24px;
}
.gh-contacto__item p a {
    color: var(--gh-on-surface-variant);
    text-decoration: none;
    transition: color 0.2s;
}
.gh-contacto__item p a:hover {
    color: var(--gh-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact Form */
.gh-form-wrap {
    background: var(--gh-surface-container-lowest);
    border: 1px solid var(--gh-outline-variant);
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    position: relative;
}
.gh-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gh-primary);
}
.gh-form-wrap h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
.gh-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .gh-form__row { grid-template-columns: 1fr 1fr; }
}
.gh-form__field { display: flex; flex-direction: column; }
.gh-form__field label {
    font-family: 'Lexend', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--gh-outline);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gh-form__field input,
.gh-form__field select,
.gh-form__field textarea {
    background: var(--gh-surface-bright);
    border: 1px solid var(--gh-outline-variant);
    padding: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: var(--gh-on-surface);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.gh-form__field input::placeholder,
.gh-form__field textarea::placeholder {
    font-family: 'Lexend', monospace;
    color: var(--gh-outline-variant);
}
.gh-form__field input:focus,
.gh-form__field select:focus,
.gh-form__field textarea:focus {
    border-color: var(--gh-primary);
    box-shadow: 0 0 0 2px rgba(0,52,111,0.08);
}
.gh-form__field select { appearance: none; cursor: pointer; }
.gh-form__field textarea { resize: none; }
.gh-form__submit {
    width: 100%;
    margin-top: 24px;
}
.gh-form__submit .gh-btn-primary {
    width: 100%;
    padding: 16px;
}
.gh-form__submit .gh-btn-primary i { margin-left: 8px; }

.gh-form__disclaimer {
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: var(--gh-outline-variant);
    text-align: center;
    margin-top: 16px;
}

/* Form feedback */
.gh-form__feedback {
    display: none;
    padding: 16px;
    border: 1px solid;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
}
.gh-form__feedback--success {
    background: #f0fdf4;
    border-color: #22c55e;
    color: #166534;
}
.gh-form__feedback--error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

/* ═══════════════════════════════════════════
 *  FOOTER
 * ═══════════════════════════════════════════ */
.gh-footer {
    background: var(--gh-secondary);
    border-top: none;
}
.gh-footer__grid {
    padding: 80px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (max-width: 500px) {
	.gh-footer__grid {
		    padding: 80px 20px;
	}
}
@media (min-width: 768px) {
    .gh-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.gh-footer__brand {
    margin-bottom: 16px;
}
.gh-footer__logo {
    max-height: 48px;
    width: auto;
}
.gh-footer__brand i {
    font-size: 22px;
    color: #fff;
}
.gh-footer__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    padding-right: 16px;
}

/* ── Social en fondo oscuro ── */
.gh-footer__social {
    display: flex;
    gap: 12px;
}
.gh-footer__social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.25s;
}
.gh-footer__social a:hover {
    background: #fff;
    color: var(--gh-secondary);
    transform: translateY(-4px) scale(1.08);
}

/* ── Columnas ── */
.gh-footer__col h4 {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.gh-footer__col ul { list-style: none; }
.gh-footer__col ul li { margin-bottom: 0; }

/* ── Links con icono y animación ── */
.gh-footer__col ul a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s, transform 0.3s, gap 0.3s;
}
.gh-footer__col ul a i {
    font-size: 11px;
    opacity: 0.5;
    transition: opacity 0.25s, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.gh-footer__col ul a:hover {
    color: #fff;
    transform: translateX(4px);
    gap: 10px;
}
.gh-footer__col ul a:hover i {
    opacity: 1;
    transform: scale(1.3);
}

/* ── Emergency link ── */
.gh-footer__col ul a.emergency {
    color: #fff;
    font-weight: 700;
}
.gh-footer__col ul a.emergency i {
    opacity: 0.8;
    animation: gh-emergency-pulse 2s ease-in-out infinite;
}
@keyframes gh-emergency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(-10deg); }
}

/* ── Bottom bar ── */
.gh-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 24px 0;
}
.gh-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
@media (min-width: 768px) {
    .gh-footer__bottom-inner {  }
}
.gh-footer__copy {
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.gh-footer__badge {
    font-family: 'Lexend', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════
 *  PDF MODAL
 * ═══════════════════════════════════════════ */
.gh-pdf-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}
.gh-pdf-modal.active { display: flex; }
.gh-pdf-modal__inner {
    background: #fff;
    width: 100%;
    max-width: 900px;
    height: 85vh;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--gh-primary);
}
.gh-pdf-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: var(--gh-primary);
    color: var(--gh-on-primary);
}
.gh-pdf-modal__header h4 {
    font-family: 'Lexend', monospace;
    font-size: 14px;
}
.gh-pdf-modal__close {
    background: none;
    border: none;
    color: var(--gh-on-primary);
    font-size: 24px;
    cursor: pointer;
}
.gh-pdf-modal__body { flex: 1; }
.gh-pdf-modal__body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ═══════════════════════════════════════════
 *  ANIMATIONS – Sistema multi-tipo v1.1
 *  Clase base: .gh-reveal
 *  Tipos via data-anim: fade-up (default), fade-left, fade-right, scale-in, blur-in
 *  Stagger via --stagger-delay (asignado por JS o manual)
 * ═══════════════════════════════════════════ */

/* ── Base: invisible hasta que aparece ── */
.gh-reveal {
    opacity: 0;
    transition-property: opacity, transform, filter;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger-delay, 0ms);
    will-change: opacity, transform;
}

/* ── Tipos de entrada ── */
.gh-reveal,
.gh-reveal[data-anim="fade-up"] {
    transform: translateY(36px);
}
.gh-reveal[data-anim="fade-left"] {
    transform: translateX(-40px);
}
.gh-reveal[data-anim="fade-right"] {
    transform: translateX(40px);
}
.gh-reveal[data-anim="scale-in"] {
    transform: scale(0.9);
}
.gh-reveal[data-anim="blur-in"] {
    transform: translateY(20px);
    filter: blur(8px);
}

/* ── Estado visible ── */
.gh-reveal.gh-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);


}

.estado-visible {
		display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 750px) {
	.gh-reveal.gh-visible {
		gap: 10px;
	}
}

/* ── Hero: entrada más dramática ── */
.gh-hero .gh-reveal {
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.gh-hero__badge.gh-reveal {
    transform: translateY(20px) scale(0.95);
    transition-delay: 200ms;
}
.gh-hero__badge.gh-reveal.gh-visible {
    transform: translateY(0) scale(1);
}
.gh-hero h1.gh-reveal {
    transform: translateY(30px);
    transition-delay: 400ms;
}
.gh-hero__subtitle.gh-reveal {
    transform: translateY(25px);
    transition-delay: 600ms;
	color: var(--gh-on-primary);
}
.gh-hero__actions.gh-reveal {
    transform: translateY(20px);
    transition-delay: 800ms;
}

/* ── Hover micro-interacciones cards ── */
.gh-value-card {
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.3s;
}
.gh-value-card:hover {
    transform: translateY(-6px);
}
.gh-value-card__icon {
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.gh-value-card:hover .gh-value-card__icon {
    transform: scale(1.1) rotate(-3deg);
}

.gh-unit-card {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.gh-unit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.gh-cert-item {
    transition: transform 0.3s ease;
}
.gh-cert-item:hover {
    transform: translateY(-3px);
}

/* ── Counter stats: efecto de número ── */
.gh-stat__number {
    display: inline-block;
    transition: transform 0.3s ease;
}
.gh-stat:hover .gh-stat__number {
    transform: scale(1.08);
}

/* ── CTA Banner: hover sutil ── */
.gh-cta-banner .gh-btn-cta {
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}
.gh-cta-banner .gh-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(187,0,16,0.3);
}

/* ── Scroll indicator mejorado ── */
.gh-scroll-indicator {
    animation: gh-scroll-hint 2.5s ease-in-out infinite;
	color: var(--gh-on-primary);
}
@keyframes gh-scroll-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(-10px); opacity: 0.6; }
}

/* ── Keyframes reutilizables ── */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Prefers reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .gh-reveal {
        transition-duration: 0.01ms !important;
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }
    .gh-scroll-indicator { animation: none; }
    .gh-value-card:hover,
    .gh-unit-card:hover { transform: none; }
}

/* ═══════════════════════════════════════════
 *  ASTRA OVERRIDE (scope everything)
 * ═══════════════════════════════════════════ */
.gh-landing .entry-content { max-width: none; padding: 0; margin: 0; }
.gh-landing .ast-container { max-width: 100%; padding: 0; }
.gh-landing .site-content { padding: 0; }
.gh-landing #primary { width: 100%; margin: 0; padding: 0; float: none; }
.gh-landing .ast-article-single { padding: 0; margin: 0; }
.gh-landing .ast-single-post { padding: 0; }
.gh-landing header.site-header,
.gh-landing .ast-above-header-bar,
.gh-landing .ast-mobile-header-wrap,
.gh-landing .ast-footer-overlay,
.gh-landing footer.site-footer,
.gh-landing .site-below-footer-wrap,
.gh-landing .ast-page-builder-template .site-header,
.gh-landing .entry-header { display: none !important; }

/* ═══════════════════════════════════════════
 *  GALERÍA MASONRY
 * ═══════════════════════════════════════════ */
.gh-gallery {
    padding: 80px 0;
}
.gh-gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

.gh-masonry {
    columns: 2;
    column-gap: 16px;
}
@media (min-width: 768px) {
    .gh-masonry { columns: 3; column-gap: 20px; }
}
@media (min-width: 1024px) {
    .gh-masonry { columns: 4; column-gap: 20px; }
}

.gh-masonry__item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .gh-masonry__item { margin-bottom: 20px; }
}

.gh-masonry__item a {
    display: block;
    position: relative;
    cursor: zoom-in;
}
.gh-masonry__item img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}
.gh-masonry__item:hover img {
    transform: scale(1.06);
    filter: brightness(0.75);
}
.gh-masonry__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}
.gh-masonry__overlay i {
    color: #fff;
    font-size: 28px;
    background: rgba(0, 52, 111, 0.7);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gh-masonry__item:hover .gh-masonry__overlay {
    opacity: 1;
}
.gh-masonry__item:hover .gh-masonry__overlay i {
    transform: scale(1);
}

/* ── Lightbox ── */
.gh-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.gh-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.gh-lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}
.gh-lightbox__content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
}
.gh-lightbox.active .gh-lightbox__content img {
    transform: scale(1);
    opacity: 1;
}
.gh-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 2;
}
.gh-lightbox__close:hover { background: rgba(255,255,255,0.1); }
.gh-lightbox__prev,
.gh-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}
.gh-lightbox__prev { left: 16px; }
.gh-lightbox__next { right: 16px; }
.gh-lightbox__prev:hover,
.gh-lightbox__next:hover { background: rgba(255,255,255,0.18); }
.gh-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.gh-cta-banner .overline i {
    animation: gh-warning-pulse 3.5s ease-in-out infinite;
}
@keyframes gh-warning-pulse {
    0%, 100% {
        color: #a00;
        text-shadow: 0 0 4px transparent;
        opacity: 0.5;
    }
    50% {
        color: #ff1a1a;
        text-shadow: 0 0 12px rgba(255, 26, 26, 0.6), 0 0 24px rgba(255, 26, 26, 0.3);
        opacity: 1;
    }
}