/* GestionHub — Marketing & landing pages (enterprise) */

:root {
    --gh-navy: #0e2c40;
    --gh-navy-light: #1a3d54;
    --gh-pink: #b94e8f;
    --gh-pink-dark: #9a3d76;
    --gh-gray-900: #1e2933;
    --gh-gray-700: #4a5568;
    --gh-gray-500: #646464;
    --gh-gray-200: #e8ecf0;
    --gh-gray-100: #f4f6f8;
    --gh-white: #ffffff;
    --gh-radius: 6px;
    --gh-shadow: 0 1px 3px rgba(14, 44, 64, 0.08), 0 8px 24px rgba(14, 44, 64, 0.06);
    --gh-max: 118rem;
}

/* ——— Navigation ——— */

.gh-nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.gh-nav-wrap.is-scrolled {
    background-color: rgba(14, 44, 64, 0.96);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.gh-nav-wrap.gh-nav-solid {
    background-color: rgba(14, 44, 64, 0.96);
}

.gh-nav {
    max-width: var(--gh-max);
    margin: 0 auto;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gh-nav-logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gh-white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.gh-nav-logo span {
    color: var(--gh-pink);
}

.gh-nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--gh-white);
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.4rem;
}

@media (min-width: 992px) {
    .gh-nav-toggle {
        display: none;
    }
}

.gh-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gh-navy);
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gh-nav-menu.is-open {
    display: block;
}

@media (min-width: 992px) {
    .gh-nav-menu {
        display: flex;
        position: static;
        align-items: center;
        gap: 0.2rem;
        background: transparent;
        padding: 0;
        border: none;
    }
}

.gh-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.55rem;
    padding: 1rem 2rem;
    transition: color 0.2s;
}

.gh-nav-link:hover {
    color: var(--gh-white);
}

@media (min-width: 992px) {
    .gh-nav-link {
        padding: 0.6rem 1.2rem;
        font-size: 1.45rem;
    }
}

.gh-nav-link.is-active {
    color: var(--gh-pink);
}

.gh-nav-dropdown {
    position: relative;
}

.gh-nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1.55rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: left;
}

@media (min-width: 992px) {
    .gh-nav-dropdown-toggle {
        width: auto;
        padding: 1.4rem 1.2rem;
        font-size: 1.45rem;
    }
}

.gh-nav-dropdown-menu {
    display: none;
    background: var(--gh-navy-light);
    padding: 0.8rem 0;
}

.gh-nav-dropdown.is-open .gh-nav-dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .gh-nav-dropdown {
        position: static;
    }

    .gh-nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: min(112rem, calc(100vw - 3.2rem));
        min-width: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        background: transparent;
        border: none;
    }

    /* Puente de hover: el menú se ancla al nav (static) y hay padding debajo del botón. */
    .gh-nav-dropdown-menu::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 100%;
        height: 2.8rem;
    }

    .gh-nav-dropdown.is-open .gh-nav-dropdown-menu,
    .gh-nav-dropdown:hover .gh-nav-dropdown-menu,
    .gh-nav-dropdown:focus-within .gh-nav-dropdown-menu {
        display: block;
    }
}

.gh-nav-dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.7rem 1.6rem;
    transition: background 0.15s;
}

.gh-nav-dropdown-menu a:hover:not(.gh-btn) {
    background: rgba(185, 78, 143, 0.15);
    color: var(--gh-white);
}

@media (min-width: 992px) {
    .gh-nav-dropdown--mega .gh-nav-dropdown-menu a:hover:not(.gh-btn) {
        background: #f7f0f4;
        color: inherit;
    }
}

.gh-nav-dropdown-menu a small {
    display: block;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
}

.gh-mega {
    display: grid;
    gap: 2rem;
    padding: 1.2rem 1.6rem 1.6rem;
}

@media (min-width: 992px) {
    .gh-mega {
        grid-template-columns: 1.1fr 1.1fr 1.1fr 0.9fr;
        gap: 0;
        padding: 2.4rem 2.2rem 2.2rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid rgba(14, 44, 64, 0.08);
        box-shadow: 0 24px 60px rgba(8, 22, 34, 0.28);
    }
}

