﻿:root {
    --azul: #424274;
    --azul-oscuro: #303054;
    --naranja: #F89E32;
    --grafito: #373435;
    --blanco: #FFFFFF;
    --gris: #F4F4F8;
    --gris-texto: #686876;
    --borde: #E5E5EC;
    --max: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--grafito);
    background: var(--blanco);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.eyebrow {
    color: var(--naranja);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    line-height: 1.08;
}

h2 {
    color: var(--azul);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -.04em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

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

.btn-primary {
    background: var(--naranja);
    color: var(--grafito);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.7);
    color: var(--blanco);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--borde);
}

.navbar {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    color: var(--azul);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.08em;
}

.brand-name {
    padding-left: 12px;
    border-left: 1px solid var(--borde);
    color: var(--grafito);
    font-size: .72rem;
    line-height: 1.2;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: .9rem;
    font-weight: 700;
}

.nav > a:not(.btn):hover {
    color: var(--naranja);
}

.btn-header {
    background: var(--azul);
    color: var(--blanco);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--azul);
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    min-height: 720px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(90deg, rgba(31,31,58,.88), rgba(31,31,58,.42)),
        url("../img/portada/hero-veracruz.jpg") center/cover no-repeat;
    color: var(--blanco);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(20,20,40,.25));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 80px;
}

.hero-copy {
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(3.3rem, 7vw, 6.6rem);
    letter-spacing: -.06em;
    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--naranja);
}

.hero-description {
    max-width: 590px;
    font-size: 1.2rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(48,48,84,.94);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    min-height: 110px;
    padding: 24px 26px;
    border-right: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    color: var(--naranja);
    font-size: 1.5rem;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    font-size: 1.25rem;
}

.stat span {
    color: rgba(255,255,255,.65);
    font-size: .78rem;
}

.stat-message {
    background: var(--naranja);
    color: var(--grafito);
}

.stat-message strong {
    font-size: 1.05rem;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.section-intro {
    color: var(--gris-texto);
    max-width: 480px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--borde);
    background: var(--blanco);
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    background: var(--azul);
    color: var(--blanco);
    border-color: var(--azul);
}

.service-number {
    color: #A2A2B0;
    font-size: .75rem;
    margin-bottom: 35px;
}

.service-icon {
    color: var(--naranja);
    font-size: 2rem;
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gris-texto);
    margin-bottom: 28px;
}

.service-card.featured p {
    color: rgba(255,255,255,.72);
}

.service-card a {
    color: var(--naranja);
    font-weight: 700;
    margin-top: auto;
}

.maritime {
    background: var(--gris);
}

.maritime-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 540px;
}

.maritime-image {
    min-height: 540px;
    position: relative;
    background:
        linear-gradient(rgba(25,25,45,.08), rgba(25,25,45,.08)),
        url("../img/portada/puerto-veracruz.jpg") center/cover no-repeat;
}

.image-label {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--naranja);
    padding: 12px 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.maritime-copy {
    padding: 65px;
    background: var(--blanco);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maritime-copy h2 {
    margin-bottom: 30px;
}

.maritime-copy p {
    color: var(--gris-texto);
    margin-bottom: 18px;
}

.text-link {
    color: var(--naranja);
    font-weight: 700;
    margin-top: 16px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-copy {
    font-size: 1.05rem;
}

.about-copy p {
    color: var(--gris-texto);
    margin-bottom: 22px;
}

.patent-box {
    margin-top: 38px;
    border-left: 5px solid var(--naranja);
    padding: 8px 0 8px 24px;
}

.patent-box span,
.patent-box strong {
    display: block;
}

.patent-box span {
    color: var(--gris-texto);
    font-size: .72rem;
    letter-spacing: .12em;
}

.patent-box strong {
    color: var(--azul);
    font-size: 2.5rem;
}

.client-section {
    background: var(--azul);
    padding: 90px 0;
}

.client-box h2 {
    color: var(--blanco);
    margin-bottom: 42px;
}

.eyebrow.light {
    color: var(--naranja);
}

.client-options {
    border-top: 1px solid rgba(255,255,255,.18);
}

.client-options a {
    min-height: 78px;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 18px;
    color: var(--blanco);
    border-bottom: 1px solid rgba(255,255,255,.18);
    font-size: 1.1rem;
}

.client-options span {
    color: var(--naranja);
    font-size: .75rem;
}

.client-options b {
    color: var(--naranja);
    font-size: 1.5rem;
}

.contact {
    background: var(--gris);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
}

.contact-copy h2 {
    margin-bottom: 26px;
}

.contact-copy > p {
    color: var(--gris-texto);
}

.contact-data {
    margin-top: 45px;
    display: grid;
    gap: 22px;
}

.contact-data span,
.contact-data strong {
    display: block;
}

.contact-data span {
    color: var(--gris-texto);
    font-size: .7rem;
    letter-spacing: .1em;
}

.contact-data strong {
    color: var(--azul);
}

.contact-form {
    background: var(--blanco);
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    box-shadow: 0 18px 50px rgba(35,35,60,.08);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .78rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--borde);
    background: var(--blanco);
    padding: 13px;
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--azul);
}

.form-button {
    border: 0;
    cursor: pointer;
    width: max-content;
}

.form-status {
    grid-column: 1 / -1;
    font-size: .85rem;
}

.footer {
    background: var(--grafito);
    color: rgba(255,255,255,.68);
    padding: 45px 0;
    font-size: .82rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 35px;
    align-items: center;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: var(--naranja);
    font-size: 1.8rem;
}

.footer-brand span {
    color: var(--blanco);
}

:focus-visible {
    outline: 3px solid var(--naranja);
    outline-offset: 2px;
}

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--blanco);
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--borde);
    }

    .nav.open {
        display: flex;
    }

    .hero {
        min-height: 680px;
    }

    .stats-grid,
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-heading,
    .maritime-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .maritime-copy {
        padding: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--max));
    }

    .section {
        padding: 70px 0;
    }

    .brand-name {
        display: none;
    }

    .hero-content {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .maritime-image {
        min-height: 360px;
    }

    .maritime-copy {
        padding: 35px 25px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .field.full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

/* =========================================================
   GLI - ENCABEZADO DEFINITIVO
   ========================================================= */

.header {
    background: #ffffff;
    border-bottom: 1px solid #ededf2;
    box-shadow: 0 3px 18px rgba(20, 25, 60, 0.05);
}

.navbar {
    min-height: 112px;
}

.gli-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 8px 0;
}

.gli-logo-oficial {
    display: block;
    width: auto;
    height: 92px;
    max-width: 270px;
    object-fit: contain;

    /* EL LOGO NO LLEVA EFECTOS */
    filter: none;
    opacity: 1;
    transform: none;
    mix-blend-mode: normal;
}

.nav {
    margin-left: auto;
}

.nav > a:not(.btn) {
    position: relative;
    padding: 42px 0 38px;
}

.nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 27px;
    height: 3px;
    background: #F89E32;
    transition: right .25s ease;
}

.nav > a:not(.btn):hover::after {
    right: 0;
}

.btn-header {
    background: #F89E32;
    color: #ffffff;
    border-radius: 3px;
    padding-left: 27px;
    padding-right: 27px;
}

.btn-header:hover {
    background: #e98d21;
}


/* Tablet */

@media (max-width: 900px) {

    .navbar {
        min-height: 90px;
    }

    .gli-logo-oficial {
        height: 72px;
        max-width: 220px;
    }

    .nav {
        top: 90px;
    }

    .nav > a:not(.btn) {
        padding: 10px 0;
    }

    .nav > a:not(.btn)::after {
        display: none;
    }
}


/* Móvil */

@media (max-width: 600px) {

    .navbar {
        min-height: 82px;
    }

    .gli-logo-oficial {
        height: 64px;
        max-width: 190px;
    }

    .nav {
        top: 82px;
    }
}


/* =========================================================
   GLI - PORTADA NUEVA
   ========================================================= */

.hero-gli {
    min-height: 720px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        linear-gradient(
            90deg,
            rgba(10, 31, 58, 0.88) 0%,
            rgba(10, 31, 58, 0.66) 38%,
            rgba(10, 31, 58, 0.22) 72%,
            rgba(10, 31, 58, 0.18) 100%
        ),
        url("../img/portada/hero-gli-veracruz.jpg")
        center center / cover no-repeat;

    color: #ffffff;
}

.hero-gli .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.04) 0%,
            rgba(0,0,0,0.12) 60%,
            rgba(5,18,38,0.72) 100%
        );

    pointer-events: none;
}

.hero-gli .hero-content {
    position: relative;
    z-index: 2;

    flex: 1;
    display: flex;
    align-items: center;

    padding-top: 95px;
    padding-bottom: 110px;
}

