/* ============================================================
   GBA Label — Theme CSS
   Colores: #004d68 (teal), #a7897f (rosa), #161615 (negro)
   Fuente: adobe-clean (TypeKit apl6lau)
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
    --gba-teal:      #004d68;
    --gba-rose:      #a7897f;
    --gba-dark:      #161615;
    --gba-white:     #ffffff;
    --gba-light:     #f5f4f2;
    --gba-font:      'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --gba-nav-h:     80px;
}

/* --- Reset / Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--gba-font);
    color: var(--gba-dark);
    background: var(--gba-white);
    overflow-x: hidden;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.gba-navbar {
    background: #eeeeee;
    height: var(--gba-nav-h);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.gba-navbar.scrolled {
    background: var(--gba-teal);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.gba-logo {
    height: 36px;
    width: auto;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gba-navbar.scrolled .gba-logo {
    opacity: 0;
    visibility: hidden;
}

.gba-navbar .nav-link {
    font-family: var(--gba-font);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gba-dark);
    padding: 0.4rem 0.85rem;
    position: relative;
    transition: color 0.25s ease;
}

.gba-navbar .nav-link:hover {
    color: var(--gba-teal);
}

.gba-navbar .nav-link.active {
    color: var(--gba-dark);
    border: 1px solid var(--gba-dark);
    padding: 0.3rem 0.85rem;
}

/* Sticky: textos y elementos en blanco */
.gba-navbar.scrolled .nav-link {
    color: rgba(255,255,255,0.80);
}

.gba-navbar.scrolled .nav-link:hover {
    color: var(--gba-white);
}

.gba-navbar.scrolled .nav-link.active {
    color: var(--gba-white);
    border-color: rgba(255,255,255,0.70);
}

.gba-navbar.scrolled .gba-lang-btn {
    color: rgba(255,255,255,0.55);
}

.gba-navbar.scrolled .gba-lang-btn:hover {
    color: var(--gba-white);
}

.gba-navbar.scrolled .gba-lang-btn.active {
    color: var(--gba-white);
    border-color: var(--gba-white);
}

.gba-navbar.scrolled .gba-lang-divider {
    color: rgba(255,255,255,0.30);
}

.gba-navbar.scrolled .gba-nav-sep {
    background: rgba(255,255,255,0.25);
}

.gba-navbar.scrolled .navbar-toggler {
    border-color: rgba(255,255,255,0.40);
}

.gba-navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* El nav desktop debe ser horizontal (Bootstrap aplica column por defecto sin navbar-expand-*) */
.gba-navbar .navbar-nav {
    flex-direction: row;
}

/* Separador vertical entre links y extras */
.gba-nav-sep {
    width: 1px;
    height: 20px;
    background: rgba(0,0,0,0.15);
    margin: 0 0.5rem;
    align-self: center;
}

/* LinkedIn en navbar */
.gba-nav-icon {
    padding: 0.3rem 0.5rem !important;
    display: flex;
    align-items: center;
    transition: border-color 0.25s ease;
}

.gba-navbar.scrolled .gba-nav-icon {
    border-color: rgba(255,255,255,0.70);
}

.gba-nav-linkedin {
    width: 22px;
    height: 22px;
}

/* Selector de idioma */
.gba-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0.5rem;
}

.gba-lang-btn {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(22, 22, 21, 0.45);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 1.5px solid transparent;
}

.gba-lang-btn:hover {
    color: var(--gba-teal);
}

.gba-lang-btn.active {
    color: #444444;
    border-color: #444444;
}

.gba-lang-divider {
    font-size: 0.7rem;
    color: rgba(22, 22, 21, 0.25);
    line-height: 1;
}

/* Hamburger custom */
.gba-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
}

.gba-nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--gba-teal);
    transition: background 0.2s;
}

.gba-navbar.scrolled .gba-nav-toggle span {
    background: var(--gba-white);
}

/* ============================================================
   MENÚ MÓVIL OVERLAY
   ============================================================ */
.gba-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #eeeeee;
    flex-direction: column;
    overflow-y: auto;
}

.gba-mobile-menu.gba-mobile-menu-open {
    display: flex;
}

/* Cabecera del menú */
.gba-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: var(--gba-nav-h);
    flex-shrink: 0;
    background: var(--gba-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gba-mobile-menu-close {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #161615;
    cursor: pointer;
}

/* Links de navegación */
.gba-mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem 1.5rem;
    gap: 0.1rem;
}

.gba-mobile-menu-nav a {
    font-size: 2rem;
    font-weight: 300;
    color: var(--gba-dark);
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.2s;
}

.gba-mobile-menu-nav a:hover {
    color: var(--gba-teal);
}

/* Idioma + LinkedIn */
.gba-mobile-menu-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.gba-mobile-menu-linkedin img {
    width: 28px;
    height: 28px;
}

/* Info de contacto */
.gba-mobile-menu-footer {
    margin-top: auto;
    padding: 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gba-mobile-menu-cities {
    display: flex;
    gap: 0;
}

.gba-mobile-menu-city {
    flex: 1;
}

.gba-mobile-menu-city-sep {
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    padding-left: 1.25rem;
}


/* ============================================================
   HERO
   ============================================================ */
.gba-hero {
    margin-top: var(--gba-nav-h);
    height: calc(100vh - var(--gba-nav-h));
    min-height: 600px;
}

.gba-hero-inner {
    display: flex;
    height: 100%;
}

/* Panel izquierdo */
.gba-hero-content {
    width: 50%;
    background: var(--gba-teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5rem 5rem 6rem;
}

/* Panel derecho: imagen */
.gba-hero-image {
    width: 50%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Eyebrow label */
.gba-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gba-rose);
    margin-bottom: 1.5rem;
}

/* Título hero */
.gba-hero-title {
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gba-white);
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

.gba-hero-title span {
    color: var(--gba-rose);
}

/* Lead */
.gba-hero-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
}