.gh-mega-label {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 992px) {
    .gh-mega-label {
        color: #8a9aaa;
        padding: 0 0.8rem;
    }
}

.gh-mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

@media (min-width: 992px) {
    .gh-mega-col {
        padding-right: 1.4rem;
        margin-right: 1.4rem;
        border-right: 1px solid #eef1f4;
    }
}

.gh-mega-col a {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0.8rem;
    border-radius: 10px;
    color: inherit;
}

.gh-mega-ico {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 10px;
    background: rgba(185, 78, 143, 0.18);
    color: #e8a0c8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.gh-mega-txt strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.gh-mega-txt small {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

@media (min-width: 992px) {
    .gh-mega-col a:hover {
        background: #f7f0f4;
        color: inherit;
    }

    .gh-mega-ico {
        background: #f6eaf1;
        color: #b94e8f;
    }

    .gh-mega-txt strong {
        color: #0e2c40;
    }

    .gh-mega-txt small {
        color: #5b6b7a;
    }
}

.gh-mega-aside {
    background: linear-gradient(160deg, #0e2c40 0%, #1a3d54 100%);
    border-radius: 12px;
    padding: 1.8rem 1.8rem 1.6rem;
    color: #fff;
}

.gh-mega-aside-kicker {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #e8a0c8;
}

.gh-mega-aside-title {
    margin: 0 0 0.6rem;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.25;
}

.gh-mega-aside-text {
    margin: 0 0 1.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.gh-mega-aside .gh-btn {
    width: 100%;
    margin-bottom: 0.8rem;
}

.gh-mega-aside .gh-btn-primary,
.gh-mega-aside .gh-btn-primary:hover,
.gh-mega-aside .gh-btn-primary:focus {
    background: var(--gh-pink);
    color: #fff;
}

.gh-mega-aside .gh-btn-primary:hover,
.gh-mega-aside .gh-btn-primary:focus {
    background: var(--gh-pink-dark);
    color: #fff;
}

.gh-mega-aside-link {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.3rem !important;
    font-weight: 600;
    padding: 0.4rem 0 !important;
    background: none !important;
}

.gh-mega-aside-link:hover {
    color: #fff !important;
}

.gh-nav-cta {
    margin: 0.8rem 2rem 0;
}

@media (min-width: 992px) {
    .gh-nav-cta {
        margin: 0 0 0 0.8rem;
    }
}

.gh-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    border-radius: var(--gh-radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
}

.gh-btn:hover {
    transform: translateY(-1px);
}

.gh-btn-primary {
    background: var(--gh-pink);
    color: var(--gh-white);
}

.gh-btn-primary:hover {
    background: var(--gh-pink-dark);
    color: var(--gh-white);
}

.gh-btn-secondary {
    background: var(--gh-navy);
    color: var(--gh-white);
}

.gh-btn-outline {
    background: transparent;
    color: var(--gh-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.gh-btn-outline:hover {
    border-color: var(--gh-white);
    color: var(--gh-white);
}

.gh-btn-outline-dark {
    background: transparent;
    color: var(--gh-navy);
    border: 1.5px solid var(--gh-gray-200);
}

.gh-btn-outline-dark:hover {
    border-color: var(--gh-pink);
    color: var(--gh-pink);
}

/* ——— Hero (home video) ——— */

.gh-hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gh-hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(14, 44, 64, 0.55) 0%,
        rgba(14, 44, 64, 0.72) 50%,
        rgba(14, 44, 64, 0.88) 100%
    );
    z-index: 1;
}

.gh-hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.gh-hero-body {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 6rem;
    color: var(--gh-white);
}

.gh-hero-body h1 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 72rem;
    margin: 0 auto 1.2rem;
}

@media (min-width: 768px) {
    .gh-hero-body h1 {
        font-size: 5rem;
    }
}

.gh-hero-body .gh-hero-lead {
    font-size: 1.75rem;
    line-height: 1.55;
    max-width: 58rem;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
}

@media (min-width: 768px) {
    .gh-hero-body .gh-hero-lead {
        font-size: 2rem;
    }
}

.gh-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 540px) {
    .gh-hero-actions {
        flex-direction: row;
    }
}

.gh-hero-actions .gh-btn {
    font-size: 1.6rem;
    padding: 1.1rem 2.4rem;
    min-width: 18rem;
}

.gh-hero-note {
    margin-top: 1.8rem;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ——— Internal page hero ——— */

.gh-page-hero {
    background: linear-gradient(135deg, var(--gh-navy) 55%, #1a4a6e 100%);
    color: var(--gh-white);
    padding: 11rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.gh-page-hero--img {
    background: var(--gh-navy);
    padding: 0;
    min-height: 38rem;
    display: flex;
    align-items: center;
}

.gh-page-hero--img::before {
    display: none;
}

.gh-page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gh-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.gh-page-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(14, 44, 64, 0.93) 0%,
        rgba(14, 44, 64, 0.82) 45%,
        rgba(14, 44, 64, 0.55) 100%
    );
}

.gh-page-hero--img .gh-page-hero-inner {
    padding: 11rem 2rem 5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .gh-page-hero--img {
        min-height: 44rem;
    }

    .gh-page-hero--img .gh-page-hero-inner {
        padding: 12rem 2rem 6rem;
    }
}

.gh-page-hero::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(185, 78, 143, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.gh-page-hero-inner {
    max-width: var(--gh-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gh-breadcrumb {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.2rem;
}

.gh-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.gh-breadcrumb a:hover {
    color: var(--gh-pink);
}

.gh-page-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 68rem;
    margin-bottom: 1.2rem;
}

@media (min-width: 768px) {
    .gh-page-hero h1 {
        font-size: 4.2rem;
    }
}

.gh-page-hero-lead {
    font-size: 1.75rem;
    line-height: 1.55;
    max-width: 58rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.gh-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ——— Layout sections ——— */

.gh-section {
    padding: 5rem 2rem;
}

.gh-section-alt {
    background: var(--gh-gray-100);
}

.gh-section-dark {
    background: var(--gh-navy);
    color: var(--gh-white);
}

.gh-container {
    max-width: var(--gh-max);
    margin: 0 auto;
}

.gh-section-header {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto 3.5rem;
}

.gh-section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gh-gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.gh-section-dark .gh-section-header h2 {
    color: var(--gh-white);
}

.gh-section-header p {
    font-size: 1.65rem;
    line-height: 1.6;
    color: var(--gh-gray-700);
}

.gh-section-dark .gh-section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.gh-overline {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gh-pink);
    margin-bottom: 0.8rem;
}

/* ——— Trust bar ——— */

.gh-trust-bar {
    background: var(--gh-white);
    border-bottom: 1px solid var(--gh-gray-200);
    padding: 1.6rem 2rem;
    margin-top: -1px;
    position: relative;
    z-index: 3;
}

.gh-trust-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    max-width: var(--gh-max);
    margin: 0 auto;
}

.gh-trust-bar li {
    font-size: 1.35rem;
    color: var(--gh-gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gh-trust-bar li i {
    color: var(--gh-pink);
    font-size: 1.2rem;
}

/* ——— Intro card (floating) ——— */

.gh-intro-card {
    background: var(--gh-white);
    border-radius: var(--gh-radius);
    box-shadow: var(--gh-shadow);
    padding: 3.5rem 2.5rem;
    margin-top: -4rem;
    position: relative;
    z-index: 4;
    border-top: 3px solid var(--gh-pink);
}

@media (min-width: 768px) {
    .gh-intro-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        padding: 4rem 4rem;
    }
}

.gh-intro-card h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gh-gray-900);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.gh-intro-card p {
    font-size: 1.6rem;
    line-height: 1.65;
    color: var(--gh-gray-700);
}

.gh-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gh-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--gh-gray-100);
    border-radius: var(--gh-radius);
}

.gh-stat strong {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gh-navy);
    line-height: 1.2;
}