.hero-gli .hero-copy {
    max-width: 700px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .22em;

    margin-bottom: 24px;
}

.hero-location::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #F89E32;
}

.hero-gli h1 {
    display: flex;
    flex-direction: column;

    font-size: clamp(3.7rem, 6.3vw, 6.6rem);
    line-height: .98;
    letter-spacing: -.055em;

    margin-bottom: 30px;
}

.hero-gli h1 span {
    color: #F89E32;
}

.hero-gli .hero-description {
    max-width: 610px;

    font-size: 1.2rem;
    line-height: 1.65;

    color: rgba(255,255,255,.92);

    margin-bottom: 34px;
}

.hero-gli .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-gli .btn-primary {
    background: #F89E32;
    color: #ffffff;

    min-height: 54px;
    padding: 0 30px;
}

.hero-gli .btn-outline {
    min-height: 54px;
    padding: 0 30px;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.65);
    color: #ffffff;
}

.hero-gli .btn-outline:hover {
    background: #ffffff;
    color: #303054;
}


.hero-bottom {
    position: relative;
    z-index: 3;

    background: rgba(6, 27, 52, .86);

    border-top:
        1px solid rgba(255,255,255,.16);
}

.hero-bottom-grid {
    min-height: 116px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(120px, .8fr))
        minmax(270px, 1.4fr);

    align-items: stretch;
}