/* Botón con flecha */
.gba-btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gba-white);
    text-decoration: none;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gba-rose);
    width: fit-content;
    transition: gap 0.3s ease, color 0.25s ease;
}

.gba-btn-arrow:hover {
    gap: 1.75rem;
    color: var(--gba-rose);
}

.gba-btn-arrow-icon {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.gba-btn-arrow:hover .gba-btn-arrow-icon {
    filter: brightness(0) saturate(100%) invert(62%) sepia(20%) saturate(500%) hue-rotate(330deg) brightness(90%);
}


/* ============================================================
   SECCIÓN SERVICIOS
   ============================================================ */
.gba-servicios {
    background: var(--gba-white);
    padding: 7rem 0 0;
}

.gba-section-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gba-rose);
    margin-bottom: 0.75rem;
}

.gba-section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--gba-teal);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0;
}

/* Grid sin gutters */
.gba-servicios-grid {
    margin-top: 0;
}

/* Card de servicio */
.gba-servicio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gba-servicio-img {
    width: 100%;
    padding-top: 110%;           /* ratio aprox cuadrado-alto */
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gba-servicio-card:hover .gba-servicio-img {
    transform: scale(1.06);
}

/* Franja inferior con nombre y flecha */
.gba-servicio-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    transition: background 0.3s ease;
}

.gba-servicio-card:hover .gba-servicio-body {
    background: linear-gradient(to top, rgba(0, 77, 104, 0.80) 0%, transparent 100%);
}

.gba-servicio-name {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gba-white);
    margin: 0;
}

.gba-servicio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--gba-rose);
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.gba-servicio-link:hover {
    background: var(--gba-rose);
}

.gba-servicio-link img {
    width: 22px;
    filter: brightness(0) invert(1);
}


/* ============================================================
   CONTACTO CTA
   ============================================================ */
.gba-contacto-cta {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 6rem;
}

.gba-contacto-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 77, 104, 0.92) 0%,
        rgba(0, 77, 104, 0.75) 55%,
        rgba(0, 77, 104, 0.15) 100%
    );
    padding: 8rem 0;
}

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