.gh-stat span {
    font-size: 1.25rem;
    color: var(--gh-gray-700);
}

/* ——— Solution cards ——— */

.gh-solutions-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .gh-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gh-solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gh-solution-card {
    background: var(--gh-white);
    border: 1px solid var(--gh-gray-200);
    border-radius: var(--gh-radius);
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gh-solution-card-body {
    padding: 1.6rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gh-solution-card-thumb {
    height: 12rem;
    overflow: hidden;
    position: relative;
}

.gh-solution-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gh-solution-card:hover .gh-solution-card-thumb img {
    transform: scale(1.06);
}

.gh-solution-card-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 44, 64, 0.35), transparent 55%);
    pointer-events: none;
}

.gh-solution-card:hover {
    border-color: var(--gh-pink);
    box-shadow: var(--gh-shadow);
    transform: translateY(-2px);
}

.gh-solution-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--gh-radius);
    background: rgba(14, 44, 64, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gh-navy);
    margin-bottom: 1.2rem;
}

.gh-solution-card:hover .gh-solution-card-icon {
    background: rgba(185, 78, 143, 0.12);
    color: var(--gh-pink);
}

.gh-solution-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gh-gray-900);
    margin-bottom: 0.6rem;
}

.gh-solution-card p {
    font-size: 1.4rem;
    line-height: 1.55;
    color: var(--gh-gray-700);
    flex: 1;
}