.hero-mini {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 22px;

    border-right:
        1px solid rgba(255,255,255,.15);

    font-size: .84rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-mini span {
    color: #F89E32;
    font-size: .7rem;
    margin-bottom: 5px;
}

.hero-port {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 30px;
}

.hero-port strong {
    color: #ffffff;
    font-size: .9rem;
    letter-spacing: .09em;
}

.hero-port span {
    color: rgba(255,255,255,.72);
    font-size: .78rem;
    margin-top: 4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-bottom-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-port {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .hero-gli {
        min-height: auto;
    }

    .hero-gli .hero-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-gli h1 {
        font-size: 3.3rem;
    }

    .hero-gli .hero-actions {
        flex-direction: column;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero-mini {
        border-right: none;
        border-bottom:
            1px solid rgba(255,255,255,.12);
    }

    .hero-port {
        grid-column: auto;
    }

}


/* =========================================================
   GLI - SERVICIOS EN UNA SOLA HILERA
   ========================================================= */

.services {
    overflow: hidden;
}

.services .container {
    width: min(calc(100% - 50px), 1380px);
}

.services .section-heading {
    margin-bottom: 42px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.service-card,
.service-card.featured {
    min-width: 0;
    min-height: 315px;

    padding: 25px 22px 23px;

    background: #ffffff;
    color: #373435;

    border: 1px solid #E1E3EA;
    border-radius: 4px;

    box-shadow:
        0 8px 24px rgba(34, 40, 75, 0.035);

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card:hover,
.service-card.featured:hover {
    background: #424274;
    color: #ffffff;

    border-color: #424274;

    transform: translateY(-7px);

    box-shadow:
        0 18px 38px rgba(37, 39, 86, 0.18);
}

.service-card .service-number,
.service-card.featured .service-number {
    color: #9EA3B8;
    font-size: .70rem;
    letter-spacing: .06em;
    margin-bottom: 22px;

    transition: color .25s ease;
}

.service-card .service-icon,
.service-card.featured .service-icon {
    color: #F89E32;
    font-size: 1.75rem;
    margin-bottom: 18px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.service-card:hover .service-icon {
    color: #F89E32;
    transform: translateY(-3px);
}

.service-card h3,
.service-card.featured h3 {
    color: #373435;

    font-size: clamp(1.15rem, 1.35vw, 1.48rem);
    line-height: 1.14;

    margin-bottom: 14px;

    transition: color .25s ease;
}

.service-card p,
.service-card.featured p {
    color: #686876;

    font-size: .91rem;
    line-height: 1.55;

    margin-bottom: 22px;

    transition: color .25s ease;
}

.service-card a,
.service-card.featured a {
    color: #F89E32;

    font-size: .88rem;
    font-weight: 700;

    margin-top: auto;

    transition:
        color .25s ease,
        transform .25s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card:hover p {
    color: rgba(255,255,255,.82);
}

.service-card:hover .service-number {
    color: rgba(255,255,255,.62);
}

.service-card:hover a {
    color: #F89E32;
    transform: translateX(3px);
}


/* =========================================================
   PANTALLAS INTERMEDIAS
   ========================================================= */

@media (max-width: 1150px) {

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 560px) {

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card.featured {
        min-height: 270px;
    }

}


/* =========================================================
   GLI - ENFOQUE MARITIMO V2
   ========================================================= */

.maritime-v2 {
    background: #f5f6f9;
    overflow: hidden;
}

.maritime-v2-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    min-height: 680px;

    background: #ffffff;

    box-shadow:
        0 24px 60px rgba(29, 36, 70, .08);
}


/* =========================================================
   FOTO
   ========================================================= */

.maritime-v2-visual {
    position: relative;
    min-height: 680px;
    overflow: hidden;

    background: #262653;
}

.maritime-v2-photo {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(20,25,55,.02) 20%,
            rgba(20,25,55,.20) 62%,
            rgba(20,25,55,.84) 100%
        ),
        url("../img/portada/enfoque-veracruz.jpg")
        center center / cover no-repeat;

    transition: transform .8s ease;
}

.maritime-v2-visual:hover .maritime-v2-photo {
    transform: scale(1.035);
}


.maritime-v2-location {
    position: absolute;
    top: 34px;
    left: 34px;

    display: flex;
    align-items: center;
    gap: 9px;

    background: rgba(255,255,255,.94);

    padding: 10px 16px;

    font-size: .72rem;
    letter-spacing: .12em;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);
}

.maritime-v2-location span {
    color: #F89E32;
    font-weight: 800;
}

.maritime-v2-location strong {
    color: #424274;
}


.maritime-v2-caption {
    position: absolute;

    left: 38px;
    right: 38px;
    bottom: 36px;

    color: #ffffff;
}

.maritime-v2-caption span {
    display: block;

    color: #F89E32;

    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;

    margin-bottom: 8px;
}

.maritime-v2-caption strong {
    display: block;

    max-width: 440px;

    font-size: 1.45rem;
    line-height: 1.2;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.maritime-v2-content {
    padding: 68px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.maritime-v2-content h2 {
    max-width: 590px;

    font-size: clamp(2.5rem, 3.7vw, 4.35rem);

    line-height: 1.02;
    letter-spacing: -.045em;

    color: #303054;

    margin-bottom: 25px;
}

.maritime-v2-content h2 span {
    color: #F89E32;
}

.maritime-v2-line {
    width: 82px;
    height: 4px;

    background: #F89E32;

    margin-bottom: 27px;
}


.maritime-v2-content p {
    color: #626573;

    font-size: .98rem;
    line-height: 1.75;

    margin-bottom: 18px;
}

.maritime-v2-content .maritime-v2-lead {
    color: #444656;
    font-size: 1.03rem;
}

.maritime-v2-content p strong {
    color: #3d3d67;
}


/* =========================================================
   VALORES
   ========================================================= */

.maritime-v2-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    margin-top: 17px;
    margin-bottom: 30px;

    background: #e4e5eb;
    border: 1px solid #e4e5eb;
}

.maritime-v2-values div {
    background: #ffffff;

    padding: 18px 14px;

    transition:
        background .25s ease,
        color .25s ease;
}

.maritime-v2-values div:hover {
    background: #424274;
}

.maritime-v2-values span {
    display: block;

    color: #F89E32;

    font-size: .66rem;
    font-weight: 800;

    margin-bottom: 6px;
}

.maritime-v2-values strong {
    display: block;

    color: #3a3a62;

    font-size: .9rem;

    margin-bottom: 3px;

    transition: color .25s ease;
}

.maritime-v2-values small {
    color: #777987;

    font-size: .69rem;
    line-height: 1.35;

    transition: color .25s ease;
}

.maritime-v2-values div:hover strong {
    color: #ffffff;
}

.maritime-v2-values div:hover small {
    color: rgba(255,255,255,.72);
}


/* =========================================================
   CTA
   ========================================================= */

.maritime-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: max-content;

    color: #424274;

    font-size: .94rem;
    font-weight: 800;
}

.maritime-v2-link b {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #F89E32;
    color: #ffffff;

    transition:
        transform .2s ease,
        background .2s ease;
}

.maritime-v2-link:hover b {
    transform: translateX(5px);
    background: #424274;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .maritime-v2-grid {
        grid-template-columns: 1fr;
    }

    .maritime-v2-visual {
        min-height: 500px;
    }

    .maritime-v2-content {
        padding: 55px 45px;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .maritime-v2-visual {
        min-height: 390px;
    }

    .maritime-v2-location {
        top: 20px;
        left: 20px;
    }

    .maritime-v2-caption {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .maritime-v2-content {
        padding: 44px 25px;
    }

    .maritime-v2-values {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   GLI - MAS QUE LOGISTICA / IMPULSO
   ========================================================= */

.about-v2 {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #ffffff 0%,
            #ffffff 58%,
            #f5f6fa 58%,
            #f5f6fa 100%
        );
}

.about-v2::after {
    content: "";

    position: absolute;
    right: -130px;
    bottom: 40px;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(66,66,116,.08);
    border-radius: 50%;

    pointer-events: none;
}

.about-v2-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 72px;
    align-items: center;
}

.about-v2-copy {
    max-width: 570px;
}

.about-v2-copy h2 {
    color: #303054;

    font-size: clamp(2.8rem, 4.7vw, 5rem);
    line-height: .98;
    letter-spacing: -.055em;

    margin-bottom: 28px;
}

.about-v2-copy h2 span {
    display: block;
    color: #F89E32;
}

.about-v2-lead {
    color: #3f4250 !important;

    font-size: 1.12rem !important;
    font-weight: 700;

    margin-bottom: 13px !important;
}

.about-v2-copy p {
    color: #666977;

    font-size: .98rem;
    line-height: 1.75;

    margin-bottom: 18px;
}

.about-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 10px;

    color: #424274;

    font-size: .94rem;
    font-weight: 800;
}

.about-v2-link b {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #F89E32;
    color: #ffffff;

    transition:
        transform .22s ease,
        background .22s ease;
}

.about-v2-link:hover b {
    transform: translateX(5px);
    background: #424274;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.about-v2-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.value-card {
    position: relative;

    min-height: 330px;

    padding: 27px 24px 25px;

    background: #ffffff;
    color: #373435;

    border: 1px solid #E1E3EA;

    box-shadow:
        0 12px 30px rgba(34,40,75,.045);

    display: flex;
    flex-direction: column;

    transition:
        background .28s ease,
        color .28s ease,
        border-color .28s ease,
        transform .28s ease,
        box-shadow .28s ease;
}

.value-card:hover {
    background: #424274;
    color: #ffffff;

    border-color: #424274;

    transform: translateY(-8px);

    box-shadow:
        0 22px 44px rgba(40,43,91,.20);
}

.value-number {
    color: #9fa3b5;

    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;

    margin-bottom: 26px;

    transition: color .25s ease;
}

.value-icon {
    color: #F89E32;
    font-size: 1.9rem;

    margin-bottom: 22px;
}

.value-card h3 {
    color: #3d3d63;

    font-size: 1.45rem;

    margin-bottom: 13px;

    transition: color .25s ease;
}

.value-card p {
    color: #6e7180;

    font-size: .87rem;
    line-height: 1.58;

    margin-bottom: 24px;

    transition: color .25s ease;
}

.value-arrow {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 34px;
    height: 34px;

    margin-top: auto;

    border-radius: 50%;

    background: #f4f4f8;
    color: #F89E32;

    font-weight: 800;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.value-card:hover .value-number {
    color: rgba(255,255,255,.55);
}

.value-card:hover h3 {
    color: #ffffff;
}

.value-card:hover p {
    color: rgba(255,255,255,.78);
}

.value-card:hover .value-arrow {
    background: #F89E32;
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================================
   FRANJA INFERIOR
   ========================================================= */

.about-v2-bottom {
    position: relative;
    z-index: 2;

    margin-top: 75px;

    background: #303054;
}

.about-v2-bottom-grid {
    min-height: 92px;

    display: grid;
    grid-template-columns:
        repeat(3, 1fr)
        .7fr;

    align-items: center;
}

.about-v2-bottom-grid span,
.about-v2-bottom-grid strong {
    min-height: 92px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 18px 22px;

    text-align: center;

    border-right:
        1px solid rgba(255,255,255,.14);
}

.about-v2-bottom-grid span {
    color: rgba(255,255,255,.76);

    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
}

.about-v2-bottom-grid strong {
    background: #F89E32;

    color: #ffffff;

    font-size: 1.05rem;
    letter-spacing: .08em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-v2 {
        background: #ffffff;
    }

    .about-v2-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-v2-copy {
        max-width: 750px;
    }

    .about-v2-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 700px) {

    .about-v2-values {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 250px;
    }

    .about-v2-bottom-grid {
        grid-template-columns: 1fr;
    }

    .about-v2-bottom-grid span,
    .about-v2-bottom-grid strong {
        min-height: 72px;

        border-right: 0;
        border-bottom:
            1px solid rgba(255,255,255,.12);
    }

}


/* =========================================================
   GLI - CONTACTO V2
   ========================================================= */

.contact-v2 {
    background: #f4f5f8;
    overflow: hidden;
}

.contact-v2-wrap {
    display: grid;
    grid-template-columns: .86fr 1.14fr;

    max-width: 1240px;

    padding: 0;

    background: #ffffff;

    box-shadow:
        0 24px 65px rgba(30, 34, 69, .11);
}


/* =========================================================
   PANEL IZQUIERDO
   ========================================================= */

.contact-v2-info {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(31, 35, 78, .91),
            rgba(31, 35, 78, .95)
        ),
        url("../img/portada/enfoque-veracruz.jpg")
        center center / cover no-repeat;

    color: #ffffff;
}

.contact-v2-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(248, 158, 50, .09) 0%,
            transparent 35%
        );

    pointer-events: none;
}

.contact-v2-content {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 65px 55px;

    display: flex;
    flex-direction: column;
}

.contact-v2-eyebrow {
    color: #F89E32 !important;
}

.contact-v2-info h2 {
    max-width: 500px;

    color: #ffffff;

    font-size: clamp(2.8rem, 4vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.045em;

    margin-bottom: 25px;
}

.contact-v2-info h2 span {
    display: block;
    color: #F89E32;
}

.contact-v2-intro {
    max-width: 510px;

    color: rgba(255,255,255,.79);

    font-size: 1rem;
    line-height: 1.7;

    margin-bottom: 42px;
}


/* =========================================================
   DATOS DE CONTACTO
   ========================================================= */

.contact-v2-data {
    display: grid;
    gap: 27px;
}

.contact-v2-item {
    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 16px;
    align-items: start;
}

.contact-v2-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    color: #F89E32;

    font-size: 1.1rem;
    font-weight: 700;
}

.contact-v2-item small {
    display: block;

    color: #F89E32;

    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .13em;

    margin-bottom: 6px;
}

.contact-v2-item strong {
    display: block;

    color: #ffffff;

    font-size: .96rem;
    line-height: 1.5;
}

.contact-v2-item p {
    color: rgba(255,255,255,.72);

    font-size: .9rem;
    line-height: 1.55;

    margin: 2px 0 9px;
}

.contact-v2-item a {
    display: inline-block;

    color: #ffffff;

    font-size: .94rem;
    line-height: 1.5;

    border-bottom:
        1px solid rgba(248,158,50,.55);

    padding-bottom: 2px;
}

.contact-v2-item a:hover {
    color: #F89E32;
}

.contact-v2-note {
    margin-top: auto;
    padding-top: 35px;

    border-top:
        1px solid rgba(255,255,255,.16);
}

.contact-v2-note span {
    display: block;

    width: 50px;
    height: 3px;

    background: #F89E32;

    margin-bottom: 14px;
}

.contact-v2-note p {
    max-width: 430px;

    color: rgba(255,255,255,.68);

    font-size: .8rem;
    line-height: 1.55;
}


/* =========================================================
   PANEL FORMULARIO
   ========================================================= */

.contact-v2-form-panel {
    padding: 64px 60px 60px;

    background: #ffffff;
}

.contact-v2-form-header {
    margin-bottom: 32px;
}

.contact-v2-form-header > span {
    display: block;

    color: #F89E32;

    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;

    margin-bottom: 10px;
}

.contact-v2-form-header h3 {
    color: #34345f;

    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.035em;

    margin-bottom: 10px;
}

.contact-v2-form-header p {
    color: #737582;

    font-size: .92rem;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.contact-form-v2 .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px 20px;
}

.contact-form-v2 .form-field {
    display: flex;
    flex-direction: column;
}

.contact-form-v2 .form-field-full {
    grid-column: 1 / -1;
}

.contact-form-v2 label {
    color: #42425f;

    font-size: .75rem;
    font-weight: 700;

    margin-bottom: 8px;
}

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
    width: 100%;

    border: 1px solid #dcdde5;
    border-radius: 0;

    background: #fafafd;
    color: #373435;

    font-family: Arial, sans-serif;
    font-size: .94rem;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.contact-form-v2 input,
.contact-form-v2 select {
    min-height: 50px;

    padding: 0 15px;
}

.contact-form-v2 textarea {
    resize: vertical;

    min-height: 145px;

    padding: 14px 15px;
}

.contact-form-v2 input:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
    border-color: #424274;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(66,66,116,.12);
}


/* =========================================================
   BOTON
   ========================================================= */

.contact-v2-submit {
    margin-top: 27px;

    min-height: 55px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 0;

    background: #F89E32;
    color: #ffffff;

    font-weight: 800;

    cursor: pointer;

    transition:
        background .22s ease,
        transform .22s ease;
}

.contact-v2-submit:hover {
    background: #424274;

    transform: translateY(-2px);
}

.contact-v2-submit span {
    font-size: 1.1rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contact-v2-wrap {
        grid-template-columns: 1fr;
    }

    .contact-v2-info {
        min-height: auto;
    }

    .contact-v2-content {
        padding: 55px 45px;
    }

    .contact-v2-note {
        margin-top: 40px;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 620px) {

    .contact-v2-content {
        padding: 45px 25px;
    }

    .contact-v2-form-panel {
        padding: 45px 25px;
    }

    .contact-form-v2 .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-v2 .form-field-full {
        grid-column: auto;
    }

}


/* =========================================================
   GLI - FOOTER DEFINITIVO
   ========================================================= */

.footer-v2 {
    background: #292954;
    color: #ffffff;
}

.footer-v2-main {
    display: grid;
    grid-template-columns:
        1.45fr
        .72fr
        1fr
        .9fr;

    gap: 55px;

    padding-top: 70px;
    padding-bottom: 62px;
}


/* =========================================================
   LOGO
   ========================================================= */

.footer-v2-brand {
    max-width: 370px;
}

.footer-v2-logo-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 25px;

    background: #ffffff;

    padding: 13px 16px;

    border-radius: 3px;
}

.footer-v2-logo {
    display: block;

    width: auto;
    height: 105px;
    max-width: 280px;

    object-fit: contain;

    filter: none;
    opacity: 1;
    transform: none;
    mix-blend-mode: normal;
}

.footer-v2-message {
    color: #ffffff;

    font-size: 1.18rem;
    line-height: 1.35;

    margin-bottom: 15px;
}

.footer-v2-message strong {
    display: block;

    color: #F89E32;
}

.footer-v2-description {
    max-width: 350px;

    color: rgba(255,255,255,.65);

    font-size: .84rem;
    line-height: 1.65;
}


/* =========================================================
   COLUMNAS
   ========================================================= */

.footer-v2-title {
    display: block;

    color: #F89E32;

    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;

    margin-bottom: 22px;
}

.footer-v2-nav {
    display: flex;
    flex-direction: column;
}

.footer-v2-nav a {
    width: max-content;

    color: rgba(255,255,255,.76);

    font-size: .88rem;

    margin-bottom: 13px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-v2-nav a:hover {
    color: #F89E32;
    transform: translateX(4px);
}

.footer-v2-contact-item {
    margin-bottom: 22px;
}

.footer-v2-contact-item small {
    display: block;

    color: rgba(255,255,255,.42);

    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;

    margin-bottom: 7px;
}

.footer-v2-contact-item p {
    color: rgba(255,255,255,.76);

    font-size: .84rem;
    line-height: 1.6;

    margin: 0;
}

.footer-v2-contact-item a {
    color: rgba(255,255,255,.82);

    font-size: .84rem;

    border-bottom:
        1px solid rgba(248,158,50,.45);

    padding-bottom: 2px;
}

.footer-v2-contact-item a:hover {
    color: #F89E32;
}


/* =========================================================
   CTA FOOTER
   ========================================================= */

.footer-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: .8rem;
    font-weight: 700;

    border-top:
        1px solid rgba(255,255,255,.14);

    padding-top: 17px;

    transition: color .2s ease;
}

.footer-v2-cta span {
    color: #F89E32;

    transition: transform .2s ease;
}

.footer-v2-cta:hover {
    color: #F89E32;
}

.footer-v2-cta:hover span {
    transform: translateX(4px);
}


/* =========================================================
   FRANJA INFERIOR
   ========================================================= */

.footer-v2-bottom {
    border-top:
        1px solid rgba(255,255,255,.12);

    background: #24244b;
}

.footer-v2-bottom-grid {
    min-height: 74px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.footer-v2-bottom p,
.footer-v2-bottom span {
    color: rgba(255,255,255,.50);

    font-size: .72rem;

    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .footer-v2-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 650px) {

    .footer-v2-main {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-top: 50px;
        padding-bottom: 45px;
    }

    .footer-v2-logo {
        height: 90px;
        max-width: 240px;
    }

    .footer-v2-bottom-grid {
        min-height: 100px;

        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        gap: 7px;
    }

}


/* =========================================================
   GLI - AJUSTES FINALES
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

section {
    scroll-margin-top: 110px;
}


/* =========================================================
   HEADER FINAL
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    gap: 35px;
}

.gli-logo-link {
    min-width: 200px;
}

.gli-logo-oficial {
    height: 88px;
}


/* =========================================================
   HERO FINAL
   ========================================================= */

.hero-gli {
    min-height: calc(100vh - 105px);
}

.hero-gli .hero-copy {
    padding-right: 20px;
}

.hero-gli h1 {
    max-width: 780px;
}


/* =========================================================
   SERVICIOS - FORZAR 5 EN ESCRITORIO
   ========================================================= */

@media (min-width: 1180px) {

    .service-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .service-card {
        min-height: 295px;
    }

}


/* =========================================================
   CONSISTENCIA DE BOTONES
   ========================================================= */

.btn,
.contact-v2-submit {
    text-decoration: none;
}

.btn:focus-visible,
.contact-v2-submit:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline: 3px solid #F89E32;
    outline-offset: 2px;
}


/* =========================================================
   ENFOQUE MARITIMO
   ========================================================= */

.maritime-v2-photo {
    will-change: transform;
}

.maritime-v2-content {
    min-width: 0;
}


/* =========================================================
   SECCION INTERACTIVA
   ========================================================= */

.value-card {
    cursor: default;
}

.value-card h3 {
    word-break: normal;
}

.about-v2-copy h2 {
    max-width: 650px;
}


/* =========================================================
   CONTACTO
   ========================================================= */

.contact-form-v2 input,
.contact-form-v2 select,
.contact-form-v2 textarea {
    box-sizing: border-box;
}

.contact-v2-form-panel,
.contact-v2-content {
    min-width: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer-v2-logo-link {
    overflow: hidden;
}

.footer-v2-logo {
    max-width: 100%;
}


/* =========================================================
   RESPONSIVE LAPTOP
   ========================================================= */

@media (max-width: 1180px) {

    .navbar {
        gap: 22px;
    }

    .gli-logo-oficial {
        height: 78px;
    }

    .hero-gli h1 {
        font-size: clamp(3.4rem, 6vw, 5.5rem);
    }

    .maritime-v2-content {
        padding: 55px 45px;
    }

    .about-v2-grid {
        gap: 45px;
    }

}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 900px) {

    section {
        scroll-margin-top: 88px;
    }

    .navbar {
        min-height: 88px;
    }

    .gli-logo-link {
        min-width: auto;
    }

    .gli-logo-oficial {
        height: 68px;
    }

    .hero-gli {
        min-height: auto;
    }

    .hero-gli .hero-content {
        padding-top: 95px;
        padding-bottom: 85px;
    }

    .hero-gli h1 {
        font-size: clamp(3.1rem, 8vw, 4.7rem);
    }

    .hero-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .maritime-v2-grid {
        grid-template-columns: 1fr;
    }

    .about-v2-grid {
        grid-template-columns: 1fr;
    }

    .contact-v2-wrap {
        grid-template-columns: 1fr;
    }

    .footer-v2-main {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE MOVIL
   ========================================================= */

@media (max-width: 600px) {

    section {
        scroll-margin-top: 80px;
    }

    .container {
        width: min(calc(100% - 36px), 1200px);
    }

    .gli-logo-oficial {
        height: 60px;
        max-width: 180px;
    }

    .hero-gli .hero-content {
        padding-top: 75px;
        padding-bottom: 70px;
    }

    .hero-gli h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .hero-gli .hero-description {
        font-size: 1rem;
    }

    .hero-gli .hero-actions {
        width: 100%;
    }

    .hero-gli .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-bottom-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .maritime-v2-visual {
        min-height: 360px;
    }

    .maritime-v2-content {
        padding: 42px 24px;
    }

    .maritime-v2-content h2 {
        font-size: 2.55rem;
    }

    .maritime-v2-values {
        grid-template-columns: 1fr;
    }

    .about-v2-copy h2 {
        font-size: 2.75rem;
    }

    .about-v2-values {
        grid-template-columns: 1fr;
    }

    .contact-v2-info h2 {
        font-size: 2.8rem;
    }

    .contact-v2-content,
    .contact-v2-form-panel {
        padding: 42px 24px;
    }

    .contact-form-v2 .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-v2-main {
        grid-template-columns: 1fr;
    }

    .footer-v2-logo {
        height: 85px;
    }

}


/* =========================================================
   REDUCIR MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* =========================================================
   GLI - CONTACTO COMPACTO FINAL
   ========================================================= */

.contact-v2 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.contact-v2-wrap {
    grid-template-columns: 1fr 1.05fr !important;
    max-width: 1180px !important;
    min-height: 0 !important;
}


/* =========================================================
   LADO IZQUIERDO
   ========================================================= */

.contact-v2-info {
    min-height: 610px !important;
}

.contact-v2-content {
    padding: 42px 42px 34px !important;
}

.contact-v2-info h2 {
    font-size: clamp(2.9rem, 4vw, 4.3rem) !important;
    line-height: .98 !important;
    margin-bottom: 20px !important;
}

.contact-v2-intro {
    font-size: .93rem !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
}

.contact-v2-data {
    gap: 18px !important;
}

.contact-v2-item {
    grid-template-columns: 38px 1fr !important;
    gap: 13px !important;
}

.contact-v2-icon {
    width: 36px !important;
    height: 36px !important;
}

.contact-v2-item small {
    margin-bottom: 4px !important;
}

.contact-v2-item strong {
    font-size: .89rem !important;
}

.contact-v2-item p,
.contact-v2-item a {
    font-size: .82rem !important;
    line-height: 1.45 !important;
}

.contact-v2-note {
    padding-top: 22px !important;
    margin-top: 24px !important;
}

.contact-v2-note p {
    margin: 0 !important;
}


/* =========================================================
   FORMULARIO DERECHO
   ========================================================= */

.contact-v2-form-panel {
    padding: 42px 42px 34px !important;
}

.contact-v2-form-header {
    margin-bottom: 24px !important;
}

.contact-v2-form-header h3 {
    font-size: clamp(2.2rem, 3vw, 3.25rem) !important;
    margin-bottom: 7px !important;
}

.contact-v2-form-header p {
    margin-bottom: 0 !important;
}

.contact-form-v2 .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 18px !important;
}

.contact-form-v2 input,
.contact-form-v2 select {
    min-height: 46px !important;
}

.contact-form-v2 textarea {
    min-height: 110px !important;
    height: 110px !important;
}

.contact-form-v2 label {
    margin-bottom: 6px !important;
}


/* =========================================================
   BOTON HORIZONTAL
   ========================================================= */

.contact-v2-submit {
    width: 100% !important;

    min-height: 58px !important;

    margin-top: 20px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 18px !important;

    background: #F89E32 !important;
    color: #ffffff !important;

    font-size: .95rem !important;
    font-weight: 800 !important;
}

.contact-v2-submit:hover {
    background: #424274 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contact-v2-wrap {
        grid-template-columns: 1fr !important;
    }

    .contact-v2-info {
        min-height: auto !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 620px) {

    .contact-v2 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .contact-v2-content,
    .contact-v2-form-panel {
        padding: 34px 24px !important;
    }

    .contact-form-v2 .form-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-v2-info h2 {
        font-size: 2.8rem !important;
    }

}


/* =========================================================
   GLI - CONTACTO PRO FINAL
   ========================================================= */

.contact-pro {
    background: #f3f4f7 !important;

    padding: 62px 30px !important;

    scroll-margin-top: 110px;
}

.contact-pro-box {
    width: min(1180px, 100%) !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, .96fr)
        minmax(0, 1.04fr) !important;

    min-height: 610px !important;

    background: #ffffff !important;

    box-shadow:
        0 18px 48px rgba(35, 37, 75, .09) !important;

    overflow: hidden !important;
}


/* =========================================================
   PANEL IZQUIERDO
   ========================================================= */

.contact-pro-left {
    position: relative !important;

    min-height: 610px !important;

    background:
        url("../img/portada/enfoque-veracruz.jpg")
        center center / cover no-repeat !important;

    overflow: hidden !important;
}

.contact-pro-left-overlay {
    position: absolute !important;
    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(38, 40, 87, .92) 0%,
            rgba(35, 40, 83, .88) 58%,
            rgba(22, 44, 75, .88) 100%
        ) !important;
}

.contact-pro-left-content {
    position: relative !important;
    z-index: 2 !important;

    height: 100% !important;

    padding: 39px 44px 30px !important;

    display: flex !important;
    flex-direction: column !important;
}

.contact-pro-eyebrow {
    color: #F89E32 !important;

    font-size: .72rem !important;
    font-weight: 800 !important;
    letter-spacing: .18em !important;

    margin: 0 0 12px !important;
}

.contact-pro-orange-line {
    width: 64px !important;
    height: 3px !important;

    background: #F89E32 !important;

    margin-bottom: 20px !important;
}

.contact-pro-left h2 {
    color: #ffffff !important;

    font-size: clamp(3rem, 4.2vw, 4.5rem) !important;
    line-height: .97 !important;
    letter-spacing: -.05em !important;

    margin: 0 0 22px !important;
}

.contact-pro-left h2 span {
    display: block !important;

    color: #F89E32 !important;
}

.contact-pro-intro {
    max-width: 480px !important;

    color: rgba(255,255,255,.84) !important;

    font-size: .94rem !important;
    line-height: 1.6 !important;

    margin: 0 0 27px !important;
}


/* =========================================================
   DATOS IZQUIERDOS
   ========================================================= */

.contact-pro-info {
    display: grid !important;
    gap: 17px !important;
}

.contact-pro-row {
    display: grid !important;

    grid-template-columns: 43px 1fr !important;

    gap: 15px !important;

    align-items: start !important;
}

.contact-pro-icon {
    width: 40px !important;
    height: 40px !important;

    display: flex !important;

    justify-content: center !important;
    align-items: center !important;

    border:
        1px solid rgba(255,255,255,.38) !important;

    color: #F89E32 !important;

    font-size: 1rem !important;
}

.contact-pro-row small {
    display: block !important;

    color: #F89E32 !important;

    font-size: .64rem !important;
    font-weight: 800 !important;

    letter-spacing: .12em !important;

    margin-bottom: 5px !important;
}

.contact-pro-row strong {
    display: block !important;

    color: #ffffff !important;

    font-size: .85rem !important;

    margin-bottom: 2px !important;
}

.contact-pro-row p {
    color: rgba(255,255,255,.80) !important;

    font-size: .8rem !important;
    line-height: 1.45 !important;

    margin: 0 !important;
}

.contact-pro-row a {
    color: #ffffff !important;

    font-size: .83rem !important;

    text-decoration: none !important;

    border-bottom:
        1px solid rgba(248,158,50,.55) !important;
}


/* =========================================================
   SLOGAN ABAJO
   ========================================================= */

.contact-pro-slogan {
    margin-top: auto !important;

    padding-top: 22px !important;
}

.contact-pro-slogan > span {
    display: block !important;

    width: 62px !important;
    height: 3px !important;

    background: #F89E32 !important;

    margin-bottom: 12px !important;
}

.contact-pro-slogan p {
    color: #ffffff !important;

    font-size: 1.02rem !important;
    line-height: 1.25 !important;

    margin: 0 !important;
}

.contact-pro-slogan strong {
    display: block !important;

    color: #F89E32 !important;
}


/* =========================================================
   LADO DERECHO
   ========================================================= */

.contact-pro-right {
    background: #ffffff !important;

    padding: 39px 45px 32px !important;

    min-width: 0 !important;
}

.contact-pro-form-header {
    margin-bottom: 24px !important;
}

.contact-pro-form-header > p {
    color: #F89E32 !important;

    font-size: .69rem !important;
    font-weight: 800 !important;

    letter-spacing: .16em !important;

    margin: 0 0 9px !important;
}

.contact-pro-form-header h3 {
    max-width: 550px !important;

    color: #2f315e !important;

    font-size: clamp(2.3rem, 3.3vw, 3.3rem) !important;

    line-height: .98 !important;
    letter-spacing: -.045em !important;

    margin: 0 0 12px !important;
}

.contact-pro-form-header h3 span {
    display: block !important;
}

.contact-pro-form-header small {
    color: #717381 !important;

    font-size: .84rem !important;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.contact-pro-form {
    display: block !important;

    width: 100% !important;
}

.contact-pro-fields {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0,1fr)) !important;

    gap: 17px 18px !important;
}