.gba-contacto-title {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700;
    color: var(--gba-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gba-contacto-lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 2.5rem;
    max-width: 420px;
}

/* Variante clara del botón flecha (sobre fondo oscuro) */
.gba-btn-arrow-light {
    color: var(--gba-white);
    border-bottom-color: var(--gba-rose);
}

.gba-btn-arrow-icon-light {
    filter: brightness(0) invert(1);
}


/* ============================================================
   HOME — HERO
   ============================================================ */
.gba-home-hero {
    position: relative;
    margin-top: var(--gba-nav-h);
    height: calc(100vh - var(--gba-nav-h));
    min-height: 560px;
    overflow: hidden;
    z-index: 1;
}

.gba-home-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.gba-home-hero-num {
    position: absolute;
    top: 4rem;
    right: 5rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.75rem;
    z-index: 1;
    text-decoration: none;
}

.gba-home-hero-n {
    font-family: 'Gordita', var(--gba-font);
    font-size: 5rem;
    font-weight: 300;
    color: var(--gba-white);
    line-height: 1;
}

.gba-home-hero-arr {
    width: 24px;
    filter: brightness(0) invert(1);
}

.gba-home-hero-title {
    position: absolute;
    top: 300px;
    left: 6rem;
    font-size: 3.25rem; /* 52px */
    font-weight: 300;
    color: var(--gba-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    z-index: 1;
}


/* ============================================================
   HOME — ABOUT
   ============================================================ */
.gba-home-about {
    display: flex;
    min-height: 640px;
    position: relative;
    z-index: 2;
}

.gba-home-about-img {
    width: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    margin-top: -190px;
    position: relative;
}

.gba-home-about-overlay {
    position: absolute;
    left: 50%;
    top: 33%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3.3125rem; /* 53px */
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: left;
    width: 85%;
}

.gba-home-about-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    background: var(--gba-white);
}

.gba-home-about-content {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gba-home-about-content p {
    font-size: 1.25rem; /* 20px */
    line-height: 24px;
    color: #161615;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 595px;
}

.gba-home-about-content p:last-child { margin-bottom: 0; }

.gba-home-team-heading {
    font-size: 29px;
    font-weight: 400;
    color: var(--gba-teal);
    margin: 2.5rem 0 0.5rem;
    letter-spacing: 0;
    width: 100%;
    max-width: 595px;
}

.gba-home-team-desc {
    font-size: 18px !important;
    line-height: 22px !important;
    color: var(--gba-teal) !important;
    font-style: normal;
    margin-bottom: 1.5rem !important;
    width: 100%;
    max-width: 595px;
}

.gba-btn-team {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0;
    background: var(--gba-teal);
    color: var(--gba-white);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;    
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    transition: background 0.3s ease, gap 0.35s ease;
    width: fit-content;
}

.gba-btn-team:hover {
    background: #003c52;
    color: var(--gba-white);
    gap: 1rem;
}

.gba-btn-team-icon {
    width: 0;
    flex-shrink: 0;
    opacity: 0;
    filter: brightness(0) invert(1);
    transition: width 0.35s ease, opacity 0.25s ease;
}

.gba-btn-team:hover .gba-btn-team-icon {
    width: 20px;
    opacity: 1;
}

.gba-home-srv-label {
    background: var(--gba-teal);
    color: var(--gba-white);
    padding: 75px 3rem 75px 95px;
    font-size: 2.25rem; /* 36px */
    font-weight: 300;
    letter-spacing: 0.05em;
    align-self: stretch;
}


/* ============================================================
   HOME — SECCIÓN INFERIOR (texto izq + grid+CTA dcha)
   ============================================================ */
.gba-home-bottom {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
}

.gba-home-txt {
    grid-column: 1;
    grid-row: 1;
    background: #EEEEEE;
    padding: 5rem 6rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gba-home-teal-box {
    grid-column: 1;
    grid-row: 2;
    background: var(--gba-teal);
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gba-home-teal-box h3.medium{
    font-weight: 600;
    color: #fff;
    width: 100%;
    max-width: 560px;
}

.gba-home-teal-box p {
    font-size: 18px;
    line-height: 1.65;
    color: #fff;
    margin-bottom: 1.25rem;
    width: 100%;
    max-width: 560px;
}

.gba-home-teal-box p:last-child { margin-bottom: 0; }

.gba-home-teal-box strong { color: #fff; font-weight: 600; }

.gba-home-right-col {
    grid-column: 2;
    grid-row: 1;
}

.gba-home-srv-cta-band {
    grid-column: 2;
    grid-row: 2;
}

.gba-home-txt p {
    font-size: 20px;
    line-height: 24px;
    color: #161615;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 560px;
}

.gba-home-txt p:last-child { margin-bottom: 0; }

.gba-home-txt strong {
    color: var(--gba-dark);
}

.gba-home-right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Grid 4 en línea dentro de la columna derecha */
.gba-home-srv-grid {
    display: flex;
    flex-wrap: nowrap;
    font-size: 0;
    background: #111; /* fondo oscuro por si hay redondeo de subpíxeles */
    flex: 1;          /* ocupa todo el alto disponible en la fila del grid */
}

.gba-home-srv-item {
    width: 25%;
    flex: none;
    position: relative;
    min-height: 380px;
    text-decoration: none;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.gba-home-srv-bg {
    position: absolute;
    inset: 0;
    display: block;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.gba-home-srv-item:hover .gba-home-srv-bg {
    transform: scale(1.1);
}

/* Overlay sutil permanente */
.gba-home-srv-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 1;
    pointer-events: none;
}

.gba-home-srv-name {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gba-white);
    z-index: 2;
}

.gba-home-srv-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.08);
    z-index: 2;
    transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.gba-home-srv-item:hover .gba-home-srv-circle {
    transform: translate(-50%, -50%) scale(1.15);
    border-color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.15);
}

/* Banda CTA blanca bajo el grid */
.gba-home-srv-cta-band {
    background: var(--gba-white);
    padding: 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gba-home-cta-block {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 645px;
    text-decoration: none;
}

.gba-home-cta-quote {
    font-size: 1.8125rem;   /* 29px */
    line-height: 2.1875rem; /* 35px */
    font-weight: 300;
    color: #161615;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.gba-home-cta-block:hover .gba-home-cta-quote {
    color: #004D68;
}

.gba-home-cta-quote strong {
    font-weight: 500;
}

.gba-home-cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.gba-home-cta-block:hover .gba-home-cta-arrow {
    transform: translateX(10px);
}

.gba-home-cta-arrow img {
    width: 24px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.gba-footer {
    background: var(--gba-white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gba-footer-main {
    padding: 3.5rem 0;
}

.gba-logo-footer {
    height: 32px;
    width: auto;
    display: block;
}

/* Links legales */
.gba-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}

.gba-footer-legal a {
    font-size: 0.72rem;
    color: var(--gba-rose);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

.gba-footer-legal a:hover {
    color: var(--gba-teal);
}

.gba-footer-legal-sep {
    font-size: 0.65rem;
    color: var(--gba-rose);
    padding: 0 0.15rem;
    opacity: 0.5;
}

/* Email */
.gba-fc-email .d-flex {
    min-width: 0;
}

.gba-footer-email {
    font-size: 0.875rem;
    color: var(--gba-rose);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    word-break: break-all;
    min-width: 0;
}

.gba-footer-email:hover {
    color: var(--gba-teal);
}

/* Icono */
.gba-footer-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

/* Ciudad */
.gba-footer-city {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gba-rose);
    margin-bottom: 0.5rem;
}

/* Dirección */
.gba-footer-addr {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--gba-rose);
    margin-bottom: 0.5rem;
}

/* Teléfonos */
.gba-footer-tel {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--gba-rose);
    margin: 0;
}

/* Separador entre columnas del footer */
.gba-footer-col-sep {
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    padding-left: 2rem;
}

/* Madrid inner: icono + datos en fila (desktop) */
.gba-footer-madrid-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Footer responsive móvil */
@media (max-width: 991.98px) {

    /* Orden de elementos en móvil */
    .gba-fc-logo     { order: 1; }
    .gba-fc-location { order: 2; width: 100%; }
    .gba-fc-madrid   { order: 3; }
    .gba-fc-sevilla  { order: 3; }
    .gba-fc-email    { order: 4; }
    .gba-fc-legal    { order: 5; }

    /* Separador Sevilla con menos padding en móvil */
    .gba-footer-col-sep {
        padding-left: 1.25rem;
    }

    /* Alineación izquierda */
    .gba-footer .row {
        text-align: left;
    }
}

/* Entre lg y xxl (992px–1399px): 4 columnas iguales, sin separadores */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .gba-footer-col-sep {
        border-left: none;
        padding-left: 0;
    }
}

/* xxl (≥1400px): Logo ocupa mitad, separadores en Email y Madrid */
@media (min-width: 1400px) {
    .gba-fc-email,
    .gba-fc-madrid {
        border-left: 1px solid rgba(0, 0, 0, 0.10);
        padding-left: 2rem;
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {

    /* Hero apilado en móvil */
    .gba-hero {
        height: auto;
        min-height: unset;
    }

    .gba-hero-inner {
        flex-direction: column;
    }

    .gba-hero-content {
        width: 100%;
        padding: 4rem 2rem;
    }

    .gba-hero-image {
        width: 100%;
        height: 50vw;
        min-height: 280px;
    }

    /* Servicios: 2 columnas en tablet */
    .gba-servicio-img {
        padding-top: 80%;
    }

    .gba-contacto-overlay {
        padding: 5rem 0;
    }

    /* Home hero — solo vídeo, sin padding */
    .gba-home-hero {
        height: 56vw;
        min-height: 200px;
        padding: 0;
    }

    .gba-home-hero-n { font-size: 3rem; }

    /* Home about — imagen pequeña solapando vídeo */
    .gba-home-about {
        flex-direction: column;
    }

    .gba-home-about-img {
        width: 200px;
        min-height: unset;
        aspect-ratio: 394 / 270;
        margin-top: -30px;
        margin-left: 0;
        flex-shrink: 0;
        background-position: center top;
    }

    /* Título hero visible sobre el vídeo en móvil */
    .gba-home-hero-title {
        font-size: 1.4375rem; /* 23px */
        top: auto;
        left: 20px;
        right: 20px;
        bottom: 5.5rem;
    }

    /* Título móvil (debajo de la imagen) */
    .gba-home-mobile-title {
        font-size: 1.4375rem; /* 23px */
        font-weight: 300;
        color: var(--gba-teal);
        line-height: 1.2;
        letter-spacing: -0.02em;
        padding: 1.5rem 20px 0;
        margin: 0;
    }

    .gba-home-team-heading {
        font-size: 20px;        
    }

    .gba-home-about-right {
        width: 100%;
    }

    .gba-home-about-content {
        padding: 1.5rem 20px 2rem;
    }

    .gba-home-about-content p {
        font-size: 0.875rem; /* 14px */
    }

    .gba-home-team-desc {
        font-size: 0.875rem !important; /* 14px */
        line-height: 1.5 !important;
    }

    .gba-home-srv-label {
        align-self: stretch;
        text-align: left;
        padding: 2rem 20px;
        font-size: 1.25rem; /* 20px */
    }

    /* Home sección inferior — grid → txt → teal → CTA */
    .gba-home-bottom {
        display: flex;
        flex-direction: column;
    }

    .gba-home-right-col {
        order: 1;
        width: 100%;
    }

    .gba-home-txt {
        order: 2;
        width: 100%;
        padding: 3.5rem 20px;
    }

    .gba-home-txt p {
        font-size: 0.875rem; /* 14px */
    }

    .gba-home-teal-box {
        order: 3;
        padding: 3.5rem 20px;
    }

    .gba-home-teal-box p {
        font-size: 0.875rem;
    }

    .gba-home-srv-cta-band {
        order: 4;
        padding: 2.5rem 20px;
    }

    .gba-home-cta-quote {
        font-size: 0.875rem; /* 14px */
        line-height: 1.5;
    }

    /* Títulos de la parrilla a 14px en móvil */
    .gba-home-srv-name {
        font-size: 0.875rem; /* 14px */
    }

    /* Círculo: 40×40, debajo del título */
    .gba-home-srv-circle {
        width: 40px;
        height: 40px;
        top: 3.5rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .gba-home-srv-item:hover .gba-home-srv-circle {
        transform: translateX(-50%) scale(1.15);
    }

    /* Grid en 2×2 en móvil */
    .gba-home-srv-grid {
        flex-wrap: wrap;
    }

    .gba-home-srv-item {
        flex: none;
        width: 50%;
        min-height: unset;
        aspect-ratio: 788 / 400;
    }

    /* Legal (1º) y Consultoría (3º) — texto negro */
    .gba-home-srv-item:nth-child(1) .gba-home-srv-name,
    .gba-home-srv-item:nth-child(3) .gba-home-srv-name {
        color: #161615;
    }
}

@media (max-width: 575.98px) {

    .gba-hero-content {
        padding: 3rem 1.5rem;
    }

    /* Servicios: 1 columna en móvil pequeño */
    .gba-servicio-img {
        padding-top: 65%;
    }

}


/* ============================================================
   PÁGINA INTERIOR — HERO
   ============================================================ */
.gba-page-hero {
    margin-top: var(--gba-nav-h);
    height: 42vh;
    min-height: 320px;
    display: flex;
    overflow: hidden;
}

.gba-page-hero-content {
    width: 45%;
    background: var(--gba-teal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3.5rem 4rem 3.5rem 6rem;
}

.gba-page-hero-image {
    width: 55%;
    background-size: cover;
    background-position: center top;
}

.gba-page-hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--gba-white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0;
}


/* ============================================================
   PÁGINA SERVICIOS — INTRO
   ============================================================ */
.gba-srv-intro {
    display: flex;
    min-height: 420px;
    margin-top: var(--gba-nav-h);
    background: #eeeeee;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.gba-srv-intro-left {
    width: 50%;
    padding: 5rem 4rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gba-srv-intro-left .gba-section-eyebrow {
    font-size: 1.625rem; /* 26px */
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gba-teal);
}

.gba-srv-intro-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 300;
    color: var(--gba-teal);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 120px 0 0;
}

.gba-srv-intro-right {
    width: 50%;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.gba-srv-intro-num {
    position: absolute;
    top: 3rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.75rem;
    z-index: 1;
    text-decoration: none;
}

.gba-srv-intro-num .gba-srv-num-n {
    font-family: 'Gordita', var(--gba-font);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(22,22,21,0.18);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.gba-srv-intro-num .gba-srv-num-arr {
    width: 24px;
    opacity: 0.35;
}

.gba-srv-intro-right p {
    font-size: 1.25rem; /* 20px */
    line-height: 1.8;
    color: rgba(22, 22, 21, 0.65);
    margin-bottom: 1rem;
    max-width: 477px;
}

.gba-srv-intro-right p:last-child { margin-bottom: 0; }


/* ============================================================
   PÁGINA SERVICIOS — FILAS (imagen + texto)
   ============================================================ */
.gba-srv-row {
    background: var(--gba-white);
}

.gba-srv-row-teal {
    background: var(--gba-teal);
}

.gba-srv-row-reverse {
    flex-direction: row-reverse;
}

/* Panel imagen */
.gba-srv-img-panel {
    width: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gba-srv-row-inner {
    display: flex;
    min-height: 520px;
    overflow: hidden;
}

/* Legal: imagen sangra hacia arriba solapando el intro */
#legal {
    position: relative;
    z-index: 2;
}

#legal .gba-srv-row-inner {
    overflow: visible;
}

#legal .gba-srv-img-panel {
    margin-top: -200px;
}

.gba-srv-img-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.gba-srv-tagline {
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    font-weight: 300;
    color: var(--gba-white);
    width: 100%;
    max-width: 650px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: left;
}

.gba-srv-tagline--teal {
    color: var(--gba-teal);
}

/* Panel texto */
.gba-srv-text-panel {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

.gba-srv-heading {
    font-size: 1.875rem; /* 30px */
    font-weight: 500;
    letter-spacing: 3px;
    width: 100%;
    max-width: 650px;
    text-transform: uppercase;
    color: var(--gba-teal);
    margin-bottom: 1.5rem;
}

.gba-srv-row-teal .gba-srv-heading {
    color: var(--gba-white);
}

.gba-srv-text-panel p {
    font-size: 1.25rem;
    line-height: 27px;
    color: #161615;
    margin-bottom: 1.1rem;
    width: 100%;
    max-width: 650px;
}

.gba-srv-row-teal .gba-srv-text-panel p {
    color: rgba(255, 255, 255, 0.70);
}

.gba-srv-text-panel p:last-child { margin-bottom: 0; }

.gba-srv-closing {
    font-style: normal;
}


/* ============================================================
   PÁGINA SERVICIOS — FISCAL + CTA (imagen compartida)
   ============================================================ */
.gba-fiscal-cta-wrap {
    display: flex;
}

.gba-fiscal-cta-left {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.gba-fiscal-text-panel {
    flex: 1;
    background: var(--gba-teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

.gba-fiscal-text-panel .gba-srv-heading {
    color: var(--gba-white);
}

.gba-fiscal-text-panel p {
    font-size: 1.25rem;
    line-height: 27px;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 1.1rem;
    width: 100%;
    max-width: 650px;
}

.gba-fiscal-text-panel p:last-child { margin-bottom: 0; }

.gba-fiscal-img-panel {
    width: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Centrar el tagline respecto al panel Fiscal (parte superior),
   compensando la altura del panel CTA inferior */
.gba-fiscal-img-panel .gba-srv-img-overlay {
    padding-bottom: 30%;
}


/* ============================================================
   PÁGINA SERVICIOS — CTA CONTACTO
   ============================================================ */
.gba-srv-cta-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 5rem 5rem 6rem;
}

.gba-srv-cta-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.gba-srv-cta-lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: var(--gba-dark);
    margin-bottom: 2.5rem;
    max-width: 420px;
    transition: color 0.3s ease;
}

.gba-srv-cta-block:hover .gba-srv-cta-lead {
    color: #A7897F;
}

.gba-srv-cta-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.gba-srv-cta-block:hover .gba-srv-cta-arrow {
    transform: translateX(10px);
}

.gba-srv-cta-arrow img {
    width: 24px;
}

.gba-srv-cta-img {
    width: 50%;
    background-size: cover;
    background-position: center;
}


/* ============================================================
   RESPONSIVE — páginas interiores
   ============================================================ */
@media (max-width: 991.98px) {

    .gba-page-hero {
        flex-direction: column;
        height: auto;
    }

    .gba-page-hero-content {
        width: 100%;
        padding: 3rem 2rem 2.5rem;
    }

    .gba-page-hero-image {
        width: 100%;
        height: 30vw;
        min-height: 200px;
    }

    /* Servicios intro */
    .gba-srv-intro {
        flex-direction: column;
    }

    .gba-srv-intro-left,
    .gba-srv-intro-right {
        width: 100%;
        padding: 3rem 20px;
    }

    .gba-srv-intro-title {
        margin-top: 1rem;
    }

    .gba-srv-intro-num { display: none; }

    /* Servicios filas — imagen siempre arriba */
    .gba-srv-row-inner,
    .gba-srv-row-reverse {
        flex-direction: column !important;
    }

    /* Auditoría: texto antes que imagen en DOM → invertir */
    #auditoria .gba-srv-row-inner {
        flex-direction: column-reverse !important;
    }

    .gba-srv-img-panel,
    .gba-srv-text-panel {
        width: 100%;
    }

    .gba-srv-img-panel {
        min-height: 55vw;
    }

    #legal .gba-srv-img-panel {
        margin-top: 0;
    }

    .gba-srv-img-overlay {
        justify-content: flex-start;
        padding-left: 48px;
        padding-right: 48px;
    }

    .gba-srv-text-panel {
        padding: 3.5rem 20px;
    }

    /* CTA */
    .gba-srv-cta-text {
        width: 100%;
        padding: 3.5rem 20px;
    }

    /* Fiscal + CTA combinados — imagen arriba */
    .gba-fiscal-cta-wrap {
        flex-direction: column-reverse;
    }

    .gba-fiscal-cta-left {
        width: 100%;
    }

    .gba-fiscal-img-panel {
        width: 100%;
        min-height: 55vw;
    }

    /* Fiscal: resetear offset del tagline (ya no hay CTA al lado) */
    .gba-fiscal-img-panel .gba-srv-img-overlay {
        padding-bottom: 3rem;
    }

    /* Fiscal: texto con mismos paddings y tamaño que el resto */
    .gba-fiscal-text-panel {
        padding: 3.5rem 20px;
    }

    .gba-fiscal-text-panel p {
        font-size: 0.875rem; /* 14px */
    }
}

@media (max-width: 575.98px) {
    .gba-page-hero-content {
        padding: 2.5rem 1.5rem 2rem;
    }

    .gba-srv-text-panel,
    .gba-srv-cta-text {
        padding: 2.5rem 20px;
    }

    .gba-srv-text-panel p,
    .gba-srv-cta-lead {
        font-size: 0.875rem; /* 14px */
    }
}


/* ============================================================
   PÁGINA PROFESIONALES
   ============================================================ */

/* Intro */
.gba-pro-intro {
    display: flex;
    min-height: 420px;
    margin-top: var(--gba-nav-h);
    background: #eeeeee;
    position: relative;
    overflow: visible;
}

/* Número 03 — mismo patrón que home hero num */
.gba-pro-num {
    position: absolute;
    top: 3rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 1;
    text-decoration: none;
}

.gba-pro-num-n {
    font-family: 'Gordita', var(--gba-font);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(22,22,21,0.15);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.gba-pro-num-arr {
    width: 24px;
    opacity: 0.25;
}

/* Split intro */
.gba-pro-intro-left {
    width: 45%;
    flex-shrink: 0;
    padding: 5rem 4rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gba-pro-intro-left .gba-section-eyebrow {
    font-size: 1.625rem; /* 26px — igual que servicios */
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gba-teal);
}

.gba-pro-intro-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 300;
    color: var(--gba-teal);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 120px 0 0;
}

.gba-pro-intro-right {
    width: 55%;
    padding: 5rem 8rem 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gba-pro-intro-right p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(22,22,21,0.6);
    margin-bottom: 1.25rem;
    max-width: 480px;
}

.gba-pro-intro-right p:last-child { margin-bottom: 0; }

/* Wrapper con fondo extendido hasta la mitad de la 1ª fila */
.gba-pro-section-wrap {
    position: relative;
    background: var(--gba-white);
}

.gba-pro-section-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* filtro (~56px) + padding top grid (4rem) + mitad foto (260×4/3÷2 ≈ 173px) */
    height: calc(56px + 4rem + 173px);
    background: #eeeeee;
    pointer-events: none;
}

/* Barra de filtro */
.gba-pro-filter-bar {
    background: transparent;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

.gba-pro-filter-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 1160px; /* 4 × 260px + 3 × 40px — mismo ancho que el grid */
    margin: 0 auto;
}

.gba-pro-filter-label {
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #40798E;
    white-space: nowrap;
    flex-shrink: 0;
}

.gba-pro-filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gba-pro-chip {
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #40798E;
    background: transparent;
    border: 1px solid #40798E;
    border-radius: 18px;
    padding: 0.3rem 0.85rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

.gba-pro-chip:hover,
.gba-pro-chip.gba-chip-active {
    background: var(--gba-white);
    border-color: transparent;
}

.gba-pro-filter-clear {
    margin-left: auto;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(22,22,21,0.45);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.gba-pro-filter-clear:hover { color: var(--gba-dark); }

/* Grid de profesionales */
.gba-pro-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 260px));
    gap: 40px;
    padding: 4rem 0;
    background: transparent;
    width: 100%;
    max-width: calc(5 * 260px + 4 * 40px); /* 1460px */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

/* Cuando las 5 columnas se comprimen a 200px, cambia a 4 */
@media (max-width: 1360px) and (min-width: 992px) {
    .gba-pro-grid {
        grid-template-columns: repeat(4, minmax(200px, 260px));
        max-width: calc(4 * 260px + 3 * 40px); /* 1160px */
    }
}

.gba-pro-card {
    width: 100%;
    background: var(--gba-white);
    display: flex;
    flex-direction: column;
}

.gba-pro-card-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.gba-pro-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.4s ease;
}

.gba-pro-card:hover .gba-pro-card-photo img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.gba-pro-card-info {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(22,22,21,0.08);
}

.gba-pro-card-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gba-dark);
    margin: 0 0 0.2rem;
    letter-spacing: 0;
}

.gba-pro-card-area {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #101820;
    margin: 0;
}

/* CTA inferior */
.gba-pro-cta {
    background: var(--gba-white);
    padding: 5rem 0;
}

.gba-pro-cta-inner {
    max-width: calc(5 * 260px + 4 * 40px); /* 1460px — alineado con el grid */
    margin: 0 auto;
}

.gba-pro-cta-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    max-width: 650px;
}

.gba-pro-cta-text {
    font-size: 1.8125rem;
    line-height: 2.1875rem;
    font-weight: 300;
    color: #161615;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.gba-pro-cta-block:hover .gba-pro-cta-text { color: #004D68; }

.gba-pro-cta-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.gba-pro-cta-block:hover .gba-pro-cta-arrow { transform: translateX(10px); }

.gba-pro-cta-arrow img { width: 24px; }

/* ============================================================
   PROFESIONALES — RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {

    /* Ocultar números en todas las páginas */
    .gba-home-hero-num { display: none; }
    .gba-pro-num       { display: none; }
    .gba-ct-num-block  { display: none; }

    /* Intro apilado */
    .gba-pro-intro {
        flex-direction: column;
    }

    .gba-pro-intro-left,
    .gba-pro-intro-right {
        width: 100%;
    }

    .gba-pro-intro-left {
        padding: 3rem 2rem 1.5rem;
    }

    .gba-pro-intro-right {
        padding: 1rem 2rem 3rem;
    }

    .gba-pro-intro-title {
        margin-top: 1rem;
    }

    /* Filter bar full width */
    .gba-pro-filter-inner {
        width: 100%;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    /* Grid 2 columnas */
    .gba-pro-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 3rem 2rem;
        gap: 24px;
        box-sizing: border-box;
    }

    .gba-pro-card {
        width: 100%;
    }

    /* Background pseudo-element ajustado para 2 columnas */
    .gba-pro-section-wrap::before {
        height: calc(56px + 3rem + 150px);
    }

    /* CTA inferior */
    .gba-pro-cta {
        padding: 2.5rem 0;
    }

    .gba-pro-cta-inner {
        padding: 0 20px;
    }

    .gba-pro-cta-text {
        font-size: 0.875rem; /* 14px */
        line-height: 1.5;
    }
}

@media (max-width: 575.98px) {

    .gba-pro-intro-left {
        padding: 2.5rem 1.5rem 1rem;
    }

    .gba-pro-intro-right {
        padding: 0.5rem 1.5rem 2.5rem;
    }

    /* Eyebrow */
    .gba-pro-intro-left .gba-section-eyebrow {
        font-size: 0.875rem; /* 14px */
    }

    /* Título */
    .gba-pro-intro-title {
        font-size: 1.4375rem; /* 23px */
        line-height: 1.3;
        margin-top: 0.5rem;
    }

    /* Body text intro */
    .gba-pro-intro-right p {
        font-size: 0.875rem; /* 14px */
        line-height: 1.7;
    }

    /* Filter */
    .gba-pro-filter-inner {
        padding: 0 1.5rem;
        gap: 0.75rem;
    }

    .gba-pro-filter-label,
    .gba-pro-chip {
        font-size: 0.875rem; /* 14px */
    }

    /* Grid */
    .gba-pro-grid {
        padding: 2rem 1.5rem;
        gap: 16px;
    }

}

/* ============================================================
   MODAL FICHA PROFESIONAL
   ============================================================ */
.gba-pro-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(22, 22, 21, 0.55);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gba-pro-modal-overlay.gba-modal-open {
    display: flex;
}

.gba-pro-modal {
    display: flex;
    width: 100%;
    max-width: 960px;
    max-height: 88vh;
    background: var(--gba-white);
    overflow: hidden;
    position: relative;
}

/* Foto */
.gba-pro-modal-photo {
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
}

.gba-pro-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.gba-pro-modal-nophoto {
    width: 100%;
    height: 100%;
    background: #eeeeee;
}

/* Panel info */
.gba-pro-modal-info {
    flex: 1;
    padding: 3rem 3.5rem 3rem 3rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Botón cerrar */
.gba-pro-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #161615;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s;
    line-height: 1;
    padding: 0;
}

.gba-pro-modal-close:hover { opacity: 1; }

/* Nombre */
.gba-pro-modal-name {
    font-size: 1rem; /* 16px */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #101820;
    margin: 0 0 0.3rem;
    padding-right: 2rem;
    line-height: 1.2;
}

/* Departamento */
.gba-pro-modal-dept {
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #101820;
    font-weight: 400;
    margin: 0 0 2rem;
}

/* Secciones */
.gba-pro-modal-section {
    margin-bottom: 1.5rem;
}

.gba-pro-modal-sl {
    font-size: 1.25rem; /* 20px */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gba-teal);
    font-weight: 500;
    margin: 0 0 0.35rem;
}