.gh-solution-card-link {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gh-pink);
    margin-top: 1rem;
}

/* ——— Feature rows (landing detail) ——— */

.gh-feature-row {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .gh-feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .gh-feature-row.reverse {
        direction: rtl;
    }

    .gh-feature-row.reverse > * {
        direction: ltr;
    }
}

.gh-feature-row:last-child {
    margin-bottom: 0;
}

.gh-feature-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gh-gray-900);
    margin-bottom: 1rem;
}

.gh-feature-content p {
    font-size: 1.55rem;
    line-height: 1.65;
    color: var(--gh-gray-700);
    margin-bottom: 1.2rem;
}

.gh-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gh-check-list li {
    font-size: 1.45rem;
    color: var(--gh-gray-700);
    padding: 0.5rem 0 0.5rem 2.2rem;
    position: relative;
    line-height: 1.5;
}

.gh-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gh-pink);
    font-size: 1.2rem;
}

.gh-feature-visual {
    background: var(--gh-gray-100);
    border: 1px solid var(--gh-gray-200);
    border-radius: var(--gh-radius);
    padding: 2.5rem;
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gh-feature-visual.gh-accent {
    background: linear-gradient(145deg, var(--gh-navy) 0%, #163a52 100%);
    border: none;
    color: var(--gh-white);
}

.gh-feature-photo {
    border-radius: var(--gh-radius);
    overflow: hidden;
    box-shadow: var(--gh-shadow);
    min-height: 22rem;
    border: 1px solid var(--gh-gray-200);
}

.gh-feature-photo img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
    display: block;
}

.gh-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.gh-flow-step {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--gh-radius);
    padding: 1rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 600;
    text-align: center;
}

.gh-flow-arrow {
    color: var(--gh-pink);
    font-size: 1.4rem;
}

/* ——— Differentiators ——— */

.gh-diff-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gh-diff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gh-diff-item {
    padding: 2rem;
    border-left: 3px solid var(--gh-pink);
    background: rgba(255, 255, 255, 0.04);
}

.gh-section-dark .gh-diff-item {
    background: rgba(255, 255, 255, 0.05);
}

.gh-diff-item h4 {
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.gh-diff-item p {
    font-size: 1.4rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

/* ——— Newsletter / LiveBeep subscription ——— */

.gh-subscribe {
    padding: 5rem 2rem;
    background: var(--gh-gray-100);
}

.gh-subscribe-card {
    background: #fff;
    border: 1px solid var(--gh-gray-200);
    border-radius: 12px;
    box-shadow: var(--gh-shadow);
    padding: 3rem 2.2rem;
    max-width: 88rem;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .gh-subscribe-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(28rem, 1.1fr);
        gap: 3rem;
        align-items: center;
        padding: 3.6rem 4rem;
    }
}

.gh-subscribe-copy h2 {
    margin: 0 0 0.8rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gh-navy);
    letter-spacing: -0.02em;
}

.gh-subscribe-copy p {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.55;
    color: var(--gh-gray-700);
}

.gh-subscribe-form {
    min-height: 8rem;
    width: 100%;
}

/* ——— CTA band ——— */

.gh-cta-band {
    background: linear-gradient(135deg, var(--gh-navy) 0%, #123049 100%);
    color: var(--gh-white);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.gh-cta-band::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gh-pink);
}