.contact-pro-field {
    display: flex !important;

    flex-direction: column !important;

    min-width: 0 !important;
}

.contact-pro-full {
    grid-column: 1 / -1 !important;
}

.contact-pro-field label {
    display: block !important;

    color: #353657 !important;

    font-size: .72rem !important;
    font-weight: 700 !important;

    margin: 0 0 6px !important;
}

.contact-pro-field input,
.contact-pro-field select,
.contact-pro-field textarea {
    width: 100% !important;

    box-sizing: border-box !important;

    border:
        1px solid #d7d9e2 !important;

    border-radius: 0 !important;

    background: #fafbfc !important;
    color: #373435 !important;

    font-family: Arial, sans-serif !important;
    font-size: .9rem !important;

    outline: none !important;
}

.contact-pro-field input,
.contact-pro-field select {
    height: 45px !important;

    padding: 0 13px !important;
}

.contact-pro-field textarea {
    height: 108px !important;
    min-height: 108px !important;

    resize: vertical !important;

    padding: 12px 13px !important;

    line-height: 1.5 !important;
}

.contact-pro-field input:focus,
.contact-pro-field select:focus,
.contact-pro-field textarea:focus {
    border-color: #424274 !important;

    background: #ffffff !important;

    box-shadow:
        0 0 0 3px rgba(66,66,116,.10) !important;
}