.gba-pro-modal-st {
    font-size: 0.875rem;
    line-height: 18px;
    color: #161615;
    font-weight: 300;
    margin: 0;
}

/* Email pill */
.gba-pro-modal-email-wrap {
    margin-top: auto;
    padding-top: 2rem;
}

.gba-pro-modal-email-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid #40798E;
    border-radius: 20px;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    color: #40798E;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.gba-pro-modal-email-pill:hover {
    border-color: var(--gba-teal);
    color: var(--gba-teal);
}

.gba-pro-modal-email-pill img {
    width: 15px;
    opacity: 0.5;
}

body.gba-no-scroll { overflow: hidden; }

/* Modal — responsive */
@media (max-width: 767.98px) {

    .gba-pro-modal-overlay {
        padding: 1.5rem;
        align-items: center;
    }

    .gba-pro-modal {
        flex-direction: column;
        max-width: 100%;
        max-height: 92vh;
        width: 100%;
        overflow-y: auto;
    }

    /* Foto completa en vertical, 260px de ancho, centrada */
    .gba-pro-modal-photo {
        width: 260px;
        height: auto;
        aspect-ratio: 3 / 4;
        flex-shrink: 0;
        align-self: flex-start;
        margin: 1.5rem 0 0 1.5rem;
        overflow: hidden;
    }

    .gba-pro-modal-photo img {
        object-fit: cover;
        object-position: top center;
    }

    /* Botón cerrar: esquina superior derecha del modal */
    .gba-pro-modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: #161615;
        opacity: 0.45;
        font-size: 1.1rem;
        z-index: 1;
    }

    .gba-pro-modal-close:hover { opacity: 1; }

    /* Panel info debajo */
    .gba-pro-modal-info {
        padding: 1.5rem 1.5rem 2rem;
        overflow-y: unset;
        flex: unset;
    }

    .gba-pro-modal-name {
        padding-right: 0;
        font-size: 0.875rem; /* 14px */
    }

    .gba-pro-modal-dept {
        font-size: 0.875rem; /* 14px */
    }

    .gba-pro-modal-sl {
        font-size: 1.125rem; /* 18px */
    }

    .gba-pro-modal-email-wrap {
        margin-top: 1.5rem;
        padding-top: 0;
    }
}