.gh-cta-band h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.gh-cta-band p {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ——— Footer ——— */

.gh-footer {
    background: #0a1f2e;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 2rem 2rem;
}

.gh-footer-grid {
    max-width: var(--gh-max);
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .gh-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.gh-footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gh-white);
    margin-bottom: 0.8rem;
}

.gh-footer-brand span {
    color: var(--gh-pink);
}

.gh-footer-desc {
    font-size: 1.4rem;
    line-height: 1.6;
    max-width: 28rem;
}

.gh-footer-col h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gh-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.gh-footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.35rem 0;
    transition: color 0.15s;
}

.gh-footer-col a:hover {
    color: var(--gh-pink);
}

.gh-footer-bottom {
    max-width: var(--gh-max);
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.3rem;
}

.gh-footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-left: 1.5rem;
}

.gh-footer-bottom a:hover {
    color: var(--gh-white);
}

/* ——— Related solutions ——— */

.gh-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.gh-related a {
    font-size: 1.3rem;
    color: var(--gh-navy);
    background: var(--gh-gray-100);
    border: 1px solid var(--gh-gray-200);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.15s;
}

.gh-related a:hover {
    border-color: var(--gh-pink);
    color: var(--gh-pink);
}

/* ——— Plans teaser ——— */

.gh-plans-teaser {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gh-plans-teaser {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gh-plan-mini {
    background: var(--gh-white);
    border: 1px solid var(--gh-gray-200);
    border-radius: var(--gh-radius);
    padding: 2rem;
    text-align: center;
}

.gh-plan-mini.featured {
    border-color: var(--gh-pink);
    border-width: 2px;
    position: relative;
}

.gh-plan-mini.featured::before {
    content: "Recomendado";
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gh-pink);
    color: var(--gh-white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gh-plan-mini h3 {
    font-size: 1.8rem;
    color: var(--gh-gray-900);
    margin-bottom: 0.4rem;
}

.gh-plan-mini .price {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gh-navy);
}

.gh-plan-mini .price small {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gh-gray-700);
}

.gh-plan-mini p {
    font-size: 1.35rem;
    color: var(--gh-gray-700);
    margin-top: 0.8rem;
}

body.wrapper main.contenedor {
    padding-top: 2rem;
}

/* ——— Clara / SecretarIA ——— */

.gh-clara-spotlight {
    display: grid;
    gap: 2.4rem;
    align-items: center;
    background: linear-gradient(135deg, #0e2c40 0%, #163a52 55%, #3d2450 100%);
    border-radius: 16px;
    padding: 2.4rem 2rem;
    color: #fff;
    overflow: hidden;
}

@media (min-width: 800px) {
    .gh-clara-spotlight {
        grid-template-columns: auto 1fr;
        gap: 3.2rem;
        padding: 3.2rem 3.6rem;
    }
}

.gh-clara-spotlight-speaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.gh-clara-spotlight-avatar {
    width: 9.6rem;
    height: 9.6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: #0e2c40;
}

.gh-clara-spotlight-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-clara-spotlight-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f3c6e0;
}

.gh-clara-spotlight-bubble {
    position: relative;
    background: #fff7fb;
    color: var(--gh-navy);
    border-radius: 16px;
    padding: 2rem 2.2rem 2.2rem;
}

@media (min-width: 800px) {
    .gh-clara-spotlight-bubble::before {
        content: "";
        position: absolute;
        left: -8px;
        top: 2.4rem;
        width: 16px;
        height: 16px;
        background: #fff7fb;
        transform: rotate(45deg);
    }
}

.gh-clara-spotlight-bubble .gh-overline {
    color: var(--gh-pink);
}

.gh-clara-spotlight-bubble h2,
.gh-clara-spotlight-bubble h3 {
    margin: 0 0 0.8rem;
    color: var(--gh-navy);
    font-size: 2.4rem;
}

.gh-clara-spotlight-bubble p {
    margin: 0 0 1.4rem;
    font-size: 1.55rem;
    line-height: 1.55;
    color: var(--gh-gray-700);
}

.gh-clara-spotlight-bubble .gh-btn {
    margin-right: 0.8rem;
    margin-top: 0.4rem;
}

.gh-clara-banner {
    display: grid;
    gap: 1.8rem;
    align-items: center;
    background: #fff7fb;
    border: 1px solid #f0d4e6;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2.4rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}

.gh-clara-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--gh-shadow);
}