/* =========================================================
   BOTON NARANJA HORIZONTAL
   ========================================================= */

.contact-pro-button {
    width: 100% !important;

    height: 58px !important;

    margin: 18px 0 0 !important;

    padding: 0 23px !important;

    border: 0 !important;

    background: #F89E32 !important;
    color: #ffffff !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 28px !important;

    font-family: Arial, sans-serif !important;

    font-size: .95rem !important;
    font-weight: 800 !important;

    cursor: pointer !important;

    transition:
        background .2s ease,
        transform .2s ease !important;
}

.contact-pro-button b {
    font-size: 1.15rem !important;
}

.contact-pro-button:hover {
    background: #424274 !important;

    transform: translateY(-2px) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .contact-pro-box {
        grid-template-columns: 1fr !important;
    }

    .contact-pro-left {
        min-height: 560px !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 620px) {

    .contact-pro {
        padding: 35px 18px !important;
    }

    .contact-pro-left-content,
    .contact-pro-right {
        padding: 32px 23px !important;
    }

    .contact-pro-left h2 {
        font-size: 2.9rem !important;
    }

    .contact-pro-fields {
        grid-template-columns: 1fr !important;
    }

    .contact-pro-full {
        grid-column: auto !important;
    }

}


/* =========================================================
   GLI - ENFOQUE MARITIMO COMPACTO FINAL
   ========================================================= */

.maritime-v2 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
}