/* ============================================================
   PÁGINA CONTACTO
   ============================================================ */

/* Layout principal */
.gba-ct-wrap {
    display: flex;
    align-items: flex-start;
    margin-top: var(--gba-nav-h);
}

.gba-ct-left {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* Sección blanca (formulario) */
.gba-ct-form-area {
    background: #eeeeee;
    padding: 5rem 5rem 4rem;
    flex: 1;
    position: relative;
}

/* Número + flecha (esquina derecha, absoluto) */
.gba-ct-right-spacer {
    background: #eeeeee;
    flex: 0 0 calc(5rem + 26px + 40px + 240px + 60px - 30px);
    position: relative;
}

.gba-ct-num-block {
    position: absolute;
    top: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.75rem;
    text-decoration: none;
}

.gba-ct-num {
    font-family: 'Gordita', var(--gba-font);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.gba-ct-num-arrow {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
}

.gba-ct-eyebrow {
    font-size: 1.625rem; /* 26px */
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--gba-teal);
    margin: 0;
}

.gba-ct-title-gap {
    height: 40px;
}

.gba-ct-title {
    font-size: 3.25rem; /* 52px */
    font-weight: 300;
    color: var(--gba-teal);
    line-height: 1.15;
    margin: 0;
}

.gba-ct-form-gap {
    height: 120px;
}

/* Formulario */
#gba-contact-form-wrap {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.gba-ct-field {
    margin-bottom: 0.5rem;
}