@media (min-width: 720px) {
    .gh-clara-banner {
        grid-template-columns: 7.2rem 1fr auto;
        padding: 2.2rem 2.6rem;
    }
}

.gh-clara-banner img {
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(185, 78, 143, 0.2);
}

.gh-clara-banner h3 {
    margin: 0 0 0.4rem;
    font-size: 2rem;
    color: var(--gh-navy);
}

.gh-clara-banner p {
    margin: 0;
    font-size: 1.45rem;
    color: var(--gh-gray-700);
    line-height: 1.5;
}

.gh-clara-cap {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 768px) {
    .gh-clara-cap {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gh-clara-cap article {
    background: #fff;
    border: 1px solid var(--gh-gray-200);
    border-radius: 12px;
    padding: 1.8rem 1.8rem 1.6rem;
}

.gh-clara-cap h3 {
    margin: 0 0 0.6rem;
    font-size: 1.65rem;
    color: var(--gh-navy);
}

.gh-clara-cap p {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--gh-gray-700);
}

/* ——— Dónde se contrata (transparente) ——— */

.gh-avail {
    display: inline-block;
    align-self: flex-start;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.gh-avail--gestion {
    background: #e8f1f6;
    color: #0e2c40;
}

.gh-avail--operacion {
    background: #f3e6ef;
    color: #7a2f5d;
}

.gh-avail--pack {
    background: #fff4e6;
    color: #8a4b12;
}

.gh-avail--full {
    background: #0e2c40;
    color: #fff;
}

.gh-avail-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
    margin: 0 0 2.2rem;
    font-size: 1.35rem;
    color: var(--gh-gray-700);
}

.gh-avail-legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.gh-where-box {
    max-width: 76rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gh-gray-200);
    border-left: 4px solid var(--gh-pink);
    border-radius: var(--gh-radius);
    padding: 2.4rem 2.6rem 2.2rem;
}

.gh-where-box .gh-overline {
    display: block;
    margin-bottom: 0.6rem;
}

.gh-where-box h2 {
    font-size: 2.2rem;
    color: var(--gh-navy);
    margin: 0 0 1rem;
}

.gh-where-box p {
    font-size: 1.5rem;
    line-height: 1.65;
    color: var(--gh-gray-700);
    margin: 0 0 1rem;
}

.gh-where-box p:last-child {
    margin-bottom: 0;
}

.gh-where-box ul {
    margin: 0 0 1.2rem;
    padding-left: 1.4rem;
    font-size: 1.45rem;
    line-height: 1.6;
    color: var(--gh-gray-700);
}

.gh-where-box a {
    font-weight: 600;
    color: var(--gh-pink);
}

.gh-invest {
    max-width: 86rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gh-gray-200);
    border-radius: 14px;
    padding: 2.8rem 3rem;
    box-shadow: 0 10px 30px rgba(14, 44, 64, 0.05);
}

.gh-invest-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem 1.6rem;
    margin: 0 0 1.2rem;
}

.gh-invest-price strong {
    font-size: 3.4rem;
    line-height: 1;
    color: var(--gh-navy);
}

.gh-invest-price span {
    font-size: 1.45rem;
    color: var(--gh-gray-700);
}

.gh-invest h2 {
    font-size: 2.3rem;
    color: var(--gh-navy);
    margin: 0 0 1rem;
}

.gh-invest p {
    font-size: 1.55rem;
    line-height: 1.65;
    color: var(--gh-gray-700);
    margin: 0 0 1rem;
}

.gh-invest p:last-child {
    margin-bottom: 0;
}

.gh-sell-grid {
    display: grid;
    gap: 1.6rem;
}

@media (min-width: 768px) {
    .gh-sell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gh-sell-card {
    background: #fff;
    border: 1px solid var(--gh-gray-200);
    border-radius: 12px;
    padding: 2rem 1.8rem 1.8rem;
}

.gh-sell-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.7rem;
    color: var(--gh-navy);
}

.gh-sell-card p {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.55;
    color: var(--gh-gray-700);
}