.maritime-v2-grid {
    width: min(1180px, 100%) !important;

    margin: 0 auto !important;

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, .98fr) !important;

    min-height: 565px !important;

    align-items: stretch !important;
}


/* =========================================================
   FOTO
   ========================================================= */

.maritime-v2-visual {
    min-height: 565px !important;
}

.maritime-v2-photo {
    background-position:
        center 72% !important;
}

.maritime-v2-location {
    top: 28px !important;
    left: 28px !important;

    padding: 9px 14px !important;
}

.maritime-v2-caption {
    left: 30px !important;
    right: 30px !important;
    bottom: 28px !important;
}

.maritime-v2-caption strong {
    max-width: 390px !important;

    font-size: 1.25rem !important;
}


/* =========================================================
   CONTENIDO DERECHO
   ========================================================= */

.maritime-v2-content {
    padding: 39px 42px !important;

    justify-content: center !important;
}

.maritime-v2-content .eyebrow {
    margin-bottom: 17px !important;
}

.maritime-v2-content h2 {
    max-width: 520px !important;

    font-size:
        clamp(2.55rem, 3.25vw, 3.75rem) !important;

    line-height: .98 !important;

    margin-bottom: 18px !important;
}

.maritime-v2-line {
    width: 68px !important;
    height: 3px !important;

    margin-bottom: 20px !important;
}

.maritime-v2-content p {
    font-size: .88rem !important;
    line-height: 1.58 !important;

    margin-bottom: 13px !important;
}

.maritime-v2-content .maritime-v2-lead {
    font-size: .91rem !important;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.maritime-v2-values {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.maritime-v2-values div {
    padding: 14px 12px !important;

    min-height: 92px !important;
}

.maritime-v2-values span {
    margin-bottom: 4px !important;
}

.maritime-v2-values strong {
    font-size: .82rem !important;
}

.maritime-v2-values small {
    font-size: .64rem !important;
}


/* =========================================================
   CTA
   ========================================================= */

.maritime-v2-link {
    margin-top: 2px !important;

    font-size: .88rem !important;
}

.maritime-v2-link b {
    width: 32px !important;
    height: 32px !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .maritime-v2-grid {
        grid-template-columns: 1fr !important;
    }

    .maritime-v2-visual {
        min-height: 450px !important;
    }

    .maritime-v2-content {
        padding: 42px 35px !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .maritime-v2 {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .maritime-v2-visual {
        min-height: 340px !important;
    }

    .maritime-v2-photo {
        background-position:
            center 72% !important;
    }

    .maritime-v2-content {
        padding: 34px 24px !important;
    }

    .maritime-v2-content h2 {
        font-size: 2.55rem !important;
    }

    .maritime-v2-values {
        grid-template-columns: 1fr !important;
    }

}


/* =========================================================
   GLI - ENFOQUE MARITIMO HORIZONTAL FINAL
   ========================================================= */

.maritime-pro {
    background: #f3f4f7 !important;

    padding: 54px 28px !important;

    scroll-margin-top: 110px !important;
}

.maritime-pro-box {
    width: min(1220px, 100%) !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.06fr) !important;

    height: 575px !important;

    min-height: 575px !important;
    max-height: 575px !important;

    background: #ffffff !important;

    overflow: hidden !important;

    box-shadow:
        0 18px 46px rgba(35, 37, 75, .08) !important;
}


/* =========================================================
   FOTO IZQUIERDA
   ========================================================= */

.maritime-pro-left {
    position: relative !important;

    height: 575px !important;

    min-height: 575px !important;

    overflow: hidden !important;

    background: #25264f !important;
}

.maritime-pro-photo {
    position: absolute !important;

    inset: 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(25, 30, 62, .03) 0%,
            rgba(25, 30, 62, .06) 48%,
            rgba(18, 33, 57, .78) 100%
        ),
        url("../img/portada/enfoque-veracruz.jpg")
        center 78% / cover no-repeat !important;

    transform: scale(1.01) !important;

    transition:
        transform .6s ease !important;
}

.maritime-pro-left:hover .maritime-pro-photo {
    transform: scale(1.035) !important;
}


/* =========================================================
   BADGE VERACRUZ
   ========================================================= */

.maritime-pro-badge {
    position: absolute !important;

    top: 24px !important;
    left: 24px !important;

    z-index: 2 !important;

    display: inline-flex !important;

    align-items: center !important;

    gap: 8px !important;

    padding: 10px 15px !important;

    background:
        rgba(255,255,255,.96) !important;

    box-shadow:
        0 7px 22px rgba(0,0,0,.08) !important;
}

.maritime-pro-badge span {
    color: #F89E32 !important;

    font-size: .7rem !important;

    font-weight: 800 !important;

    letter-spacing: .08em !important;
}

.maritime-pro-badge strong {
    color: #424274 !important;

    font-size: .7rem !important;

    letter-spacing: .08em !important;
}


/* =========================================================
   TEXTO SOBRE FOTO
   ========================================================= */

.maritime-pro-caption {
    position: absolute !important;

    left: 38px !important;
    bottom: 34px !important;

    z-index: 2 !important;

    max-width: 360px !important;

    color: #ffffff !important;
}

.maritime-pro-caption-line {
    width: 62px !important;
    height: 3px !important;

    background: #F89E32 !important;

    margin-bottom: 14px !important;
}

.maritime-pro-caption small {
    display: block !important;

    color: #F89E32 !important;

    font-size: .72rem !important;
    font-weight: 800 !important;

    letter-spacing: .12em !important;

    margin-bottom: 7px !important;
}

.maritime-pro-caption strong {
    display: block !important;

    color: #ffffff !important;

    font-size: 1.22rem !important;
    line-height: 1.28 !important;
}


/* =========================================================
   CONTENIDO DERECHO
   ========================================================= */

.maritime-pro-right {
    height: 575px !important;

    box-sizing: border-box !important;

    padding: 34px 39px 28px !important;

    background: #ffffff !important;

    display: flex !important;
    flex-direction: column !important;

    justify-content: center !important;

    min-width: 0 !important;

    overflow: hidden !important;
}

.maritime-pro-eyebrow {
    color: #4b4d68 !important;

    font-size: .7rem !important;

    font-weight: 800 !important;

    letter-spacing: .15em !important;

    margin: 0 0 13px !important;
}

.maritime-pro-right h2 {
    max-width: 620px !important;

    color: #303054 !important;

    font-size:
        clamp(2.45rem, 3.35vw, 3.65rem) !important;

    line-height: .96 !important;

    letter-spacing: -.045em !important;

    margin: 0 0 17px !important;
}

.maritime-pro-right h2 span {
    color: #F89E32 !important;
}

.maritime-pro-line {
    width: 66px !important;
    height: 3px !important;

    background: #F89E32 !important;

    margin-bottom: 18px !important;
}


/* =========================================================
   PARRAFOS
   ========================================================= */

.maritime-pro-lead,
.maritime-pro-text {
    max-width: 610px !important;

    color: #555967 !important;

    font-size: .84rem !important;
    line-height: 1.55 !important;

    margin: 0 0 13px !important;
}

.maritime-pro-lead strong {
    color: #34355f !important;
}


/* =========================================================
   3 TARJETAS
   ========================================================= */

.maritime-pro-values {
    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0,1fr)) !important;

    gap: 14px !important;

    margin-top: 4px !important;
    margin-bottom: 16px !important;
}