.gba-form-control {
    font-family: var(--gba-font);
    font-size: 0.9rem;
    color: var(--gba-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0;
    padding: 0.75rem 0;
    outline: none;
    width: 100%;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.gba-form-control::placeholder {
    color: rgba(22, 22, 21, 0.40);
}

.gba-form-control:focus {
    border-bottom-color: var(--gba-teal);
}

textarea.gba-form-control {
    resize: none;
    padding-top: 0.75rem;
}

.gba-ct-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin: 1.75rem 0 1.25rem;
}

/* Checkbox */
.gba-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.gba-ct-check {
    margin-bottom: 2rem;
}

.gba-form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    min-width: 15px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    background: transparent;
    cursor: pointer;
    margin-top: 2px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gba-form-checkbox:checked {
    background: var(--gba-teal);
    border-color: var(--gba-teal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.gba-form-check-label {
    font-size: 0.8rem;
    color: rgba(22, 22, 21, 0.55);
    line-height: 1.5;
}

.gba-form-check-label a {
    color: var(--gba-teal);
    text-decoration: none;
}

.gba-form-check-label a:hover {
    text-decoration: underline;
}

/* Botón Enviar */
.gba-btn-enviar {
    display: inline-block;
    background: var(--gba-teal);
    color: var(--gba-white);
    font-family: var(--gba-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.gba-btn-enviar:hover {
    background: #003a50;
}

/* Sección teal (info contacto) */
.gba-ct-info-area {
    background: var(--gba-teal);
    padding: 7.5rem 5rem; /* ~120px arriba y abajo */
}

.gba-ct-icon {
    width: 36px;
    height: 36px;
    display: block;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) opacity(0.6);
}

.gba-ct-icon-mail {
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.gba-ct-cities {
    display: flex;
    gap: 3rem;
}

.gba-ct-city {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gba-ct-city-name {
    font-size: 2.25rem; /* 36px */
    font-weight: 300;
    color: var(--gba-white);
    margin-bottom: 0.5rem;
}

.gba-ct-city p {
    font-size: 0.825rem;
    color: var(--gba-white);
    line-height: 1.6;
    margin-bottom: 0.35rem;
}

.gba-ct-city p a {
    color: var(--gba-white);
    text-decoration: none;
}

.gba-ct-city p a:hover {
    text-decoration: underline;
}

.gba-ct-city .gba-btn-map {
    margin-top: auto;
    align-self: flex-start;
}

.gba-ct-email {
    font-size: 0.9rem;
    color: var(--gba-white);
    margin: 0;
}

.gba-ct-email a {
    color: var(--gba-white);
    text-decoration: none;
}

.gba-ct-email a:hover {
    text-decoration: underline;
}

/* Botón Ver Google map */
.gba-btn-map {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: rgba(255, 255, 255, 0.80);
    font-family: var(--gba-font);
    font-size: 0.75rem;
    text-decoration: none;
    border-radius: 50px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.gba-btn-map:hover {
    border-color: var(--gba-white);
    color: var(--gba-white);
}

/* Columna derecha: imágenes */
.gba-ct-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    background: #eeeeee;
}


.gba-ct-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
    .gba-ct-wrap {
        flex-direction: column;
    }

    .gba-ct-left,
    .gba-ct-right {
        width: 100%;
    }

    .gba-ct-form-area {
        padding: 2rem 20px 3rem;
    }

    .gba-ct-info-area {
        padding: 3rem 20px;
    }

    .gba-ct-right {
        min-height: unset;
    }

    .gba-ct-right-spacer {
        display: none;
    }
}

@media (max-width: 575.98px) {
    /* Eyebrow de página (todas las páginas) */
    .gba-ct-eyebrow,
    .gba-srv-intro-left .gba-section-eyebrow {
        font-size: 0.875rem; /* 14px */
    }

    /* Título principal (todas las páginas) */
    .gba-ct-title,
    .gba-srv-intro-title {
        font-size: 1.4375rem; /* 23px */
        line-height: 1.3;
    }

    /* Gap entre eyebrow y título */
    .gba-ct-title-gap {
        height: 8px;
    }

    .gba-srv-intro-left {
        padding: 2.5rem 20px 1rem;
    }

    .gba-srv-intro-right {
        padding: 0.5rem 20px 2.5rem;
    }

    .gba-srv-intro-right p {
        font-size: 0.875rem; /* 14px */
    }

    .gba-srv-intro-left .gba-section-eyebrow {
        margin-bottom: 8px;
    }

    .gba-srv-intro-title {
        margin-top: 0.5rem;
    }

    .gba-ct-city-name {
        font-size: 1.375rem; /* 22px */
    }
}


/* ============================================================
   PÁGINAS LEGALES (privacidad, cookies, aviso)
   ============================================================ */

.gba-legal-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: calc(var(--gba-nav-h) + 4rem) 2rem 5rem;
}

.gba-legal-wrap h1 {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--gba-teal);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.gba-legal-wrap h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gba-teal);
    margin: 2rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gba-legal-wrap p,
.gba-legal-wrap li {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--gba-dark);
    margin-bottom: 0.75rem;
}

.gba-legal-wrap ul,
.gba-legal-wrap ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.gba-legal-info {
    background: var(--gba-light);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    line-height: 1.75;
}

.gba-legal-info strong {
    color: var(--gba-teal);
}

.gba-legal-sep {
    border: none;
    border-top: 1px solid #ddd;
    margin: 3rem 0;
}

@media (max-width: 991.98px) {
    .gba-legal-wrap {
        padding: calc(var(--gba-nav-h) + 2rem) 20px 3rem;
    }
    .gba-legal-wrap h1 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   SCROLL NAVBAR JS helper
   ============================================================ */
/* Se activa via JS añadiendo la clase .scrolled */