.maritime-pro-values article {
    min-height: 104px !important;

    padding: 14px 14px !important;

    box-sizing: border-box !important;

    background: #f6f7f9 !important;

    border:
        1px solid #ececf1 !important;

    transition:
        background .22s ease,
        transform .22s ease !important;
}

.maritime-pro-values article:hover {
    background: #424274 !important;

    transform: translateY(-3px) !important;
}

.maritime-pro-values span {
    display: block !important;

    color: #F89E32 !important;

    font-size: 1.1rem !important;
    font-weight: 800 !important;

    margin-bottom: 3px !important;
}

.maritime-pro-values strong {
    display: block !important;

    color: #33345c !important;

    font-size: .82rem !important;

    margin-bottom: 3px !important;

    transition: color .2s ease !important;
}

.maritime-pro-values small {
    display: block !important;

    color: #707381 !important;

    font-size: .65rem !important;

    line-height: 1.35 !important;

    transition: color .2s ease !important;
}

.maritime-pro-values article:hover strong {
    color: #ffffff !important;
}

.maritime-pro-values article:hover small {
    color: rgba(255,255,255,.75) !important;
}


/* =========================================================
   CTA
   ========================================================= */

.maritime-pro-cta {
    display: inline-flex !important;

    align-items: center !important;

    gap: 15px !important;

    width: max-content !important;

    color: #31325b !important;

    font-size: .82rem !important;

    font-weight: 800 !important;

    text-decoration: none !important;

    margin-top: 0 !important;
}

.maritime-pro-cta b {
    width: 36px !important;
    height: 36px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #F89E32 !important;
    color: #ffffff !important;

    transition:
        transform .2s ease,
        background .2s ease !important;
}

.maritime-pro-cta:hover b {
    transform: translateX(4px) !important;

    background: #424274 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .maritime-pro-box {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        grid-template-columns: 1fr !important;
    }

    .maritime-pro-left {
        height: 440px !important;
        min-height: 440px !important;
    }

    .maritime-pro-right {
        height: auto !important;

        padding: 40px 34px !important;

        overflow: visible !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .maritime-pro {
        padding:
            35px 18px !important;
    }

    .maritime-pro-left {
        height: 340px !important;
        min-height: 340px !important;
    }

    .maritime-pro-photo {
        background-position:
            center 78% !important;
    }

    .maritime-pro-caption {
        left: 23px !important;
        bottom: 24px !important;
    }

    .maritime-pro-right {
        padding:
            32px 23px !important;
    }

    .maritime-pro-right h2 {
        font-size:
            2.55rem !important;
    }

    .maritime-pro-values {
        grid-template-columns:
            1fr !important;
    }

}


/* =========================================================
   GLI - FIX ENFOQUE MARITIMO
   EVITA CONTENIDO ESCONDIDO
   ========================================================= */

.maritime-pro-box {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;
}

.maritime-pro-left {
    height: 590px !important;
    min-height: 590px !important;
}

.maritime-pro-right {
    height: 590px !important;

    padding:
        27px 38px 23px !important;

    justify-content:
        flex-start !important;

    overflow:
        visible !important;
}


/* TITULO */

.maritime-pro-eyebrow {
    margin-bottom:
        9px !important;
}

.maritime-pro-right h2 {
    font-size:
        clamp(2.3rem, 3vw, 3.35rem) !important;

    line-height:
        .94 !important;

    margin-bottom:
        12px !important;
}

.maritime-pro-line {
    margin-bottom:
        14px !important;
}


/* TEXTOS */

.maritime-pro-lead,
.maritime-pro-text {
    font-size:
        .79rem !important;

    line-height:
        1.45 !important;

    margin-bottom:
        10px !important;
}


/* TARJETAS */

.maritime-pro-values {
    margin-top:
        2px !important;

    margin-bottom:
        12px !important;

    gap:
        12px !important;
}

.maritime-pro-values article {
    min-height:
        90px !important;

    padding:
        11px 12px !important;
}

.maritime-pro-values span {
    font-size:
        1rem !important;
}

.maritime-pro-values strong {
    font-size:
        .78rem !important;
}

.maritime-pro-values small {
    font-size:
        .61rem !important;
}


/* CTA - SIEMPRE VISIBLE */

.maritime-pro-cta {
    display:
        inline-flex !important;

    visibility:
        visible !important;

    opacity:
        1 !important;

    margin-top:
        0 !important;

    position:
        relative !important;

    z-index:
        5 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .maritime-pro-box {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .maritime-pro-left {
        height: 440px !important;
        min-height: 440px !important;
    }

    .maritime-pro-right {
        height: auto !important;
        overflow: visible !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .maritime-pro-left {
        height: 340px !important;
        min-height: 340px !important;
    }

    .maritime-pro-right {
        height: auto !important;

        padding:
            30px 23px !important;
    }

}


/* =========================================================
   GLI - ENFOQUE FINAL SIN CAJAS
   ========================================================= */

/* MANTENER EXACTAMENTE LA PROPORCION ACTUAL */

.maritime-pro-box {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.06fr) !important;
}

.maritime-pro-left {
    height: 590px !important;
    min-height: 590px !important;
}

.maritime-pro-right {
    height: 590px !important;

    padding:
        43px 46px 38px !important;

    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    justify-content: flex-start !important;

    overflow: hidden !important;
}


/* =========================================================
   TITULO
   ========================================================= */

.maritime-pro-eyebrow {
    margin:
        0 0 15px !important;

    font-size:
        .72rem !important;

    letter-spacing:
        .16em !important;
}

.maritime-pro-right h2 {
    max-width:
        620px !important;

    font-size:
        clamp(2.65rem, 3.25vw, 3.65rem) !important;

    line-height:
        .96 !important;

    letter-spacing:
        -.045em !important;

    margin:
        0 0 18px !important;
}

.maritime-pro-line {
    width:
        70px !important;

    height:
        3px !important;

    margin:
        0 0 21px !important;
}


/* =========================================================
   TEXTOS
   ========================================================= */

.maritime-pro-lead,
.maritime-pro-text {
    max-width:
        610px !important;

    font-size:
        .88rem !important;

    line-height:
        1.62 !important;

    margin:
        0 0 17px !important;
}

.maritime-pro-lead strong {
    color:
        #303054 !important;
}


/* =========================================================
   OCULTAR CUALQUIER RESTO DE LAS CAJAS
   ========================================================= */

.maritime-pro-values {
    display:
        none !important;
}


/* =========================================================
   CTA - COLOCADO COMO EN LA REFERENCIA
   ========================================================= */

.maritime-pro-cta {
    display:
        inline-flex !important;

    visibility:
        visible !important;

    opacity:
        1 !important;

    align-items:
        center !important;

    gap:
        20px !important;

    width:
        max-content !important;

    margin-top:
        16px !important;

    color:
        #303054 !important;

    font-size:
        .92rem !important;

    font-weight:
        800 !important;

    text-decoration:
        none !important;
}

.maritime-pro-cta b {
    width:
        46px !important;

    height:
        46px !important;

    display:
        inline-flex !important;

    align-items:
        center !important;

    justify-content:
        center !important;

    flex-shrink:
        0 !important;

    border-radius:
        50% !important;

    background:
        #F89E32 !important;

    color:
        #ffffff !important;

    font-size:
        1rem !important;
}


/* =========================================================
   FOTO - MISMA PROPORCION
   ========================================================= */

.maritime-pro-photo {
    background-position:
        center 78% !important;
}

.maritime-pro-caption {
    left:
        38px !important;

    bottom:
        35px !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .maritime-pro-box {
        height:
            auto !important;

        min-height:
            0 !important;

        max-height:
            none !important;

        grid-template-columns:
            1fr !important;
    }

    .maritime-pro-left {
        height:
            440px !important;

        min-height:
            440px !important;
    }

    .maritime-pro-right {
        height:
            auto !important;

        padding:
            40px 34px !important;

        overflow:
            visible !important;
    }

}


/* =========================================================
   MOVIL
   ========================================================= */

@media (max-width: 600px) {

    .maritime-pro-left {
        height:
            340px !important;

        min-height:
            340px !important;
    }

    .maritime-pro-right {
        height:
            auto !important;

        padding:
            32px 23px !important;
    }

    .maritime-pro-right h2 {
        font-size:
            2.55rem !important;
    }

    .maritime-pro-lead,
    .maritime-pro-text {
        font-size:
            .86rem !important;
    }

}


/* =========================================================
   GLI - INDICADOR DE VERSION
   ========================================================= */

.gli-version-indicator {
    position: fixed;

    right: 14px;
    bottom: 14px;

    z-index: 99999;

    padding: 7px 11px;

    background: rgba(48, 48, 84, .94);

    color: rgba(255,255,255,.72);

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 4px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.15);

    font-family: Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;

    line-height: 1;

    pointer-events: none;

    user-select: none;
}

.gli-version-indicator span {
    color: #F89E32;

    margin-left: 5px;

    font-weight: 800;
}

@media (max-width: 600px) {

    .gli-version-indicator {
        right: 8px;
        bottom: 8px;

        padding: 6px 8px;

        font-size: 9px;
    }

}


/* === GLI HEADER FIX FINAL === */

/*
   Correccion final del encabezado.
   Este bloque debe permanecer al final del archivo.
*/

.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;

    width: 100% !important;

    background: rgba(255,255,255,.97) !important;
    border-bottom: 1px solid #E5E5EC !important;
}

.header .container.navbar {
    width: min(calc(100% - 48px), 1200px) !important;

    min-height: 96px !important;
    height: 96px !important;

    margin: 0 auto !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 32px !important;

    padding: 0 !important;
}

.header .gli-logo-link {
    display: flex !important;

    align-items: center !important;
    justify-content: flex-start !important;

    width: auto !important;
    min-width: 190px !important;
    max-width: 230px !important;

    height: 96px !important;

    padding: 6px 0 !important;
    margin: 0 !important;

    flex: 0 0 auto !important;

    overflow: visible !important;
}

.header .gli-logo-oficial {
    display: block !important;

    width: auto !important;
    height: 82px !important;

    max-width: 220px !important;
    max-height: 82px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    flex: 0 0 auto !important;
}

.header .nav {
    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 24px !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;

    background: transparent !important;

    flex: 1 1 auto !important;

    font-size: .9rem !important;
}

.header .nav > a {
    white-space: nowrap !important;
}

.header .btn-header {
    min-height: 46px !important;

    padding: 0 20px !important;

    background: #424274 !important;
    color: #ffffff !important;
}

.header .menu-toggle {
    display: none !important;
}


/* TABLET */

@media (max-width: 900px) {

    .header .container.navbar {
        width: min(calc(100% - 36px), 1200px) !important;

        min-height: 82px !important;
        height: 82px !important;
    }

    .header .gli-logo-link {
        min-width: auto !important;
        height: 82px !important;
    }

    .header .gli-logo-oficial {
        height: 64px !important;
        max-height: 64px !important;
        max-width: 190px !important;
    }

    .header .menu-toggle {
        display: block !important;
    }

    .header .nav {
        display: none !important;

        position: absolute !important;

        top: 82px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        padding: 24px !important;

        flex-direction: column !important;
        align-items: stretch !important;

        background: #ffffff !important;

        border-bottom: 1px solid #E5E5EC !important;
    }

    .header .nav.open {
        display: flex !important;
    }
}


/* MOVIL */

@media (max-width: 600px) {

    .header .container.navbar {
        width: min(calc(100% - 30px), 1200px) !important;

        min-height: 74px !important;
        height: 74px !important;
    }

    .header .gli-logo-link {
        height: 74px !important;
    }

    .header .gli-logo-oficial {
        height: 56px !important;
        max-height: 56px !important;
        max-width: 170px !important;
    }

    .header .nav {
        top: 74px !important;
    }
}

/* === FIN GLI HEADER FIX FINAL === */


/* GLI LOGO HORIZONTAL FINAL 20260910 */
.header .gli-logo-link{width:300px!important;min-width:300px!important;max-width:300px!important;height:96px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;}
.header .gli-logo-oficial{width:300px!important;height:auto!important;max-width:300px!important;max-height:78px!important;object-fit:contain!important;display:block!important;}
@media(max-width:1000px){.header .gli-logo-link{width:235px!important;min-width:235px!important;max-width:235px!important}.header .gli-logo-oficial{width:235px!important;max-width:235px!important}}
@media(max-width:600px){.header .gli-logo-link{width:190px!important;min-width:190px!important;max-width:190px!important}.header .gli-logo-oficial{width:190px!important;max-width:190px!important}}
/* FIN GLI LOGO HORIZONTAL FINAL 20260910 */

/* GLI LOGO SUPERIOR GRANDE APROBADO */
.header .gli-logo-link{width:430px!important;min-width:430px!important;max-width:430px!important;height:96px!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;}
.header .gli-logo-oficial{width:430px!important;height:92px!important;max-width:430px!important;max-height:92px!important;object-fit:contain!important;object-position:left center!important;display:block!important;}
@media(max-width:1200px){.header .gli-logo-link{width:350px!important;min-width:350px!important;max-width:350px!important}.header .gli-logo-oficial{width:350px!important;height:86px!important;max-width:350px!important;max-height:86px!important}}
@media(max-width:900px){.header .gli-logo-link{width:270px!important;min-width:270px!important;max-width:270px!important;height:82px!important}.header .gli-logo-oficial{width:270px!important;height:76px!important;max-width:270px!important;max-height:76px!important}}
@media(max-width:600px){.header .gli-logo-link{width:220px!important;min-width:220px!important;max-width:220px!important;height:74px!important}.header .gli-logo-oficial{width:220px!important;height:68px!important;max-width:220px!important;max-height:68px!important}}
/* FIN GLI LOGO SUPERIOR GRANDE APROBADO */






/* GLI FOOTER VERTICAL BLANCO FINAL */
.footer-v2-logo-link{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;display:inline-block!important;}
.footer-v2-logo{width:220px!important;height:auto!important;max-width:220px!important;background:transparent!important;object-fit:contain!important;object-position:left center!important;display:block!important;}
@media(max-width:900px){.footer-v2-logo{width:190px!important;max-width:190px!important;}}
@media(max-width:600px){.footer-v2-logo{width:170px!important;max-width:170px!important;}}
/* FIN GLI FOOTER VERTICAL BLANCO FINAL */

/* GLI FOOTER 4 COLUMNAS FINAL */
.footer-v2-grid{display:grid!important;grid-template-columns:1.45fr .8fr 1fr 1.15fr!important;gap:55px!important;align-items:start!important;}
.footer-v2-contact h4,.footer-v2-email h4{color:#ff9d22!important;margin:0 0 28px!important;font-weight:800!important;letter-spacing:1.4px!important;}
.footer-v2-label{display:block!important;color:#9292ad!important;font-size:11px!important;font-weight:700!important;letter-spacing:1.2px!important;margin-bottom:10px!important;}
.footer-v2-contact p,.footer-v2-email p{color:#fff!important;line-height:1.65!important;margin:0!important;}
.footer-v2-email a,.footer-v2-phone a{color:#fff!important;text-decoration:none!important;border-bottom:1px solid #ff9d22!important;}
.footer-v2-phone{margin-top:34px!important;}
.footer-v2-phone a{border-bottom:0!important;}
@media(max-width:1100px){.footer-v2-grid{grid-template-columns:1.3fr 1fr 1fr!important}.footer-v2-email{grid-column:3!important}.footer-v2-contact{grid-column:2!important}}
@media(max-width:760px){.footer-v2-grid{grid-template-columns:1fr!important;gap:35px!important}.footer-v2-email,.footer-v2-contact{grid-column:auto!important}}
/* FIN GLI FOOTER 4 COLUMNAS FINAL */
