/**
 * REDECOMSA-ASSETS-3.1.1
 *
 * Estructura institucional inicial.
 * No contiene copias de Bootstrap ni Font Awesome.
 */

:root {
    --redecomsa-surface: #ffffff;
    --redecomsa-background: #f7f8fa;
    --redecomsa-ink: #20252b;
    --redecomsa-muted: #667085;
    --redecomsa-border: rgba(32, 37, 43, 0.13);
    --redecomsa-footer: #171a1f;
    --redecomsa-radius: 0.75rem;
    --redecomsa-shadow:
        0 12px 34px rgba(17, 24, 39, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--redecomsa-ink);
    background: var(--redecomsa-background);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   ENCABEZADO
   ===================================================== */

#g-header.redecomsa-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--redecomsa-ink);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--redecomsa-border);
    box-shadow: 0 1px 0 rgba(17, 24, 39, 0.02);
    backdrop-filter: blur(14px);
    transition:
        box-shadow 180ms ease,
        background-color 180ms ease;
}

#g-header.redecomsa-header.redecomsa-header-scrolled {
    box-shadow: var(--redecomsa-shadow);
}

#g-header.redecomsa-header .g-container {
    width: min(calc(100% - 2rem), 1240px);
}

#g-header.redecomsa-header .g-grid {
    align-items: center;
}

#g-header.redecomsa-header .g-content {
    margin: 0;
    padding: 0.7rem 0.85rem;
}

/* Logotipo */

.redecomsa-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.redecomsa-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 76px;
    object-fit: contain;
}

/* Navegación */

#g-header .g-main-nav {
    text-align: right;
}

#g-header .g-main-nav .g-toplevel {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.05rem;
}

#g-header .g-main-nav .g-toplevel > li {
    margin: 0;
}

#g-header
.g-main-nav
.g-toplevel
> li
> .g-menu-item-container {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.65rem 0.55rem;
    color: var(--redecomsa-ink);
    border-radius: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease;
}

#g-header
.g-main-nav
.g-toplevel
> li
> .g-menu-item-container:hover,
#g-header
.g-main-nav
.g-toplevel
> li
> .g-menu-item-container:focus-visible {
    color: #000000;
    background: rgba(32, 37, 43, 0.06);
}

#g-header
.g-main-nav
.g-toplevel
> li.active
> .g-menu-item-container {
    color: #000000;
    background: rgba(32, 37, 43, 0.08);
}

#g-header
.g-main-nav
.g-toplevel
> li.active
> .g-menu-item-container::after {
    position: absolute;
    right: 0.55rem;
    bottom: 0.28rem;
    left: 0.55rem;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 999px;
}

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

#g-main.redecomsa-main {
    min-height: 55vh;
    background: var(--redecomsa-background);
}

#g-main.redecomsa-main .g-container {
    width: min(calc(100% - 2rem), 1240px);
}

#g-main.redecomsa-main .g-content {
    margin: 0;
    padding: 2rem 0.85rem;
}

/* =====================================================
   PIE DE PÁGINA
   ===================================================== */

#g-footer.redecomsa-footer {
    color: rgba(255, 255, 255, 0.82);
    background: var(--redecomsa-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#g-footer.redecomsa-footer .g-container {
    width: min(calc(100% - 2rem), 1240px);
}

#g-footer.redecomsa-footer .g-content {
    margin: 0;
    padding: 1.35rem 0.85rem;
}

.redecomsa-footer-legal .nav,
.redecomsa-footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem 1.3rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.redecomsa-footer-legal .nav-item,
.redecomsa-footer-legal li {
    margin: 0;
    padding: 0;
}

.redecomsa-footer-legal a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.redecomsa-footer-legal a:hover,
.redecomsa-footer-legal a:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

/* =====================================================
   MENÚ MÓVIL
   ===================================================== */

.g-offcanvas-toggle {
    color: #ffffff;
    background: var(--redecomsa-footer);
    border-radius: 0 0 0.5rem 0;
}

#g-offcanvas.redecomsa-offcanvas {
    color: #ffffff;
    background: var(--redecomsa-footer);
}

#g-offcanvas .g-menu-item-container {
    color: rgba(255, 255, 255, 0.9);
}

#g-offcanvas .active > .g-menu-item-container {
    color: #ffffff;
    font-weight: 800;
}

/* =====================================================
   ACCESIBILIDAD Y UTILIDADES
   ===================================================== */

html:not(.redecomsa-assets-ready) .redecomsa-js-required {
    display: none !important;
}

:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

@media (max-width: 64rem) {
    #g-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container {
        padding-right: 0.38rem;
        padding-left: 0.38rem;
        font-size: 0.74rem;
    }
}

@media (max-width: 48rem) {
    #g-header.redecomsa-header {
        position: relative;
    }

    #g-header.redecomsa-header .g-container,
    #g-main.redecomsa-main .g-container,
    #g-footer.redecomsa-footer .g-container {
        width: min(calc(100% - 1rem), 1240px);
    }

    #g-header.redecomsa-header .g-content {
        padding: 0.6rem 0.5rem;
    }

    .redecomsa-logo img {
        max-height: 56px;
    }

    #g-main.redecomsa-main .g-content {
        padding: 1.35rem 0.5rem;
    }
}

/* REDECOMSA-HOME-1.2.0 START */

/*
 * Portada institucional.
 * Este bloque utiliza la paleta estructural neutral existente.
 * No altera encabezado, navegación, footer ni offcanvas.
 */

.redecomsa-home {
    --rdc-home-dark: var(--redecomsa-footer);
    --rdc-home-soft: #eef1f4;
    --rdc-home-line: var(--redecomsa-border);
    --rdc-home-radius: 1.1rem;

    width: 100%;
}

.redecomsa-home,
.redecomsa-home *,
.redecomsa-home *::before,
.redecomsa-home *::after {
    box-sizing: border-box;
}

.redecomsa-home h1,
.redecomsa-home h2,
.redecomsa-home h3,
.redecomsa-home p {
    margin-top: 0;
}

.rdc-hero {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(17rem, 0.58fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
    padding: clamp(2rem, 6vw, 5.25rem);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 84% 14%,
            rgba(255, 255, 255, 0.14),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #171a1f 0%,
            #303842 100%
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--rdc-home-radius);
    box-shadow: var(--redecomsa-shadow);
    overflow: hidden;
}

.rdc-hero__content,
.rdc-hero__panel {
    position: relative;
    z-index: 1;
}

.rdc-eyebrow {
    margin-bottom: 0.7rem;
    color: var(--redecomsa-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rdc-hero .rdc-eyebrow,
.rdc-cta .rdc-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.rdc-hero h1 {
    max-width: 16ch;
    margin-bottom: 1.15rem;
    color: #ffffff;
    font-size: clamp(2.15rem, 5vw, 4.6rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.rdc-hero__lead {
    max-width: 66ch;
    margin-bottom: 1.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.7;
}

.rdc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rdc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.15rem;
    color: inherit;
    border: 1px solid transparent;
    border-radius: 0.65rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        transform 160ms ease,
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.rdc-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.rdc-button--primary {
    color: var(--rdc-home-dark);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.rdc-button--primary:hover,
.rdc-button--primary:focus-visible {
    color: #000000;
    background: #f2f4f6;
}

.rdc-button--secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.rdc-button--secondary:hover,
.rdc-button--secondary:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border-color: #ffffff;
}

.rdc-hero__panel {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.9rem;
    backdrop-filter: blur(12px);
}

.rdc-hero__item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 0.65rem;
}

.rdc-hero__item strong,
.rdc-hero__item span {
    display: block;
}

.rdc-hero__item strong {
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-size: 1rem;
}

.rdc-hero__item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.55;
}

.rdc-home-section {
    padding: clamp(3rem, 7vw, 6.25rem) 0;
}

.rdc-section-heading {
    max-width: 52rem;
    margin-bottom: 2rem;
}

.rdc-section-heading h2,
.rdc-audience h2,
.rdc-cta h2 {
    margin-bottom: 0.8rem;
    color: var(--rdc-home-dark);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.rdc-section-heading > p:last-child,
.rdc-audience > p {
    color: var(--redecomsa-muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.rdc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rdc-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(1.35rem, 3vw, 2.1rem);
    background: var(--redecomsa-surface);
    border: 1px solid var(--rdc-home-line);
    border-radius: var(--rdc-home-radius);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.045);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.rdc-card:hover {
    transform: translateY(-3px);
    border-color: rgba(32, 37, 43, 0.22);
    box-shadow: var(--redecomsa-shadow);
}

.rdc-card__number {
    display: inline-flex;
    margin-bottom: 1.1rem;
    color: var(--redecomsa-muted);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.rdc-card h3 {
    margin-bottom: 0.65rem;
    color: var(--rdc-home-dark);
    font-size: 1.2rem;
    font-weight: 800;
}

.rdc-card p {
    color: var(--redecomsa-muted);
    line-height: 1.7;
}

.rdc-card a,
.rdc-text-link {
    color: var(--rdc-home-dark);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
}

.rdc-card a {
    margin-top: auto;
    padding-top: 0.35rem;
}

.rdc-process {
    padding-right: clamp(1rem, 4vw, 3rem);
    padding-left: clamp(1rem, 4vw, 3rem);
    background: var(--rdc-home-soft);
    border: 1px solid var(--rdc-home-line);
    border-radius: var(--rdc-home-radius);
}

.rdc-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rdc-steps li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.rdc-steps li > span {
    display: inline-flex;
    flex: 0 0 2.4rem;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: #ffffff;
    background: var(--rdc-home-dark);
    border-radius: 50%;
    font-weight: 900;
}

.rdc-steps h3 {
    margin-bottom: 0.3rem;
    color: var(--rdc-home-dark);
    font-size: 1rem;
    font-weight: 800;
}

.rdc-steps p {
    color: var(--redecomsa-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.rdc-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rdc-audience {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--redecomsa-surface);
    border: 1px solid var(--rdc-home-line);
    border-radius: var(--rdc-home-radius);
}

.rdc-audience h2 {
    font-size: clamp(1.55rem, 2.5vw, 2.3rem);
}

.rdc-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: clamp(1.7rem, 5vw, 3.5rem);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #171a1f,
            #303842
        );
    border-radius: var(--rdc-home-radius);
    box-shadow: var(--redecomsa-shadow);
}

.rdc-cta > div {
    max-width: 48rem;
}

.rdc-cta h2 {
    color: #ffffff;
}

.rdc-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.rdc-button--light {
    flex: 0 0 auto;
    color: var(--rdc-home-dark);
    background: #ffffff;
}

.rdc-button--light:hover,
.rdc-button--light:focus-visible {
    color: #000000;
    background: #eef1f4;
}

@media (max-width: 62rem) {
    .rdc-hero {
        grid-template-columns: 1fr;
    }

    .rdc-hero h1 {
        max-width: 18ch;
    }

    .rdc-card-grid {
        grid-template-columns: 1fr;
    }

    .rdc-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 42rem) {
    .rdc-hero {
        padding: 1.5rem;
    }

    .rdc-actions {
        flex-direction: column;
    }

    .rdc-button {
        width: 100%;
    }

    .rdc-steps,
    .rdc-audience-grid {
        grid-template-columns: 1fr;
    }

    .rdc-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .redecomsa-home *,
    .redecomsa-home *::before,
    .redecomsa-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* REDECOMSA-HOME-1.2.0 END */

/* REDECOMSA-BRAND-1.3.0 START */

/*
 * Identidad derivada del logotipo REDECOMSA:
 * azul marino, azul comercial, naranja y ámbar.
 */

:root {
    --redecomsa-navy: #003070;
    --redecomsa-navy-dark: #001b48;
    --redecomsa-blue: #0080d0;
    --redecomsa-blue-light: #0090e0;
    --redecomsa-orange: #f04000;
    --redecomsa-orange-light: #ff6000;
    --redecomsa-amber: #ffa010;

    --redecomsa-background: #f4f8fc;
    --redecomsa-ink: #102a43;
    --redecomsa-muted: #52677d;
    --redecomsa-border: rgba(0, 48, 112, 0.16);
    --redecomsa-footer: #001b48;
    --redecomsa-shadow:
        0 14px 36px rgba(0, 48, 112, 0.12);
}

/* Encabezado y logotipo */

#rx-placeholder {
    display: none;
}

#g-header {
    color: inherit;
}

#g-header .redecomsa-logo img {
    width: auto;
    max-height: 72px;
}

#g-header
.g-main-nav
.g-toplevel
> li
> .g-menu-item-container:hover,
#g-header
.g-main-nav
.g-toplevel
> li
> .g-menu-item-container:focus-visible {
    color: var(--redecomsa-navy);
    background: rgba(0, 128, 208, 0.08);
}

#g-header
.g-main-nav
.g-toplevel
> li.active
> .g-menu-item-container {
    color: var(--redecomsa-navy);
    background: rgba(0, 128, 208, 0.1);
}

#g-header
.g-main-nav
.g-toplevel
> li.active
> .g-menu-item-container::after {
    background:
        linear-gradient(
            90deg,
            var(--redecomsa-blue),
            var(--redecomsa-orange)
        );
}

/* Portada */

.rdc-hero {
    background:
        radial-gradient(
            circle at 84% 14%,
            rgba(255, 160, 16, 0.22),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--redecomsa-navy-dark) 0%,
            var(--redecomsa-navy) 58%,
            #005aa0 100%
        );
}

.rdc-button--primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--redecomsa-orange),
            var(--redecomsa-orange-light)
        );
    box-shadow:
        0 10px 24px rgba(240, 64, 0, 0.28);
}

.rdc-button--primary:hover,
.rdc-button--primary:focus-visible {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #d93a00,
            var(--redecomsa-orange)
        );
}

.rdc-card__number,
.rdc-eyebrow {
    color: var(--redecomsa-navy);
}

.rdc-card:hover {
    border-color: rgba(0, 128, 208, 0.38);
    box-shadow:
        0 16px 34px rgba(0, 48, 112, 0.12);
}

.rdc-card a,
.rdc-text-link {
    color: var(--redecomsa-navy);
}

.rdc-card a:hover,
.rdc-card a:focus-visible,
.rdc-text-link:hover,
.rdc-text-link:focus-visible {
    color: var(--redecomsa-orange);
}

.rdc-steps li > span {
    background:
        linear-gradient(
            135deg,
            var(--redecomsa-navy),
            var(--redecomsa-blue)
        );
}

.rdc-process {
    background:
        linear-gradient(
            135deg,
            rgba(0, 128, 208, 0.055),
            rgba(255, 160, 16, 0.045)
        );
}

.rdc-cta {
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255, 160, 16, 0.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--redecomsa-navy-dark),
            var(--redecomsa-navy)
        );
}

/*
 * Limpieza exclusiva de la página Inicio.
 */

body.itemid-101 dl.article-info,
body.itemid-101 .article-info,
body.itemid-101 .icons,
body.itemid-101 .pagenavigation,
body.itemid-101 .pager,
body.itemid-101 nav.pagination,
body.itemid-101 .pagination {
    display: none !important;
}

/*
 * Ocultar el módulo completo de breadcrumbs en Inicio.
 * :has() evita dejar visible el título del módulo.
 */

body.itemid-101 .g-breadcrumbs,
body.itemid-101 .mod-breadcrumbs,
body.itemid-101 .platform-content:has(.mod-breadcrumbs),
body.itemid-101 .moduletable:has(.mod-breadcrumbs),
body.itemid-101 nav[aria-label="Breadcrumbs"],
body.itemid-101 nav[aria-label="breadcrumb"] {
    display: none !important;
}

/*
 * Mayor aprovechamiento del ancho en celular.
 */

@media (max-width: 48rem) {
    body.itemid-101 #g-main.redecomsa-main .g-container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    body.itemid-101 #g-main.redecomsa-main .g-content {
        margin: 0;
        padding: 0;
    }

    body.itemid-101 .item-page,
    body.itemid-101 .com-content-article,
    body.itemid-101 .redecomsa-home {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    body.itemid-101 .redecomsa-home {
        padding: 0 0.75rem 1.25rem;
    }

    body.itemid-101 .rdc-hero {
        padding: 1.35rem;
        border-radius: 0.9rem;
    }

    body.itemid-101 .rdc-hero h1 {
        max-width: none;
        font-size: clamp(2rem, 10vw, 2.85rem);
        letter-spacing: -0.04em;
    }

    body.itemid-101 .rdc-home-section {
        padding-top: 2.6rem;
        padding-bottom: 2.6rem;
    }

    body.itemid-101 .rdc-card,
    body.itemid-101 .rdc-audience {
        padding: 1.3rem;
    }

    body.itemid-101 .rdc-process {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    body.itemid-101 .rdc-cta {
        padding: 1.4rem;
    }

    #g-header .redecomsa-logo img {
        max-height: 60px;
    }
}

@media (max-width: 25rem) {
    body.itemid-101 .redecomsa-home {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    body.itemid-101 .rdc-hero {
        padding: 1.15rem;
    }

    body.itemid-101 .rdc-hero h1 {
        font-size: 2rem;
    }
}

/* REDECOMSA-BRAND-1.3.0 END */

/* REDECOMSA-MOBILE-CONSOLIDATED-2.0.0 START */

/* =====================================================
   TABLET Y MÓVIL: ENCABEZADO Y MENÚ
   ===================================================== */

.rdc-mobile-navbar {
    display: none;
}

@media (max-width: 64rem) {
    #g-header.redecomsa-header {
        position: relative;
        z-index: 1000;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #g-header.redecomsa-header .g-container,
    #g-header.redecomsa-header .g-grid,
    #g-header.redecomsa-header .g-block,
    #g-header.redecomsa-header .g-content {
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0;
    }

    #g-header.redecomsa-header .g-grid {
        display: block;
    }

    #g-header.redecomsa-header
    .g-grid > .g-block:nth-child(2),
    #g-header.redecomsa-header .g-main-nav {
        display: none !important;
    }

    #g-header.redecomsa-header .g-content {
        padding: 0;
    }

    #g-header.redecomsa-header
    .g-logo,
    #g-header.redecomsa-header
    .redecomsa-logo {
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0.75rem;
        background: #ffffff;
    }

    #g-header.redecomsa-header
    .g-logo img,
    #g-header.redecomsa-header
    .redecomsa-logo img {
        display: block;
        width: min(350px, 100%);
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }

    .rdc-mobile-navbar {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 3.6rem;
        margin: 0;
        padding: 0.45rem 0.75rem 0.45rem 1rem;
        color: #ffffff;
        background:
            linear-gradient(
                90deg,
                var(--redecomsa-navy, #003070),
                var(--redecomsa-blue, #0080d0)
            );
        border-radius: 0;
        box-shadow:
            0 0.2rem 0.7rem
            rgba(0, 35, 85, 0.18);
    }

    .rdc-mobile-navbar__label {
        min-width: 0;
        padding-right: 0.75rem;
        color: #ffffff;
        font-size: 0.82rem;
        font-weight: 800;
        letter-spacing: 0.055em;
        line-height: 1.15;
        text-transform: uppercase;
    }

    .rdc-mobile-navbar
    .g-offcanvas-toggle {
        position: static !important;
        inset: auto !important;
        display: inline-flex !important;
        flex: 0 0 2.65rem;
        align-items: center;
        justify-content: center;
        width: 2.65rem !important;
        min-width: 2.65rem !important;
        height: 2.65rem !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #ffffff !important;
        background:
            linear-gradient(
                135deg,
                var(--redecomsa-orange, #f04000),
                var(--redecomsa-orange-light, #ff6000)
            ) !important;
        border:
            1px solid
            rgba(255, 255, 255, 0.35);
        border-radius: 0.7rem !important;
        box-shadow:
            0 0.3rem 0.75rem
            rgba(0, 20, 55, 0.25);
        transform: none !important;
    }

    .rdc-mobile-navbar
    .g-offcanvas-toggle i {
        margin: 0 !important;
        color: inherit !important;
        font-size: 1.3rem !important;
        line-height: 1 !important;
    }

    #g-offcanvas {
        width: min(86vw, 20rem);
        max-width: calc(100vw - 0.75rem);
        color: #ffffff;
        background:
            linear-gradient(
                180deg,
                #00245a 0%,
                #001b48 100%
            );
    }

    #g-offcanvas
    #g-mobilemenu-container
    ul {
        margin: 0;
        padding: 0.75rem 0 1rem;
    }

    #g-offcanvas
    #g-mobilemenu-container
    ul > li {
        margin: 0;
        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.1);
    }

    #g-offcanvas
    #g-mobilemenu-container
    ul > li
    > .g-menu-item-container {
        display: flex;
        align-items: center;
        min-height: 3.2rem;
        padding: 0.85rem 1.15rem;
        color: rgba(255, 255, 255, 0.94);
        font-size: 0.93rem;
        font-weight: 700;
        line-height: 1.3;
    }

    #g-offcanvas
    #g-mobilemenu-container
    ul > li.active
    > .g-menu-item-container {
        color: #ffffff;
        background:
            linear-gradient(
                90deg,
                var(--redecomsa-orange, #f04000),
                var(--redecomsa-orange-light, #ff6000)
            );
    }
}

/* =====================================================
   TELÉFONO: SIN GUTTER BOOTSTRAP
   ===================================================== */

@media (max-width: 47.99rem) {
    html,
    body,
    #g-page-surround {
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

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

    #g-header,
    #g-main,
    #g-footer,
    #g-header .g-container,
    #g-header .g-grid,
    #g-header .g-block,
    #g-header .g-content,
    #g-main .g-container,
    #g-main .g-grid,
    #g-main .g-block,
    #g-main .g-content,
    #g-main .platform-content,
    #g-main .item-page,
    #g-main .com-content-article,
    #g-footer .g-container,
    #g-footer .g-grid,
    #g-footer .g-block,
    #g-footer .g-content {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    /*
     * Bootstrap genera un gutter de 12 px:
     *
     * .row  -> márgenes negativos
     * .col  -> padding izquierdo y derecho
     *
     * Esta era la causa exacta de la franja blanca.
     */

    body.itemid-101
    #g-main
    .row {
        display: block !important;
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body.itemid-101
    #g-main
    .row > .col,
    body.itemid-101
    #g-main
    .row > [class^="col-"],
    body.itemid-101
    #g-main
    .row > [class*=" col-"] {
        box-sizing: border-box;
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body.itemid-101 .redecomsa-home,
    .redecomsa-home {
        position: static !important;
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    /*
     * Hero exterior: fondo de extremo a extremo.
     */

    body.itemid-101 .rdc-hero,
    .redecomsa-home .rdc-hero {
        position: relative;
        box-sizing: border-box;
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background:
            linear-gradient(
                135deg,
                var(--redecomsa-dark, #001b48) 0%,
                var(--redecomsa-navy, #003070) 100%
            ) !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        overflow: hidden;
    }

    body.itemid-101 .rdc-hero::before,
    body.itemid-101 .rdc-hero::after,
    .redecomsa-home .rdc-hero::before,
    .redecomsa-home .rdc-hero::after {
        display: none !important;
        content: none !important;
    }

    /*
     * Los hijos directos reales del hero son:
     *
     * div.rdc-hero__content
     * aside.rdc-hero__panel
     */

    body.itemid-101
    .rdc-hero > .rdc-hero__content,
    .redecomsa-home
    .rdc-hero > .rdc-hero__content {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding:
            1.5rem
            1rem
            0.9rem !important;
        background: transparent !important;
        transform: none !important;
    }

    body.itemid-101
    .rdc-hero > .rdc-hero__panel,
    .redecomsa-home
    .rdc-hero > .rdc-hero__panel {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding:
            0
            1rem
            1.5rem !important;
        background: transparent !important;
        transform: none !important;
    }

    /*
     * Compatibilidad por si posteriormente se agrega
     * una cuadrícula interior.
     */

    body.itemid-101 .rdc-hero__grid,
    .redecomsa-home .rdc-hero__grid {
        box-sizing: border-box;
        display: grid;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .redecomsa-home
    > .rdc-home-section,
    .redecomsa-home
    > .rdc-process,
    .redecomsa-home
    > .rdc-cta {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-right: 0 !important;
        border-left: 0 !important;
        border-radius: 0 !important;
    }

    /*
     * Secciones interiores: padding real de 16 px.
     */

    .redecomsa-home
    .rdc-home-section:not(.rdc-hero):not(.rdc-process):not(.rdc-cta),
    .redecomsa-home .rdc-process,
    .redecomsa-home .rdc-cta {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    .redecomsa-home h1,
    .redecomsa-home h2,
    .redecomsa-home h3,
    .redecomsa-home p,
    .redecomsa-home a {
        max-width: 100% !important;
        word-break: normal !important;
        overflow-wrap: break-word;
        hyphens: none !important;
    }

    .redecomsa-home .rdc-hero h1 {
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
        font-size:
            clamp(
                1.8rem,
                8.4vw,
                2.15rem
            ) !important;
        line-height: 1.08 !important;
    }

    .redecomsa-home
    .rdc-hero__eyebrow {
        margin-bottom: 0.85rem !important;
        line-height: 1.35;
    }

    .redecomsa-home
    .rdc-hero__lead {
        margin-top: 0 !important;
        margin-bottom: 1.2rem !important;
        font-size: 1rem;
        line-height: 1.65;
    }

    .redecomsa-home .rdc-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        gap: 0.65rem;
        margin: 0 !important;
    }

    .redecomsa-home .rdc-button,
    .redecomsa-home .rdc-card,
    .redecomsa-home .rdc-audience,
    .redecomsa-home .rdc-hero__item {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .redecomsa-home .rdc-button {
        white-space: normal;
        text-align: center;
    }
}

/* REDECOMSA-MOBILE-CONSOLIDATED-2.0.0 END */

/* REDECOMSA-DESKTOP-NAV-FOOTER-2.5.0 START */

/* =====================================================
   PIE DE PÁGINA
   ===================================================== */

#g-footer.redecomsa-footer {
    position: relative;
    margin-top: 0;
    border-top:
        4px solid
        var(--redecomsa-orange, #f04000);
    box-shadow:
        inset 0 1px 0
        rgba(255, 160, 16, 0.35);
}

/* =====================================================
   ESCRITORIO: CABECERA Y NAVEGACIÓN
   ===================================================== */

@media (min-width: 64.01rem) {
    #g-header.redecomsa-header {
        position: relative;
        z-index: 1000;
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding: 0;
        background: #ffffff;
        border: 0;
        box-shadow:
            0 0.4rem 1.35rem
            rgba(0, 35, 85, 0.13);
    }

    #g-header.redecomsa-header .g-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    #g-header.redecomsa-header .g-grid {
        display: flex;
        flex-flow: row wrap;
        width: 100%;
        margin: 0;
    }

    /*
     * Primera fila: logotipo.
     */

    #g-header.redecomsa-header
    .g-grid > .g-block:first-child {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    #g-header.redecomsa-header
    .g-grid > .g-block:first-child
    .g-content {
        margin: 0;
        padding: 1rem 1.5rem 0.9rem;
    }

    #g-header.redecomsa-header
    .g-logo,
    #g-header.redecomsa-header
    .redecomsa-logo,
    #g-header.redecomsa-header
    .g-logo img,
    #g-header.redecomsa-header
    .redecomsa-logo img {
        display: block;
        width: 350px !important;
        min-width: 350px !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 0 auto;
    }

    /*
     * Segunda fila: barra azul.
     */

    #g-header.redecomsa-header
    .g-grid > .g-block:nth-child(2) {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        background:
            linear-gradient(
                90deg,
                #001b48 0%,
                #003070 50%,
                #0080d0 100%
            );
        border-top:
            1px solid
            rgba(255, 255, 255, 0.1);
        border-bottom:
            3px solid
            var(--redecomsa-orange, #f04000);
    }

    #g-header.redecomsa-header
    .g-grid > .g-block:nth-child(2)
    .g-content {
        margin: 0;
        padding: 0;
    }

    #g-header.redecomsa-header
    .g-main-nav {
        width: 100%;
    }

    /*
     * Columnas proporcionadas según el texto.
     */

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel {
        display: grid;
        grid-template-columns:
            0.72fr
            1.02fr
            0.74fr
            1.30fr
            0.72fr
            1.28fr
            1.05fr
            0.72fr;
        align-items: stretch;
        width: 100%;
        max-width: 90rem;
        margin: 0 auto;
        padding: 0;
        gap: 0;
        background: transparent !important;
    }

    /*
     * Gantry aplica fondo al li.active.
     * Se neutraliza explícitamente.
     */

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.active,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.g-selected {
        position: relative;
        display: flex;
        align-items: stretch;
        min-width: 0;
        margin: 0;
        padding: 0;
        background: transparent !important;
        background-color: transparent !important;
        border-left:
            1px solid
            rgba(255, 255, 255, 0.09);
        box-shadow: none !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li:last-child {
        border-right:
            1px solid
            rgba(255, 255, 255, 0.09);
    }

    /*
     * Enlace base.
     */

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container {
        position: relative;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        min-height: 4.2rem;
        margin: 0;
        padding: 0.78rem 0.55rem;
        color: rgba(255, 255, 255, 0.96) !important;
        background: transparent !important;
        background-color: transparent !important;
        font-size: 0.83rem;
        font-weight: 700;
        letter-spacing: 0.005em;
        line-height: 1.22;
        text-align: center;
        text-decoration: none;
        white-space: normal;
        text-wrap: balance;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transition:
            color 160ms ease,
            background 160ms ease,
            box-shadow 160ms ease;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-menu-item-content,
    #g-header.redecomsa-header
    .g-main-nav
    .g-menu-item-title {
        color: inherit !important;
        background: transparent !important;
        background-color: transparent !important;
    }

    /*
     * Línea inferior para hover.
     */

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container::after {
        position: absolute;
        right: 1rem;
        bottom: 0;
        left: 1rem;
        height: 0.2rem;
        content: "";
        background:
            var(--redecomsa-amber, #ffa010);
        border-radius: 999px 999px 0 0;
        opacity: 0;
        transform: scaleX(0.35);
        transition:
            opacity 160ms ease,
            transform 160ms ease;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container:hover,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container:focus-visible {
        color: #ffffff !important;
        background:
            rgba(255, 255, 255, 0.11) !important;
        box-shadow:
            inset 0 0 1.1rem
            rgba(0, 128, 208, 0.16);
        outline:
            2px solid
            rgba(255, 160, 16, 0.45);
        outline-offset: -2px;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container:hover::after,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container:focus-visible::after {
        opacity: 1;
        transform: scaleX(1);
    }

    /*
     * Elemento activo:
     * sin fondo blanco y sin bloque naranja completo.
     */

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.active
    > .g-menu-item-container,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.g-selected
    > .g-menu-item-container {
        color: #ffffff !important;
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.16),
                rgba(255, 255, 255, 0.07)
            ) !important;
        background-color:
            rgba(255, 255, 255, 0.1) !important;
        box-shadow:
            inset 0 -0.28rem 0
            var(--redecomsa-orange, #f04000),
            inset 0 1px 0
            rgba(255, 255, 255, 0.16) !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.active
    > .g-menu-item-container::after,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li.g-selected
    > .g-menu-item-container::after {
        display: none;
    }
}

/*
 * Escritorio intermedio.
 */

@media (min-width: 64.01rem) and (max-width: 76rem) {
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container {
        min-height: 4.35rem;
        padding-right: 0.38rem;
        padding-left: 0.38rem;
        font-size: 0.75rem;
    }
}

@media (min-width: 64.01rem) {
    /* =================================================
       PORTADA: ESPACIO SUPERIOR COMPACTO
       ================================================= */

    body.itemid-101
    #g-main.redecomsa-main {
        padding-top: 0 !important;
    }

    body.itemid-101
    #g-main.redecomsa-main
    .g-container,
    body.itemid-101
    #g-main.redecomsa-main
    .g-grid,
    body.itemid-101
    #g-main.redecomsa-main
    .g-block,
    body.itemid-101
    #g-main.redecomsa-main
    .g-content,
    body.itemid-101
    #g-main.redecomsa-main
    .platform-content,
    body.itemid-101
    #g-main.redecomsa-main
    .item-page,
    body.itemid-101
    #g-main.redecomsa-main
    .com-content-article,
    body.itemid-101
    .redecomsa-home,
    body.itemid-101
    .rdc-hero {
        margin-top: 0 !important;
    }

    body.itemid-101
    #g-main.redecomsa-main
    .g-content {
        padding-top: 0 !important;
    }
}

/* =====================================================
   MÓVIL
   ===================================================== */

@media (max-width: 47.99rem) {
    body.itemid-101 .rdc-mobile-navbar {
        margin-bottom: 0 !important;
        border-bottom:
            3px solid
            var(--redecomsa-orange, #f04000) !important;
        box-shadow: none;
    }

    body.itemid-101 .rdc-hero {
        margin-top: 0 !important;
        border-top: 0 !important;
    }

    body.itemid-101
    #g-main.redecomsa-main,
    body.itemid-101
    #g-main.redecomsa-main
    .g-container,
    body.itemid-101
    #g-main.redecomsa-main
    .g-grid,
    body.itemid-101
    #g-main.redecomsa-main
    .g-block,
    body.itemid-101
    #g-main.redecomsa-main
    .g-content,
    body.itemid-101
    #g-main.redecomsa-main
    .platform-content,
    body.itemid-101
    #g-main.redecomsa-main
    .item-page,
    body.itemid-101
    #g-main.redecomsa-main
    .com-content-article,
    body.itemid-101
    .redecomsa-home {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    body.itemid-101
    .redecomsa-home
    > :last-child {
        margin-bottom: 0 !important;
    }

    body.itemid-101
    #g-footer.redecomsa-footer {
        margin-top: 0 !important;
        border-top:
            4px solid
            var(--redecomsa-orange, #f04000);
    }
}

/* REDECOMSA-DESKTOP-NAV-FOOTER-2.5.0 END */

/* REDECOMSA-INTERIOR-2.9.0 START */

/* =====================================================
   CONTENEDOR GENERAL
   ===================================================== */

.rdc-interior {
    --rdc-interior-width: 76rem;
    --rdc-interior-radius: 1.35rem;
    --rdc-interior-shadow:
        0 1rem 2.6rem rgba(0, 35, 85, 0.11);

    box-sizing: border-box;
    width: min(
        calc(100% - 2rem),
        var(--rdc-interior-width)
    );
    max-width: var(--rdc-interior-width);
    margin: 0 auto 3rem;
    color: #17324f;
}

.rdc-interior *,
.rdc-interior *::before,
.rdc-interior *::after {
    box-sizing: border-box;
}

.rdc-interior h1,
.rdc-interior h2,
.rdc-interior h3,
.rdc-interior p {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.rdc-interior h1,
.rdc-interior h2,
.rdc-interior h3 {
    color: inherit;
}

.rdc-interior p {
    line-height: 1.7;
}

/* =====================================================
   OCULTAR ELEMENTOS NATIVOS DE JOOMLA
   ===================================================== */

body:has(#g-main .rdc-interior)
#g-main
.platform-content:has(.mod-breadcrumbs),
body:has(#g-main .rdc-interior)
#g-main
.platform-content:has(.breadcrumb),
body:has(#g-main .rdc-interior)
#g-main
.mod-breadcrumbs,
body:has(#g-main .rdc-interior)
#g-main
.breadcrumb,
body:has(#g-main .rdc-interior)
#g-main
.breadcrumbs {
    display: none !important;
}

body:has(#g-main .rdc-interior)
#g-main
.item-page
> .icons,
body:has(#g-main .rdc-interior)
#g-main
.item-page
> .article-info,
body:has(#g-main .rdc-interior)
#g-main
.item-page
> .pagenavigation {
    display: none !important;
}

body:has(#g-main .rdc-interior)
#g-main.redecomsa-main {
    padding-top: 0 !important;
}

body:has(#g-main .rdc-interior)
#g-main.redecomsa-main
.g-content,
body:has(#g-main .rdc-interior)
#g-main.redecomsa-main
.platform-content,
body:has(#g-main .rdc-interior)
#g-main.redecomsa-main
.item-page,
body:has(#g-main .rdc-interior)
#g-main.redecomsa-main
.com-content-article {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* =====================================================
   HERO INTERIOR
   ===================================================== */

.rdc-interior-hero {
    position: relative;
    padding:
        clamp(2.5rem, 5vw, 4.8rem)
        clamp(1.5rem, 5vw, 4.5rem);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(0, 144, 224, 0.34),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #001b48 0%,
            #003070 58%,
            #005aa0 100%
        );
    border-bottom:
        0.3rem solid
        var(--redecomsa-orange, #f04000);
    border-radius:
        var(--rdc-interior-radius)
        var(--rdc-interior-radius)
        0
        0;
    box-shadow: var(--rdc-interior-shadow);
    overflow: hidden;
}

.rdc-interior-hero::after {
    position: absolute;
    right: -5rem;
    bottom: -7rem;
    width: 16rem;
    height: 16rem;
    content: "";
    border:
        2.5rem solid
        rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.rdc-interior-eyebrow,
.rdc-interior-kicker {
    margin: 0 0 0.8rem;
    color:
        var(--redecomsa-amber, #ffa010);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rdc-interior-hero h1 {
    max-width: 52rem;
    margin: 0 0 1.15rem;
    color: #ffffff;
    font-size:
        clamp(
            2.25rem,
            5.4vw,
            4.7rem
        );
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.rdc-interior-lead {
    max-width: 58rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size:
        clamp(
            1rem,
            1.7vw,
            1.22rem
        );
    line-height: 1.75 !important;
}

/* =====================================================
   BOTONES
   ===================================================== */

.rdc-interior-actions {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.65rem;
}

.rdc-interior .rdc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.78rem 1.25rem;
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 0.75rem;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease,
        border-color 160ms ease;
}

.rdc-interior .rdc-button:hover,
.rdc-interior .rdc-button:focus-visible {
    transform: translateY(-2px);
}

.rdc-interior .rdc-button--primary {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--redecomsa-orange, #f04000),
            var(--redecomsa-orange-light, #ff6000)
        );
    border:
        1px solid
        rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0.65rem 1.3rem
        rgba(240, 64, 0, 0.25);
}

.rdc-interior .rdc-button--primary:hover,
.rdc-interior .rdc-button--primary:focus-visible {
    color: #ffffff !important;
    box-shadow:
        0 0.85rem 1.7rem
        rgba(240, 64, 0, 0.32);
}

.rdc-interior-hero
.rdc-button--secondary,
.rdc-interior-cta
.rdc-button--secondary {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07);
    border:
        1px solid
        rgba(255, 255, 255, 0.5);
}

.rdc-interior-hero
.rdc-button--secondary:hover,
.rdc-interior-hero
.rdc-button--secondary:focus-visible,
.rdc-interior-cta
.rdc-button--secondary:hover,
.rdc-interior-cta
.rdc-button--secondary:focus-visible {
    color: #003070 !important;
    background: #ffffff;
    border-color: #ffffff;
}

/* =====================================================
   SECCIONES
   ===================================================== */

.rdc-interior-section {
    padding:
        clamp(2.25rem, 4.5vw, 4.2rem)
        clamp(1.25rem, 4.5vw, 4rem);
    background: #ffffff;
    border-right:
        1px solid
        rgba(0, 48, 112, 0.08);
    border-left:
        1px solid
        rgba(0, 48, 112, 0.08);
}

.rdc-interior-section + .rdc-interior-section {
    border-top:
        1px solid
        rgba(0, 48, 112, 0.08);
}

.rdc-about-intro {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    align-items: start;
    gap:
        clamp(1.5rem, 4vw, 4rem);
}

.rdc-interior-heading h2 {
    margin: 0;
    color: #003070;
    font-size:
        clamp(
            1.7rem,
            3.2vw,
            2.65rem
        );
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.rdc-interior-copy p {
    margin: 0;
    color: #425d78;
    font-size: 1.02rem;
}

.rdc-interior-copy p + p {
    margin-top: 1rem;
}

.rdc-about-model {
    background:
        linear-gradient(
            180deg,
            #f5f9fd 0%,
            #edf5fc 100%
        );
}

.rdc-about-model
.rdc-interior-heading,
.rdc-about-services
.rdc-interior-heading {
    max-width: 50rem;
    margin-bottom: 2rem;
}

/* =====================================================
   TARJETAS DEL PROCESO
   ===================================================== */

.rdc-process-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rdc-process-card {
    position: relative;
    min-width: 0;
    padding: 1.55rem;
    background: #ffffff;
    border:
        1px solid
        rgba(0, 80, 160, 0.11);
    border-radius: 1rem;
    box-shadow:
        0 0.75rem 1.8rem
        rgba(0, 48, 112, 0.07);
}

.rdc-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #003070,
            #0080d0
        );
    font-size: 0.78rem;
    font-weight: 900;
    border-radius: 50%;
}

.rdc-process-card h3 {
    margin: 0 0 0.65rem;
    color: #003070;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
}

.rdc-process-card p {
    margin: 0;
    color: #526b82;
    font-size: 0.94rem;
}

/* =====================================================
   TARJETAS DE SERVICIOS
   ===================================================== */

.rdc-feature-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.rdc-feature-card {
    position: relative;
    min-width: 0;
    padding: 1.45rem 1.45rem 1.45rem 1.75rem;
    background: #ffffff;
    border:
        1px solid
        rgba(0, 48, 112, 0.1);
    border-radius: 0.95rem;
    box-shadow:
        0 0.65rem 1.5rem
        rgba(0, 48, 112, 0.055);
    overflow: hidden;
}

.rdc-feature-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.32rem;
    content: "";
    background:
        linear-gradient(
            180deg,
            var(--redecomsa-orange, #f04000),
            var(--redecomsa-amber, #ffa010)
        );
}

.rdc-feature-card h3 {
    margin: 0 0 0.55rem;
    color: #003070;
    font-size: 1.08rem;
    font-weight: 800;
}

.rdc-feature-card p {
    margin: 0;
    color: #526b82;
    font-size: 0.95rem;
}

/* =====================================================
   NOTA INFORMATIVA
   ===================================================== */

.rdc-information-note {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(0, 1.12fr);
    align-items: center;
    gap:
        clamp(1.5rem, 4vw, 3.5rem);
    background:
        linear-gradient(
            135deg,
            #fff8f4 0%,
            #f4f9fd 100%
        );
    border-left:
        0.35rem solid
        var(--redecomsa-orange, #f04000);
}

.rdc-information-note h2 {
    margin: 0;
    color: #003070;
    font-size:
        clamp(
            1.55rem,
            2.7vw,
            2.25rem
        );
    line-height: 1.16;
}

.rdc-information-note > p {
    margin: 0;
    color: #425d78;
}

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

.rdc-interior-cta {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(15rem, 0.75fr);
    align-items: center;
    gap: 2rem;
    padding:
        clamp(2.25rem, 4.5vw, 4rem)
        clamp(1.25rem, 4.5vw, 4rem);
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #001b48,
            #003070 62%,
            #0063a8
        );
    border-top:
        0.3rem solid
        var(--redecomsa-orange, #f04000);
    border-radius:
        0
        0
        var(--rdc-interior-radius)
        var(--rdc-interior-radius);
    box-shadow: var(--rdc-interior-shadow);
}

.rdc-interior-cta h2 {
    margin: 0 0 0.75rem;
    color: #ffffff;
    font-size:
        clamp(
            1.65rem,
            3vw,
            2.55rem
        );
    font-weight: 800;
    line-height: 1.12;
}

.rdc-interior-cta p {
    max-width: 45rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.rdc-interior-cta
.rdc-interior-actions {
    justify-content: flex-end;
    margin-top: 0;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 64rem) {
    .rdc-about-intro,
    .rdc-information-note,
    .rdc-interior-cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .rdc-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rdc-interior-cta
    .rdc-interior-actions {
        justify-content: flex-start;
    }
}

/* =====================================================
   CELULAR: ANCHO COMPLETO Y PADDING INTERNO
   ===================================================== */

@media (max-width: 47.99rem) {
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main {
        width: 100% !important;
        margin: 0 !important;
        padding-top: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .g-container,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .g-grid,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .g-block,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .g-content,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .platform-content,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .item-page,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .com-content-article,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .row {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .row > .col,
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .row > [class^="col-"],
    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .row > [class*=" col-"] {
        box-sizing: border-box;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .rdc-interior {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .rdc-interior-hero {
        padding: 1.65rem 1rem 1.85rem;
        border-radius: 0;
        box-shadow: none;
    }

    .rdc-interior-hero::after {
        right: -8rem;
        bottom: -9rem;
    }

    .rdc-interior-hero h1 {
        font-size:
            clamp(
                2rem,
                11vw,
                2.8rem
            );
    }

    .rdc-interior-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .rdc-interior .rdc-button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .rdc-interior-section {
        padding: 2.2rem 1rem;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .rdc-about-intro,
    .rdc-information-note,
    .rdc-interior-cta,
    .rdc-process-grid,
    .rdc-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rdc-process-grid,
    .rdc-feature-grid {
        gap: 0.8rem;
    }

    .rdc-process-card,
    .rdc-feature-card {
        padding: 1.25rem;
    }

    .rdc-feature-card {
        padding-left: 1.55rem;
    }

    .rdc-information-note {
        border-left: 0;
        border-top:
            0.3rem solid
            var(--redecomsa-orange, #f04000);
    }

    .rdc-interior-cta {
        padding: 2.25rem 1rem 2.5rem;
        border-radius: 0;
        box-shadow: none;
    }

    body:has(#g-main .rdc-interior)
    #g-footer.redecomsa-footer {
        margin-top: 0 !important;
    }
}

/* REDECOMSA-INTERIOR-2.9.0 END */

/* REDECOMSA-INTERIOR-CONTINUITY-2.7.0 START */

/*
 * Regla permanente para páginas interiores REDECOMSA:
 * - línea naranja continua bajo el encabezado;
 * - línea naranja continua sobre el footer;
 * - breadcrumbs sin ocupar espacio;
 * - sin rellenos residuales al inicio o al final.
 */

@media (max-width: 64rem) {

    body:has(#g-main .rdc-interior)
    #g-header.redecomsa-header {
        margin-bottom: 0 !important;
        border-bottom:
            4px solid
            var(
                --redecomsa-orange,
                #f04000
            ) !important;
    }

    /*
     * La línea queda a cargo del encabezado completo.
     * Se evitan bordes parciales en partículas interiores.
     */

    body:has(#g-main .rdc-interior)
    #g-header.redecomsa-header
    .g-main-nav,

    body:has(#g-main .rdc-interior)
    #g-header.redecomsa-header
    .g-main-nav-container,

    body:has(#g-main .rdc-interior)
    #g-header.redecomsa-header
    nav {
        margin-bottom: 0 !important;
        border-bottom: 0 !important;
    }

    /*
     * El primer grid de la estructura actual contiene
     * "Está aquí..." y mide 22 px.
     *
     * El selector estructural solamente se activa cuando
     * el tercer grid contiene una página .rdc-interior.
     */

    body:has(
        #g-main.redecomsa-main
        > .g-container
        > .g-grid:nth-child(3)
        .rdc-interior
    )
    #g-main.redecomsa-main
    > .g-container
    > .g-grid:first-child {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    /*
     * Respaldo semántico para otras páginas interiores
     * donde el módulo conserve clases de breadcrumbs.
     */

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    > .g-container
    > .g-grid:has(
        .mod-breadcrumbs,
        .breadcrumb,
        .breadcrumbs,
        [class*="breadcrumb"],
        nav[aria-label*="breadcrumb" i]
    ) {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    > .g-container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .g-content {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-main.redecomsa-main
    .rdc-interior {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    body:has(#g-main .rdc-interior)
    #g-footer.redecomsa-footer {
        margin-top: 0 !important;
        border-top:
            4px solid
            var(
                --redecomsa-orange,
                #f04000
            ) !important;
    }
}

/* REDECOMSA-INTERIOR-CONTINUITY-2.7.0 END */

/* REDECOMSA-HEADER-TOOLS-3.0.2 START */

/*
 * Encabezado REDECOMSA:
 *
 * Fila blanca:
 * - logotipo centrado;
 * - barra de accesos rápidos a la derecha.
 *
 * Fila azul:
 * - navegación principal al 100 %;
 * - línea naranja continua.
 *
 * La posición header-access podrá recibir posteriormente
 * módulos para correo y redes sociales.
 */

#position-header-access-particle,
.header-access.moduletable,
.header-access .platform-content,
.header-access .rdc-account-access-wrap {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.rdc-account-access-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/*
 * Apariencia inspirada en la referencia compartida:
 * botón compacto, cuadrado y con esquinas suaves.
 */

.rdc-account-access {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin: 0;
    padding: 0;
    color: #ffffff !important;
    text-decoration: none !important;
    background:
        linear-gradient(
            145deg,
            #ff6000,
            #f04000
        );
    border:
        1px solid
        rgba(180, 42, 0, 0.28);
    border-radius: 0.38rem;
    box-shadow:
        0 0.18rem 0.5rem
        rgba(0, 35, 85, 0.18);
    transition:
        background 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.rdc-account-access .fa {
    display: block;
    margin: 0;
    padding: 0;
    color: inherit !important;
    font-size: 1.08rem;
    line-height: 1;
}

.rdc-account-access:hover,
.rdc-account-access:focus-visible {
    color: #ffffff !important;
    text-decoration: none !important;
    background:
        linear-gradient(
            145deg,
            #003070,
            #0080d0
        );
    box-shadow:
        0 0.25rem 0.7rem
        rgba(0, 48, 112, 0.25);
    transform: translateY(-1px);
}

.rdc-account-access:focus-visible {
    outline:
        3px solid
        rgba(255, 160, 16, 0.42);
    outline-offset: 2px;
}

.rdc-account-access-wrap.is-authenticated
.rdc-account-access {
    background:
        linear-gradient(
            145deg,
            #0080d0,
            #003070
        );
}

/*
 * Estructura común del encabezado.
 */

#g-header.redecomsa-header
> .g-container {
    position: relative;
}

#g-header.redecomsa-header
> .g-container
> .g-grid:first-child {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    background: #ffffff;
}

#g-header.redecomsa-header
> .g-container
> .g-grid:first-child
> .g-block:first-child {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

/*
 * Se neutralizan las antiguas reglas que interpretaban
 * al segundo bloque como la navegación azul.
 */

#g-header.redecomsa-header
> .g-container
> .g-grid:first-child
> .g-block:nth-child(2) {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    z-index: 1100;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: translateY(-50%);
}

#g-header.redecomsa-header
> .g-container
> .g-grid:first-child
> .g-block:nth-child(2)
> .g-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.42rem;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/*
 * Segunda fila: menú principal.
 */

#g-header.redecomsa-header
> .g-container
> .g-grid:nth-child(2) {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(
            90deg,
            #001b48 0%,
            #003070 50%,
            #0080d0 100%
        );
    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);
    border-bottom:
        3px solid
        var(
            --redecomsa-orange,
            #f04000
        );
}

#g-header.redecomsa-header
> .g-container
> .g-grid:nth-child(2)
> .g-block {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

#g-header.redecomsa-header
> .g-container
> .g-grid:nth-child(2)
> .g-block
> .g-content {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/*
 * Garantía para conservar el diseño de navegación.
 */

@media (min-width: 64.01rem) {

    #g-header.redecomsa-header
    > .g-container
    > .g-grid:nth-child(2)
    .g-main-nav {
        display: block;
        width: 100%;
    }

    #g-header.redecomsa-header
    > .g-container
    > .g-grid:nth-child(2)
    .g-main-nav
    .g-toplevel {
        display: grid;
        grid-template-columns:
            0.72fr
            1.02fr
            0.74fr
            1.30fr
            0.72fr
            1.28fr
            1.05fr
            0.72fr;
        align-items: stretch;
        width: 100%;
        margin: 0;
        padding: 0;
        background: transparent !important;
    }
}

/*
 * Tableta y celular.
 *
 * El botón hamburguesa continúa del lado izquierdo
 * y la barra de accesos permanece del lado derecho.
 */

@media (max-width: 64rem) {

    #g-header.redecomsa-header
    > .g-container
    > .g-grid:first-child
    > .g-block:nth-child(2) {
        display: block !important;
        visibility: visible !important;
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        right: 0.8rem;
        z-index: 1200;
    }

    #g-header.redecomsa-header
    > .g-container
    > .g-grid:first-child
    > .g-block:first-child
    .g-content {
        padding-right: 3.8rem !important;
        padding-left: 3.8rem !important;
    }

    .rdc-account-access {
        width: 2.3rem;
        height: 2.3rem;
    }

    .rdc-account-access .fa {
        font-size: 1.02rem;
    }
}

@media (max-width: 47.99rem) {

    #g-header.redecomsa-header
    > .g-container
    > .g-grid:first-child
    .redecomsa-logo img {
        width: min(100%, 17.5rem) !important;
        min-width: 0 !important;
        max-width: 17.5rem !important;
        height: auto !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rdc-account-access {
        transition: none;
    }
}

/* REDECOMSA-HEADER-TOOLS-3.0.2 END */

/* REDECOMSA-LOGIN-3.1.1 START */

/*
 * Página pública de acceso a la gestión de catálogos.
 * Limitada estrictamente al Itemid 114.
 */

body.itemid-114 #g-main.redecomsa-main {
    box-sizing: border-box;
    margin: 0;
    padding:
        clamp(1.25rem, 2.5vw, 2rem)
        1rem
        clamp(2rem, 4vw, 3rem);
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(0, 144, 224, 0.18),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #001b48 0%,
            #003070 56%,
            #006ab5 100%
        );
}

/*
 * Estructura específica de la ruta de acceso:
 * - oculta breadcrumbs;
 * - colapsa mensajes cuando no existen;
 * - conserva mensajes de validación cuando aparecen.
 */

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid:has(.mod-breadcrumbs) {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid:has(#system-message-container:empty) {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid
> .g-block {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid
> .g-block
> .g-content {
    margin: 0 !important;
    padding: 0 !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container
> .g-grid:has(
    #system-message-container:not(:empty)
) {
    margin-bottom: 1rem !important;
}

body.itemid-114
#g-main.redecomsa-main
> .g-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 0;
}

body.itemid-114
#g-main.redecomsa-main
.g-grid,
body.itemid-114
#g-main.redecomsa-main
.g-block,
body.itemid-114
#g-main.redecomsa-main
.g-content,
body.itemid-114
#g-main.redecomsa-main
.platform-content,
body.itemid-114
#g-main.redecomsa-main
.container,
body.itemid-114
#g-main.redecomsa-main
.row,
body.itemid-114
#g-main.redecomsa-main
.col {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}

body.itemid-114
#g-main.redecomsa-main
.g-content {
    padding-right: 0;
    padding-left: 0;
}

body.itemid-114
.com-users-login.login {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding:
        clamp(1.6rem, 4vw, 2.75rem);
    overflow: hidden;
    color: #182b42;
    background: #ffffff;
    border:
        1px solid
        rgba(0, 48, 112, 0.14);
    border-top:
        0.38rem solid
        var(
            --redecomsa-orange,
            #f04000
        );
    border-radius: 1rem;
    box-shadow:
        0 1.4rem 3.5rem
        rgba(0, 20, 55, 0.28);
}

body.itemid-114
.com-users-login.login::before {
    position: absolute;
    top: -4.5rem;
    right: -4.5rem;
    width: 10rem;
    height: 10rem;
    content: "";
    background:
        radial-gradient(
            circle,
            rgba(0, 128, 208, 0.18),
            transparent 68%
        );
    border-radius: 50%;
    pointer-events: none;
}

body.itemid-114
.com-users-login
.page-header {
    position: relative;
    margin: 0 0 0.8rem;
    padding: 0;
    border: 0;
}

body.itemid-114
.com-users-login
.page-header h1 {
    margin: 0;
    color:
        var(
            --redecomsa-navy,
            #003070
        );
    font-size:
        clamp(
            1.75rem,
            5vw,
            2.35rem
        );
    font-weight: 800;
    line-height: 1.12;
}

body.itemid-114
.com-users-login
.page-header::after {
    display: block;
    width: 3.5rem;
    height: 0.24rem;
    margin-top: 0.8rem;
    content: "";
    background:
        var(
            --redecomsa-orange,
            #f04000
        );
    border-radius: 999px;
}

body.itemid-114
.com-users-login
form {
    position: relative;
    margin: 1.6rem 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.itemid-114
.com-users-login
fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

body.itemid-114
.com-users-login
.control-group {
    margin: 0 0 1.05rem;
}

body.itemid-114
.com-users-login
.control-label {
    margin-bottom: 0.38rem;
}

body.itemid-114
.com-users-login
label {
    color: #183554;
    font-size: 0.92rem;
    font-weight: 700;
}

body.itemid-114
.com-users-login
.form-control {
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    padding: 0.72rem 0.85rem;
    color: #132c49;
    background: #f8fbff;
    border:
        1px solid
        rgba(0, 48, 112, 0.24);
    border-radius: 0.52rem;
    box-shadow: none;
}

body.itemid-114
.com-users-login
.form-control:focus {
    background: #ffffff;
    border-color:
        var(
            --redecomsa-blue,
            #0080d0
        );
    box-shadow:
        0 0 0 0.2rem
        rgba(0, 128, 208, 0.14);
    outline: 0;
}

body.itemid-114
.com-users-login
.password-group {
    display: flex;
    width: 100%;
}

body.itemid-114
.com-users-login
.password-group
.form-control {
    border-radius:
        0.52rem 0 0 0.52rem;
}

body.itemid-114
.com-users-login
.password-group
button {
    min-width: 3rem;
    color: #ffffff;
    background:
        var(
            --redecomsa-blue,
            #0080d0
        );
    border-color:
        var(
            --redecomsa-blue,
            #0080d0
        );
    border-radius:
        0 0.52rem 0.52rem 0;
}

body.itemid-114
.com-users-login
.com-users-login__remember {
    margin:
        0.35rem 0 1.15rem;
}

body.itemid-114
.com-users-login
.com-users-login__submit {
    margin-bottom: 0.7rem;
}

body.itemid-114
.com-users-login
.com-users-login__submit
.btn {
    box-sizing: border-box;
    width: 100%;
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-weight: 750;
    border-radius: 0.55rem;
}

body.itemid-114
.com-users-login
.btn-primary {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #ff6000,
            #f04000
        );
    border-color: #e13b00;
}

body.itemid-114
.com-users-login
.btn-primary:hover,
body.itemid-114
.com-users-login
.btn-primary:focus {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #003070,
            #0080d0
        );
    border-color: #003070;
}

body.itemid-114
.com-users-login
.btn-secondary {
    color: #003070;
    background: #eef6fc;
    border-color:
        rgba(0, 48, 112, 0.2);
}

body.itemid-114
.com-users-login
.com-users-login__options {
    margin-top: 1.35rem;
    overflow: hidden;
    border:
        1px solid
        rgba(0, 48, 112, 0.12);
    border-radius: 0.55rem;
}

body.itemid-114
.com-users-login
.com-users-login__options
.list-group-item {
    padding: 0.78rem 0.9rem;
    color: #005fa3;
    background: #f8fbff;
    border-color:
        rgba(0, 48, 112, 0.1);
    font-size: 0.9rem;
    font-weight: 650;
}

body.itemid-114
.com-users-login
.com-users-login__options
.list-group-item:hover,
body.itemid-114
.com-users-login
.com-users-login__options
.list-group-item:focus {
    color: #ffffff;
    background: #003070;
}

@media (max-width: 47.99rem) {
    body.itemid-114 #g-main.redecomsa-main {
        padding:
            2rem 0.75rem;
    }

    body.itemid-114
    .com-users-login.login {
        padding:
            1.5rem 1rem;
        border-radius: 0.72rem;
    }
}

/* REDECOMSA-LOGIN-3.1.1 END */

/* REDECOMSA-GLOBAL-NAV-COMPACT-1.3.0 START */

/*
 * Selector real confirmado mediante consola:
 *
 * #g-header
 *   .g-main-nav
 *   .g-toplevel
 *   > li
 *   > .g-menu-item-container
 *
 * Resultado:
 * - altura aproximada de 38.4 px;
 * - texto centrado;
 * - sin alterar el logotipo;
 * - sin alterar la distancia menú → hero;
 * - sin modificar el menú móvil.
 */
@media (min-width: 60rem) {
    #g-header.redecomsa-header
    .g-main-nav {
        min-height: 0 !important;
        height: auto !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel {
        min-height: 0 !important;
        height: auto !important;
        align-items: stretch !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li {
        min-height: 0 !important;
        height: auto !important;
        align-items: stretch !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        min-height: 2.4rem !important;
        height: 2.4rem !important;

        padding-top: 0 !important;
        padding-bottom: 0 !important;

        line-height: 1.1 !important;
        box-sizing: border-box !important;
    }

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container
    .g-menu-item-content,
    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container
    .g-menu-item-title {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        line-height: 1.1 !important;
        text-align: center !important;
    }
}

/* REDECOMSA-GLOBAL-NAV-COMPACT-1.3.0 END */

/* REDECOMSA-GLOBAL-HERO-SPACING-1.2.0 START */

/*
 * Ajuste basado en la última auditoría real:
 *
 * Escritorio:
 * - Cobertura: 35 px, correcto.
 * - Representa tu marca y Contacto: 47 px.
 *   Se reducen 12 px para llegar a 35 px.
 *
 * Móvil 390 px:
 * - Cobertura, Quiénes somos y Servicios: 165 px.
 *   Se agregan 18 px para llegar a 183 px.
 * - Representa tu marca y Contacto: 195 px.
 *   Se reducen 12 px para llegar a 183 px.
 *
 * Los breadcrumbs ya están en 0 y se conserva su ocultamiento.
 */

/* ==================================================
 * COBERTURA Y VENDEDORES — Itemid 109
 * ================================================== */

body.itemid-109
#g-main {
    padding-top: 0 !important;
}

body.itemid-109
.rdc-coverage-public {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ==================================================
 * REPRESENTA TU MARCA — Itemid 110
 * CONTACTO — Itemid 111
 * ================================================== */

body.itemid-110
#g-main,
body.itemid-111
#g-main {
    padding-top: 0 !important;
}

body.itemid-110 .g-breadcrumbs,
body.itemid-110 .mod-breadcrumbs,
body.itemid-110 .breadcrumb,
body.itemid-110 .breadcrumbs,
body.itemid-110
.platform-content:has(.mod-breadcrumbs),
body.itemid-110
.moduletable:has(.mod-breadcrumbs),
body.itemid-110
.g-grid:has(.mod-breadcrumbs),
body.itemid-110
nav[aria-label="Breadcrumbs"],
body.itemid-110
nav[aria-label="breadcrumb"],
body.itemid-111 .g-breadcrumbs,
body.itemid-111 .mod-breadcrumbs,
body.itemid-111 .breadcrumb,
body.itemid-111 .breadcrumbs,
body.itemid-111
.platform-content:has(.mod-breadcrumbs),
body.itemid-111
.moduletable:has(.mod-breadcrumbs),
body.itemid-111
.g-grid:has(.mod-breadcrumbs),
body.itemid-111
nav[aria-label="Breadcrumbs"],
body.itemid-111
nav[aria-label="breadcrumb"] {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/*
 * La auditoría mide 47 px en escritorio y 195 px en móvil.
 * El desplazamiento directo del artículo elimina los 12 px
 * residuales sin alterar el padding interno del contenido.
 */
body.itemid-110
.com-content-article.item-page,
body.itemid-111
.com-content-article.item-page {
    margin-top: -0.75rem !important;
}

/* ==================================================
 * AJUSTES MÓVILES
 * ================================================== */

@media (max-width: 59.99rem) {

    /*
     * Cobertura:
     * 165 px + 18 px = 183 px.
     */
    body.itemid-109
    .rdc-coverage-public {
        margin-top: 1.125rem !important;
    }

    /*
     * ¿Quiénes somos? — Itemid 105
     * Servicios — Itemid 106
     *
     * 165 px + 18 px = 183 px.
     */
    body.itemid-105
    .com-content-article.item-page,
    body.itemid-106
    .com-content-article.item-page {
        margin-top: 1.125rem !important;
    }

    /*
     * Representa tu marca y Contacto conservan el ajuste
     * universal de -12 px:
     * 195 px - 12 px = 183 px.
     */
}

/* REDECOMSA-GLOBAL-HERO-SPACING-1.2.0 END */

/* REDECOMSA-CONSULTORIA-CAPACITACION-1.0.0 START */

/* =====================================================
   INICIO: CONSULTORÍA Y CAPACITACIÓN
   ===================================================== */

.rdc-home-solutions {
    background:
        linear-gradient(
            135deg,
            #f4f9fd 0%,
            #fff8f4 100%
        );
}

.rdc-home-solutions
.rdc-section-heading {
    max-width: 52rem;
}

.rdc-home-solutions-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.rdc-home-solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding:
        1.5rem
        1.5rem
        1.5rem
        1.8rem;
    background: #ffffff;
    border:
        1px solid
        rgba(0, 48, 112, 0.1);
    border-radius: 1rem;
    box-shadow:
        0 0.75rem 1.8rem
        rgba(0, 48, 112, 0.07);
    overflow: hidden;
}

.rdc-home-solution-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.34rem;
    content: "";
    background:
        linear-gradient(
            180deg,
            var(--redecomsa-orange, #f04000),
            var(--redecomsa-amber, #ffa010)
        );
}

.rdc-home-solution-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 1rem;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #003070,
            #0080d0
        );
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 50%;
}

.rdc-home-solution-card h3 {
    margin: 0 0 0.65rem;
    color: #003070;
    font-size:
        clamp(
            1.15rem,
            2vw,
            1.4rem
        );
    font-weight: 800;
    line-height: 1.25;
}

.rdc-home-solution-card p {
    margin: 0 0 1rem;
    color: #526b82;
}

.rdc-home-solution-card
.rdc-text-link {
    margin-top: auto;
    font-weight: 800;
}

.rdc-home-solutions-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.4rem;
}

/* =====================================================
   SERVICIOS: TRES LÍNEAS PRINCIPALES
   ===================================================== */

.rdc-service-lines
.rdc-feature-grid {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

.rdc-service-line-card {
    display: flex;
    flex-direction: column;
    scroll-margin-top: 8rem;
}

.rdc-service-line-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 1rem;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #003070,
            #0080d0
        );
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 50%;
}

.rdc-service-line-card
.rdc-service-list {
    margin-top: 1rem;
}

.rdc-service-line-link {
    display: inline-flex;
    margin-top: auto;
    padding-top: 1.15rem;
    color: #005aa8;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.rdc-service-line-link:hover,
.rdc-service-line-link:focus-visible {
    color:
        var(
            --redecomsa-orange,
            #f04000
        );
    text-decoration: underline;
}

/* =====================================================
   SERVICIOS: BLOQUES AMPLIADOS
   ===================================================== */

.rdc-service-detail-section {
    background:
        linear-gradient(
            135deg,
            #f4f9fd 0%,
            #ffffff 55%,
            #fff8f4 100%
        );
}

.rdc-service-detail-section
.rdc-interior-heading {
    max-width: 55rem;
    margin-bottom: 2rem;
}

.rdc-service-detail-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.rdc-service-detail-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding:
        clamp(
            1.4rem,
            3vw,
            2rem
        );
    background: #ffffff;
    border:
        1px solid
        rgba(0, 48, 112, 0.11);
    border-top:
        0.32rem solid
        var(--redecomsa-orange, #f04000);
    border-radius: 1rem;
    box-shadow:
        0 0.8rem 2rem
        rgba(0, 48, 112, 0.075);
    scroll-margin-top: 8rem;
}

.rdc-service-detail-label {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.85rem;
    padding: 0.36rem 0.65rem;
    color: #003070;
    background: #eaf5fd;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    border-radius: 999px;
}

.rdc-service-detail-card h3 {
    margin: 0 0 0.85rem;
    color: #003070;
    font-size:
        clamp(
            1.3rem,
            2.3vw,
            1.75rem
        );
    font-weight: 800;
    line-height: 1.2;
}

.rdc-service-detail-card h4 {
    margin: 1.15rem 0 0.4rem;
    color: #003070;
    font-size: 1rem;
    font-weight: 800;
}

.rdc-service-detail-card > p {
    color: #526b82;
}

.rdc-service-list {
    margin:
        0.4rem
        0
        1rem;
    padding-left: 1.2rem;
    color: #425d78;
}

.rdc-service-list li {
    margin-bottom: 0.45rem;
    padding-left: 0.15rem;
}

.rdc-service-list li::marker {
    color:
        var(
            --redecomsa-orange,
            #f04000
        );
}

.rdc-service-detail-note {
    margin-top: auto;
    padding:
        0.85rem
        1rem;
    background: #f4f9fd;
    border-left:
        0.24rem solid
        #0080d0;
    border-radius: 0.4rem;
    font-size: 0.9rem;
}

.rdc-service-detail-card
.rdc-button {
    align-self: flex-start;
    margin-top: 1rem;
}

/* =====================================================
   TABLETA
   ===================================================== */

@media (max-width: 64rem) {
    .rdc-service-lines
    .rdc-feature-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .rdc-service-detail-grid {
        grid-template-columns:
            minmax(0, 1fr);
    }
}

/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 47.99rem) {
    .rdc-home-solutions-grid,
    .rdc-service-lines
    .rdc-feature-grid,
    .rdc-service-detail-grid {
        grid-template-columns:
            minmax(0, 1fr);
    }

    .rdc-home-solutions-grid,
    .rdc-service-detail-grid {
        gap: 0.8rem;
    }

    .rdc-home-solution-card,
    .rdc-service-detail-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 1.25rem;
    }

    .rdc-home-solution-card {
        padding-left: 1.55rem;
    }

    .rdc-home-solutions-actions {
        display: grid;
        grid-template-columns:
            minmax(0, 1fr);
    }

    .rdc-home-solutions-actions
    .rdc-button,
    .rdc-service-detail-card
    .rdc-button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .rdc-service-line-card,
    .rdc-service-detail-card {
        scroll-margin-top: 6.5rem;
    }
}

/* REDECOMSA-CONSULTORIA-CAPACITACION-1.0.0 END */

/* REDECOMSA-HOME-SOLUTIONS-GAP-1.0.0 START */

/*
 * Transición entre:
 * - Nuestra propuesta de valor.
 * - Más que representación comercial.
 *
 * Diagnóstico confirmado en consola:
 * - margin entre contenedores: 0 px;
 * - padding inferior anterior: 74.76 px;
 * - padding superior siguiente: 74.76 px;
 * - separación visual total: 150 px.
 *
 * Resultado objetivo en tableta y escritorio:
 * - 32 px + 32 px = 64 px.
 */

@media (min-width: 48rem) {
    .redecomsa-home
    > section[aria-labelledby="rdc-value-title"] {
        padding-bottom: 2rem;
    }

    .redecomsa-home
    > .rdc-home-solutions {
        padding-top: 2rem;
    }
}

/* REDECOMSA-HOME-SOLUTIONS-GAP-1.0.0 END */

/* REDECOMSA-HOME-CLIENT-V1-1.0.0 START */

.rdc-home-client-v1 {
    --rdc-home-navy: #002359;
    --rdc-home-blue: #014b8d;
    --rdc-home-blue-deep: #013877;
    --rdc-home-orange: #f2a11b;
    --rdc-home-ink: #17283b;
    --rdc-home-muted: #5e6e7e;
    --rdc-home-soft: #eef3f8;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    box-sizing: border-box;
}

.rdc-home-client-v1 *,
.rdc-home-client-v1 *::before,
.rdc-home-client-v1 *::after {
    box-sizing: border-box;
}


/* LOGOTIPO
------------------------------------------------------ */

.rdc-home-client-v1__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .35rem 0 1.25rem;
}

.rdc-home-client-v1__logo {
    display: block;
    width: min(340px, 82vw);
    height: auto;
    padding: .65rem 1rem;
    background: #fff;
    border: 1px solid rgba(0, 35, 89, .12);
    border-radius: 16px;
    box-shadow:
        0 14px 35px rgba(0, 35, 89, .12),
        0 3px 8px rgba(0, 35, 89, .08);
}


/* HERO
------------------------------------------------------ */

.rdc-home-client-v1__hero {
    position: relative;
    overflow: hidden;

    padding: clamp(2rem, 4vw, 3.4rem);

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(255,255,255,.12) 0,
            rgba(255,255,255,0) 30%
        ),
        linear-gradient(
            135deg,
            var(--rdc-home-navy) 0%,
            var(--rdc-home-blue-deep) 56%,
            var(--rdc-home-blue) 100%
        );

    border-radius: 24px;

    box-shadow:
        0 20px 45px rgba(0, 35, 89, .18);

    color: #fff;
}

.rdc-home-client-v1__hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -140px;

    border: 45px solid rgba(242, 161, 27, .12);
    border-radius: 50%;

    pointer-events: none;
}

.rdc-home-client-v1__hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .75fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}


/* SLOGAN
------------------------------------------------------ */

.rdc-home-client-v1__slogan {
    max-width: 760px;
    margin: 0 0 1.75rem;

    font-size: clamp(2rem, 4.3vw, 3.55rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    font-weight: 700;

    color: #fff;
}

.rdc-home-client-v1__slogan span,
.rdc-home-client-v1__slogan strong {
    display: block;
}

.rdc-home-client-v1__slogan strong {
    margin-top: .2rem;
    color: var(--rdc-home-orange);
    font-weight: 800;
}


/* QUIÉNES SOMOS
------------------------------------------------------ */

.rdc-home-client-v1__about {
    max-width: 760px;
    padding: .15rem 0 .15rem 1.15rem;

    border-left: 4px solid var(--rdc-home-orange);
}

.rdc-home-client-v1__label {
    margin-bottom: .55rem;

    color: var(--rdc-home-orange);

    font-size: .78rem;
    line-height: 1;
    letter-spacing: .15em;
    font-weight: 800;
}

.rdc-home-client-v1__about p {
    margin: 0;

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

    font-size: clamp(1rem, 1.55vw, 1.14rem);
    line-height: 1.7;
}


/* EXPERIENCIA
------------------------------------------------------ */

.rdc-home-client-v1__experience {
    display: inline-block;
    max-width: 700px;

    margin-top: 1.5rem;
    padding: .85rem 1rem;

    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;

    color: #fff;

    font-size: clamp(.98rem, 1.4vw, 1.08rem);
    line-height: 1.5;
    font-weight: 750;
    font-style: italic;
}


/* TARJETAS DE SERVICIOS
------------------------------------------------------ */

.rdc-home-client-v1__services {
    display: grid;
    gap: .85rem;
}

.rdc-home-client-v1__service {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .85rem;
    align-items: center;

    padding: 1rem;

    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;

    backdrop-filter: blur(4px);

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

.rdc-home-client-v1__service:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.15);
    border-color: rgba(242,161,27,.55);
}

.rdc-home-client-v1__service-number {
    display: flex;
    width: 40px;
    height: 40px;

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

    background: var(--rdc-home-orange);
    border-radius: 50%;

    color: var(--rdc-home-navy);

    font-size: .78rem;
    line-height: 1;
    font-weight: 900;
}

.rdc-home-client-v1__service strong {
    display: block;

    margin-bottom: .25rem;

    color: #fff;

    font-size: 1rem;
    line-height: 1.25;
}

.rdc-home-client-v1__service p {
    margin: 0;

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

    font-size: .85rem;
    line-height: 1.4;
}


/* CTA
------------------------------------------------------ */

.rdc-home-client-v1__cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;

    margin-top: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);

    background:
        linear-gradient(
            110deg,
            #eef3f8 0%,
            #f8fafc 56%,
            #e7eef6 100%
        );

    border: 1px solid rgba(0,35,89,.09);
    border-top: 4px solid var(--rdc-home-orange);
    border-radius: 20px;

    box-shadow: 0 12px 28px rgba(0,35,89,.08);
}

.rdc-home-client-v1__cta-label {
    display: block;

    margin-bottom: .4rem;

    color: var(--rdc-home-blue);

    font-size: .76rem;
    line-height: 1;
    letter-spacing: .14em;
    font-weight: 800;
    text-transform: uppercase;
}

.rdc-home-client-v1__cta h2 {
    margin: 0;

    color: var(--rdc-home-navy);

    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -.02em;
}

.rdc-home-client-v1__cta p {
    margin: .35rem 0 0;

    color: var(--rdc-home-muted);

    font-size: 1rem;
    line-height: 1.5;
}

.rdc-home-client-v1__button {
    display: inline-flex;

    min-height: 48px;
    padding: .75rem 1.4rem;

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

    background: var(--rdc-home-navy);
    border: 2px solid var(--rdc-home-navy);
    border-radius: 999px;

    color: #fff !important;

    font-size: .92rem;
    line-height: 1.2;
    font-weight: 750;
    text-decoration: none !important;

    box-shadow: 0 8px 18px rgba(0,35,89,.16);

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

.rdc-home-client-v1__button:hover,
.rdc-home-client-v1__button:focus {
    transform: translateY(-2px);

    background: var(--rdc-home-orange);
    border-color: var(--rdc-home-orange);

    color: var(--rdc-home-navy) !important;
}


/* TABLETA
------------------------------------------------------ */

@media (max-width: 900px) {

    .rdc-home-client-v1__hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rdc-home-client-v1__services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .rdc-home-client-v1__service {
        grid-template-columns: 1fr;
        align-content: start;
    }

}


/* CELULAR
------------------------------------------------------ */

@media (max-width: 640px) {

    .rdc-home-client-v1 {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .rdc-home-client-v1__brand {
        padding-bottom: 1rem;
    }

    .rdc-home-client-v1__logo {
        width: min(270px, 82vw);
        padding: .5rem .75rem;
        border-radius: 13px;
    }

    .rdc-home-client-v1__hero {
        padding: 1.65rem 1.25rem;
        border-radius: 18px;
    }

    .rdc-home-client-v1__slogan {
        margin-bottom: 1.4rem;
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .rdc-home-client-v1__about {
        padding-left: 0;
        padding-top: .85rem;

        border-left: 0;
        border-top: 3px solid var(--rdc-home-orange);
    }

    .rdc-home-client-v1__services {
        grid-template-columns: 1fr;
    }

    .rdc-home-client-v1__service {
        grid-template-columns: 42px 1fr;
    }

    .rdc-home-client-v1__cta {
        grid-template-columns: 1fr;
        gap: 1.25rem;

        margin-top: 1rem;
        padding: 1.35rem;

        border-radius: 16px;
    }

    .rdc-home-client-v1__cta-action,
    .rdc-home-client-v1__button {
        width: 100%;
    }

}


/* REDUCIR MOVIMIENTO
------------------------------------------------------ */

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

    .rdc-home-client-v1__service,
    .rdc-home-client-v1__button {
        transition: none;
    }

}

/* REDECOMSA-HOME-CLIENT-V1-1.0.0 END */

/* REDECOMSA-HOME-CLIENT-V1-1.0.1 START */


/* ====================================================
   LOGOTIPO REDECOMSA
   PNG TRANSPARENTE
   ==================================================== */

.rdc-home-client-v1__brand {
    display: flex;

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

    padding:
        .15rem
        0
        1.2rem;
}


.rdc-home-client-v1__logo {
    display: block;

    width: min(390px, 86vw);
    max-width: 100%;
    height: auto;

    margin: 0;
    padding: 0;

    background: transparent;

    border: 0;
    border-radius: 0;

    box-shadow: none;

    filter:
        drop-shadow(
            0 7px 8px
            rgba(0, 35, 89, .13)
        );

    object-fit: contain;
}


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

.rdc-home-client-v1__hero-grid {
    align-items: center;
}


.rdc-home-client-v1__copy {
    min-width: 0;
}


/* ====================================================
   EXPERIENCIA
   FRANJA A TODO EL ANCHO
   ==================================================== */

.rdc-home-client-v1__experience {
    position: relative;

    grid-column: 1 / -1;

    display: block;

    width: 100%;
    max-width: none;

    margin:
        .35rem
        0
        0;

    padding:
        1.3rem
        1.55rem
        1.4rem;

    background:
        linear-gradient(
            100deg,
            rgba(242, 161, 27, .20) 0%,
            rgba(255, 255, 255, .13) 50%,
            rgba(255, 255, 255, .08) 100%
        );

    border:
        1px solid
        rgba(242, 161, 27, .46);

    border-left:
        6px solid
        var(--rdc-home-orange);

    border-radius: 15px;

    box-shadow:
        0 12px 26px
        rgba(0, 20, 55, .15);

    color: #fff;

    font-size: inherit;
    line-height: 1.4;

    font-style: normal;
}


.rdc-home-client-v1__experience-kicker {
    display: block;

    margin-bottom: .45rem;

    color: var(--rdc-home-orange);

    font-size: .74rem;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.rdc-home-client-v1__experience strong {
    display: block;

    margin: 0;

    color: #fff;

    font-size:
        clamp(
            1.18rem,
            2vw,
            1.55rem
        );

    line-height: 1.32;

    font-weight: 800;

    letter-spacing: -.015em;
}


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

.rdc-home-client-v1__cta {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 2rem;

    align-items: center;

    margin-top: 1.35rem;

    padding:
        clamp(1.6rem, 3vw, 2.3rem)
        clamp(1.5rem, 3.5vw, 2.75rem);

    background:
        linear-gradient(
            100deg,
            #2b6094 0%,
            #285b8e 62%,
            #063e75 62%,
            #002359 100%
        );

    border: 0;

    border-top:
        4px solid
        var(--rdc-home-orange);

    border-radius:
        0
        0
        25px
        25px;

    box-shadow:
        0 16px 32px
        rgba(0, 35, 89, .16);

    color: #fff;
}


.rdc-home-client-v1__cta::after {
    content: "";

    position: absolute;

    top: -145px;
    right: -80px;

    width: 260px;
    height: 260px;

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

    border-radius: 50%;

    pointer-events: none;
}


.rdc-home-client-v1__cta-copy,
.rdc-home-client-v1__cta-action {
    position: relative;
    z-index: 2;
}


.rdc-home-client-v1__cta-label {
    display: block;

    margin-bottom: .45rem;

    color: var(--rdc-home-orange);

    font-size: .76rem;
    line-height: 1;

    font-weight: 850;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.rdc-home-client-v1__cta h2 {
    margin: 0;

    color: #fff;

    font-size:
        clamp(
            1.45rem,
            2.5vw,
            2.05rem
        );

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -.02em;
}


.rdc-home-client-v1__cta p {
    margin:
        .4rem
        0
        0;

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

    font-size: 1rem;
    line-height: 1.5;
}


/* ====================================================
   BOTÓN CTA
   ==================================================== */

.rdc-home-client-v1__button {
    display: inline-flex;

    min-height: 49px;

    padding:
        .77rem
        1.45rem;

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

    background: #fff;

    border:
        2px solid
        #fff;

    border-radius: 999px;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, .13);

    color:
        var(--rdc-home-navy)
        !important;

    font-size: .92rem;
    line-height: 1.2;

    font-weight: 800;

    text-decoration:
        none
        !important;

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


.rdc-home-client-v1__button:hover,
.rdc-home-client-v1__button:focus {
    transform:
        translateY(-2px);

    background:
        var(--rdc-home-orange);

    border-color:
        var(--rdc-home-orange);

    color:
        var(--rdc-home-navy)
        !important;
}


/* ====================================================
   TABLETA
   ==================================================== */

@media (max-width: 900px) {

    .rdc-home-client-v1__experience {
        margin-top: 0;
    }


    .rdc-home-client-v1__cta {
        background:
            linear-gradient(
                105deg,
                #2b6094 0%,
                #285b8e 58%,
                #063e75 58%,
                #002359 100%
            );
    }

}


/* ====================================================
   CELULAR
   ==================================================== */

@media (max-width: 640px) {

    .rdc-home-client-v1__brand {
        padding:
            0
            0
            .95rem;
    }


    .rdc-home-client-v1__logo {
        width:
            min(
                310px,
                86vw
            );

        filter:
            drop-shadow(
                0 5px 7px
                rgba(0, 35, 89, .12)
            );
    }


    .rdc-home-client-v1__experience {
        width: 100%;

        margin:
            .1rem
            0
            0;

        padding:
            1.1rem
            1.05rem
            1.2rem;

        border-left-width: 5px;

        border-radius: 12px;
    }


    .rdc-home-client-v1__experience-kicker {
        margin-bottom: .4rem;

        font-size: .67rem;

        letter-spacing: .11em;
    }


    .rdc-home-client-v1__experience strong {
        font-size: 1.08rem;

        line-height: 1.4;
    }


    .rdc-home-client-v1__cta {
        grid-template-columns: 1fr;

        gap: 1.25rem;

        margin-top: 1rem;

        padding:
            1.45rem
            1.3rem
            1.55rem;

        background:
            linear-gradient(
                180deg,
                #2b6094 0%,
                #174e84 52%,
                #002359 100%
            );

        border-radius:
            0
            0
            21px
            21px;
    }


    .rdc-home-client-v1__cta-action,
    .rdc-home-client-v1__button {
        width: 100%;
    }


    .rdc-home-client-v1__button {
        min-height: 50px;
    }

}


/* ====================================================
   ACCESIBILIDAD
   ==================================================== */

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

    .rdc-home-client-v1__button {
        transition: none;
    }

}


/* REDECOMSA-HOME-CLIENT-V1-1.0.1 END */

/* REDECOMSA-ABOUT-CLIENT-V2-1.0.0 START */

.rdc-about-v2 {
    --rdc-about-navy: #002359;
    --rdc-about-blue: #07518e;
    --rdc-about-blue-mid: #1766a4;
    --rdc-about-orange: #f5a20b;
    --rdc-about-text: #23364a;
    --rdc-about-muted: #607286;
    --rdc-about-soft: #eef4f9;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding:
        0
        1rem
        2.5rem;

    box-sizing: border-box;
}

.rdc-about-v2 *,
.rdc-about-v2 *::before,
.rdc-about-v2 *::after {
    box-sizing: border-box;
}


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

.rdc-about-v2__hero {
    position: relative;
    overflow: hidden;

    padding:
        clamp(2.2rem, 4.5vw, 4rem)
        clamp(1.5rem, 5vw, 4rem);

    background:
        radial-gradient(
            circle at 96% 5%,
            rgba(255,255,255,.12) 0,
            rgba(255,255,255,0) 31%
        ),
        linear-gradient(
            130deg,
            #002359 0%,
            #064781 60%,
            #1163a4 100%
        );

    border-radius: 24px;

    box-shadow:
        0 18px 40px
        rgba(0,35,89,.16);

    color: #fff;
}


.rdc-about-v2__hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -100px;
    bottom: -160px;

    border:
        45px solid
        rgba(245,162,11,.13);

    border-radius: 50%;
}


.rdc-about-v2__eyebrow,
.rdc-about-v2__kicker {
    display: block;

    margin-bottom: .5rem;

    color:
        var(--rdc-about-orange);

    font-size: .75rem;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.rdc-about-v2__hero h1 {
    position: relative;
    z-index: 2;

    margin:
        0
        0
        1rem;

    color: #fff;

    font-size:
        clamp(
            2.25rem,
            5vw,
            4rem
        );

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -.035em;
}


.rdc-about-v2__hero p {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0;

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

    font-size:
        clamp(
            1.03rem,
            1.65vw,
            1.23rem
        );

    line-height: 1.72;
}


/* ====================================================
   SECCIONES GENERALES
   ==================================================== */

.rdc-about-v2__section {
    margin-top:
        clamp(
            1rem,
            2.5vw,
            1.6rem
        );

    padding:
        clamp(
            1.5rem,
            3.5vw,
            2.7rem
        );

    background: #fff;

    border:
        1px solid
        rgba(0,35,89,.10);

    border-radius: 20px;

    box-shadow:
        0 10px 28px
        rgba(0,35,89,.07);
}


.rdc-about-v2__heading {
    max-width: 850px;

    margin-bottom: 1.55rem;
}


.rdc-about-v2 h2 {
    margin:
        0
        0
        .7rem;

    color:
        var(--rdc-about-navy);

    font-size:
        clamp(
            1.6rem,
            3vw,
            2.4rem
        );

    line-height: 1.14;

    font-weight: 800;

    letter-spacing: -.025em;
}


.rdc-about-v2__heading > p {
    margin: 0;

    color:
        var(--rdc-about-muted);

    font-size: 1rem;

    line-height: 1.68;
}


/* ====================================================
   PROPUESTA DE VALOR
   ==================================================== */

.rdc-about-v2__value {
    border-top:
        4px solid
        var(--rdc-about-orange);
}


.rdc-about-v2__value-grid {
    display: grid;

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

    gap: 1rem;
}


.rdc-about-v2__value-card {
    display: grid;

    grid-template-columns:
        46px
        1fr;

    gap: 1rem;

    padding: 1.2rem;

    background:
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #edf4f9 100%
        );

    border:
        1px solid
        rgba(0,35,89,.09);

    border-radius: 15px;
}


.rdc-about-v2__number {
    display: flex;

    width: 44px;
    height: 44px;

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

    background:
        var(--rdc-about-orange);

    border-radius: 50%;

    color:
        var(--rdc-about-navy);

    font-size: .76rem;

    font-weight: 900;
}


.rdc-about-v2__value-card h3,
.rdc-about-v2__benefit h3 {
    margin:
        0
        0
        .35rem;

    color:
        var(--rdc-about-navy);

    font-size: 1rem;

    line-height: 1.35;

    font-weight: 800;
}


.rdc-about-v2__value-card p,
.rdc-about-v2__benefit p {
    margin: 0;

    color:
        var(--rdc-about-muted);

    font-size: .91rem;

    line-height: 1.55;
}


/* ====================================================
   COBERTURA
   ==================================================== */

.rdc-about-v2__coverage {
    position: relative;
    overflow: hidden;

    margin-top:
        clamp(
            1rem,
            2.5vw,
            1.6rem
        );

    padding:
        clamp(
            1.5rem,
            3.5vw,
            2.8rem
        );

    background:
        linear-gradient(
            135deg,
            #f9fbfd 0%,
            #edf4f9 100%
        );

    border:
        1px solid
        rgba(0,35,89,.10);

    border-radius: 22px;

    box-shadow:
        0 12px 30px
        rgba(0,35,89,.08);
}


.rdc-about-v2__coverage::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: 37%;
    top: 22%;

    border:
        55px solid
        rgba(7,81,142,.025);

    border-radius: 50%;

    pointer-events: none;
}


.rdc-about-v2__coverage-head {
    position: relative;
    z-index: 2;

    margin-bottom: .7rem;
}


.rdc-about-v2__coverage-head h2 {
    margin-bottom: 0;
}


.rdc-about-v2__coverage-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0,1.55fr)
        minmax(280px,.75fr);

    gap:
        clamp(
            1.3rem,
            3vw,
            2.5rem
        );

    align-items: center;
}


/* ====================================================
   MAPA SVG
   ==================================================== */

.rdc-about-v2__map-wrap {
    position: relative;

    min-width: 0;

    padding:
        .5rem
        0;
}


.rdc-about-v2__map {
    display: block;

    width: 100%;
    height: auto;

    max-height: 470px;
}


.rdc-about-v2__mexico {
    fill:
        url(#rdc-map-gradient);

    stroke: #fff;

    stroke-width: 4;

    stroke-linejoin: round;
}


.rdc-about-v2__map-coast {
    fill: none;

    stroke:
        rgba(255,255,255,.55);

    stroke-width: 2;
}


.rdc-about-v2__map-ring {
    fill: none;

    stroke:
        rgba(7,81,142,.08);

    stroke-width: 2;
}


.rdc-about-v2__map-ring--inner {
    stroke-dasharray:
        4
        10;
}


.rdc-about-v2__pins g > circle:first-child {
    fill:
        var(--rdc-about-orange);

    stroke: #fff;

    stroke-width: 2;

    transform-box: fill-box;
    transform-origin: center;

    animation:
        rdc-about-pin-pulse
        3s
        ease-in-out
        infinite;
}


.rdc-about-v2__pins g:nth-child(3n) > circle:first-child {
    animation-delay: .8s;
}


.rdc-about-v2__pins g:nth-child(3n+1) > circle:first-child {
    animation-delay: 1.5s;
}


.rdc-about-v2__pin-core {
    fill: #fff;
}


@keyframes rdc-about-pin-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

}


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

.rdc-about-v2__coverage-stats {
    display: grid;

    gap: .9rem;
}


.rdc-about-v2__coverage-card {
    display: grid;

    grid-template-columns:
        64px
        1fr;

    gap: 1rem;

    align-items: center;

    min-height: 115px;

    padding:
        1rem
        1.15rem;

    background: #fff;

    border:
        1px solid
        rgba(0,35,89,.09);

    border-right:
        5px solid
        var(--rdc-about-blue);

    border-radius: 17px;

    box-shadow:
        0 10px 22px
        rgba(0,35,89,.09);
}


.rdc-about-v2__coverage-card--accent {
    border-right-color:
        var(--rdc-about-orange);
}


.rdc-about-v2__coverage-icon {
    display: flex;

    width: 60px;
    height: 60px;

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

    background:
        var(--rdc-about-navy);

    border-radius: 50%;
}


.rdc-about-v2__coverage-icon--accent {
    background:
        var(--rdc-about-orange);
}


.rdc-about-v2__coverage-icon svg {
    width: 36px;
    height: 36px;

    fill: none;

    stroke: #fff;

    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.rdc-about-v2__coverage-card strong {
    display: block;

    margin-bottom: .15rem;

    color:
        var(--rdc-about-navy);

    font-size:
        clamp(
            1.7rem,
            3vw,
            2.5rem
        );

    line-height: 1;

    font-weight: 900;
}


.rdc-about-v2__coverage-card--accent strong {
    color:
        #e88900;
}


.rdc-about-v2__coverage-card span {
    display: block;

    color:
        var(--rdc-about-text);

    font-size: .88rem;

    line-height: 1.4;

    font-weight: 650;
}


/* ====================================================
   CANALES
   ==================================================== */

.rdc-about-v2__channels {
    display: grid;

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

    gap: 1rem;
}


.rdc-about-v2__channel {
    display: flex;

    min-height: 165px;

    flex-direction: column;

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

    padding: 1.3rem;

    background:
        linear-gradient(
            145deg,
            #04376d 0%,
            #07518e 100%
        );

    border-radius: 17px;

    color: #fff;

    text-align: center;
}


.rdc-about-v2__channel-icon {
    display: flex;

    width: 66px;
    height: 66px;

    margin-bottom: .8rem;

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

    background:
        var(--rdc-about-orange);

    border-radius: 50%;
}


.rdc-about-v2__channel-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke:
        var(--rdc-about-navy);

    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.rdc-about-v2__channel h3 {
    margin: 0;

    color: #fff;

    font-size: 1.14rem;

    font-weight: 800;
}


/* ====================================================
   BENEFICIOS
   ==================================================== */

.rdc-about-v2__benefits {
    background:
        linear-gradient(
            135deg,
            #f7fafc 0%,
            #edf4f9 100%
        );
}


.rdc-about-v2__benefit-grid {
    display: grid;

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

    gap: .9rem;
}


.rdc-about-v2__benefit {
    display: grid;

    grid-template-columns:
        15px
        1fr;

    gap: .9rem;

    padding: 1.2rem;

    background: #fff;

    border:
        1px solid
        rgba(0,35,89,.09);

    border-radius: 14px;
}


.rdc-about-v2__benefit:last-child {
    grid-column: 1 / -1;
}


.rdc-about-v2__benefit-dot {
    width: 11px;
    height: 11px;

    margin-top: .35rem;

    background:
        var(--rdc-about-orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(245,162,11,.12);
}


/* ====================================================
   TABLETA
   ==================================================== */

@media (max-width: 900px) {

    .rdc-about-v2__coverage-layout {
        grid-template-columns: 1fr;
    }


    .rdc-about-v2__coverage-stats {
        grid-template-columns:
            repeat(
                3,
                minmax(0,1fr)
            );
    }


    .rdc-about-v2__coverage-card {
        grid-template-columns: 1fr;

        align-content: start;

        text-align: center;
    }


    .rdc-about-v2__coverage-icon {
        margin:
            0
            auto;
    }

}


/* ====================================================
   CELULAR
   ==================================================== */

@media (max-width: 640px) {

    .rdc-about-v2 {
        padding-left: .75rem;
        padding-right: .75rem;
    }


    .rdc-about-v2__hero {
        padding:
            1.75rem
            1.3rem;

        border-radius: 18px;
    }


    .rdc-about-v2__hero h1 {
        font-size:
            clamp(
                2rem,
                11vw,
                2.6rem
            );
    }


    .rdc-about-v2__section,
    .rdc-about-v2__coverage {
        margin-top: 1rem;

        padding:
            1.35rem
            1.15rem;

        border-radius: 16px;
    }


    .rdc-about-v2__value-grid,
    .rdc-about-v2__channels,
    .rdc-about-v2__benefit-grid,
    .rdc-about-v2__coverage-stats {
        grid-template-columns: 1fr;
    }


    .rdc-about-v2__value-card {
        grid-template-columns:
            42px
            1fr;

        padding: 1rem;
    }


    .rdc-about-v2__number {
        width: 40px;
        height: 40px;
    }


    .rdc-about-v2__map-wrap {
        margin:
            -.4rem
            -.5rem
            0;
    }


    .rdc-about-v2__map {
        min-height: 245px;
    }


    .rdc-about-v2__coverage-card {
        grid-template-columns:
            58px
            1fr;

        min-height: 100px;

        text-align: left;
    }


    .rdc-about-v2__coverage-icon {
        width: 54px;
        height: 54px;

        margin: 0;
    }


    .rdc-about-v2__coverage-icon svg {
        width: 32px;
        height: 32px;
    }


    .rdc-about-v2__channel {
        min-height: 140px;
    }


    .rdc-about-v2__benefit:last-child {
        grid-column: auto;
    }

}


/* ====================================================
   MOVIMIENTO REDUCIDO
   ==================================================== */

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

    .rdc-about-v2__pins g > circle:first-child {
        animation: none;
    }

}


/* REDECOMSA-ABOUT-CLIENT-V2-1.0.0 END */

/* REDECOMSA-ABOUT-CLIENT-V2-1.0.1 START */


/* ====================================================
   MICROINTERACCIONES
   ==================================================== */

.rdc-about-v2__coverage-card,
.rdc-about-v2__value-card,
.rdc-about-v2__channel,
.rdc-about-v2__benefit {
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background-color .22s ease;
}


.rdc-about-v2__coverage-icon,
.rdc-about-v2__channel-icon,
.rdc-about-v2__number,
.rdc-about-v2__benefit-number {
    transition:
        transform .22s ease;
}


@media (hover: hover) and (pointer: fine) {

    .rdc-about-v2__coverage-card:hover {
        transform: translateY(-4px);

        box-shadow:
            0 16px 30px
            rgba(0,35,89,.14);
    }


    .rdc-about-v2__coverage-card:hover
    .rdc-about-v2__coverage-icon {
        transform:
            scale(1.06);
    }


    .rdc-about-v2__value-card:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(245,162,11,.35);

        box-shadow:
            0 10px 22px
            rgba(0,35,89,.08);
    }


    .rdc-about-v2__value-card:hover
    .rdc-about-v2__number {
        transform:
            scale(1.07);
    }


    .rdc-about-v2__channel:hover {
        transform:
            translateY(-4px);

        box-shadow:
            0 15px 28px
            rgba(0,35,89,.18);
    }


    .rdc-about-v2__channel:hover
    .rdc-about-v2__channel-icon {
        transform:
            scale(1.07);
    }


    .rdc-about-v2__benefit:hover {
        transform:
            translateY(-3px);

        border-color:
            rgba(245,162,11,.35);

        box-shadow:
            0 12px 25px
            rgba(0,35,89,.09);
    }


    .rdc-about-v2__benefit:hover
    .rdc-about-v2__benefit-number {
        transform:
            scale(1.06);
    }

}


/* ====================================================
   BENEFICIOS MÁS DESTACADOS
   ==================================================== */

.rdc-about-v2__benefit {
    position: relative;

    grid-template-columns:
        54px
        1fr;

    align-items: start;

    overflow: hidden;

    border-left:
        4px solid
        var(--rdc-about-orange);
}


.rdc-about-v2__benefit::after {
    content: "";

    position: absolute;

    width: 85px;
    height: 85px;

    right: -45px;
    bottom: -45px;

    border:
        14px solid
        rgba(245,162,11,.055);

    border-radius: 50%;

    pointer-events: none;
}


.rdc-about-v2__benefit-number {
    position: relative;
    z-index: 2;

    display: flex;

    width: 46px;
    height: 46px;

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

    background:
        rgba(245,162,11,.13);

    border:
        1px solid
        rgba(245,162,11,.28);

    border-radius: 50%;

    color:
        #d87d00;

    font-size: .75rem;

    line-height: 1;

    font-weight: 900;
}


.rdc-about-v2__benefit h3 {
    padding-right: .8rem;
}


/* ====================================================
   PUNTOS DEL MAPA
   ==================================================== */

.rdc-about-v2__pins g > circle:first-child {
    filter:
        drop-shadow(
            0 3px 4px
            rgba(0,35,89,.20)
        );
}


/* ====================================================
   CELULAR
   ==================================================== */

@media (max-width: 640px) {

    .rdc-about-v2__benefit {
        grid-template-columns:
            46px
            1fr;

        padding:
            1rem
            .95rem;
    }


    .rdc-about-v2__benefit-number {
        width: 40px;
        height: 40px;

        font-size: .7rem;
    }

}


/* ====================================================
   MOVIMIENTO REDUCIDO
   ==================================================== */

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

    .rdc-about-v2__coverage-card,
    .rdc-about-v2__value-card,
    .rdc-about-v2__channel,
    .rdc-about-v2__benefit,
    .rdc-about-v2__coverage-icon,
    .rdc-about-v2__channel-icon,
    .rdc-about-v2__number,
    .rdc-about-v2__benefit-number {
        transition: none;
    }

}


/* REDECOMSA-ABOUT-CLIENT-V2-1.0.1 END */

/* REDECOMSA-ABOUT-MOBILE-COVERAGE-1.0.1 START */

/* ====================================================
   REDECOMSA
   ¿QUIÉNES SOMOS?
   COBERTURA MÓVIL — AJUSTE FINAL
   ==================================================== */

@media (max-width: 640px) {

    /*
     * Recuperar una pequeña separación entre
     * el encabezado "Cobertura" y el mapa.
     */

    .rdc-about-v2__coverage-head {
        margin-bottom: .35rem;
    }


    .rdc-about-v2__coverage-layout {
        gap: .8rem;
    }


    /*
     * Punto intermedio:
     * más compacto que la versión inicial,
     * pero sin invadir visualmente el título.
     */

    .rdc-about-v2__map-wrap {
        margin:
            -.25rem
            -.5rem
            -.25rem;

        padding: 0;
    }


    .rdc-about-v2__map {
        display: block;

        width: 100%;
        height: auto;
        min-height: 0;

        margin: 0 auto;
    }


    /*
     * Mantener las estadísticas próximas al mapa,
     * pero claramente separadas.
     */

    .rdc-about-v2__coverage-stats {
        margin-top: 0;
        gap: .85rem;
    }

}

/* REDECOMSA-ABOUT-MOBILE-COVERAGE-1.0.1 END */

/* REDECOMSA-SERVICES-INTEGRAL-V2-1.0.0 START */


.rdc-services-integral-v2 {
    --rdc-si-navy: #002359;
    --rdc-si-blue: #07518e;
    --rdc-si-blue-mid: #23699f;
    --rdc-si-orange: #f5a20b;

    --rdc-si-text: #23364a;
    --rdc-si-muted: #607286;

    --rdc-si-soft: #eef4f9;
    --rdc-si-white: #ffffff;

    --rdc-si-line:
        rgba(
            0,
            35,
            89,
            .10
        );
}


.rdc-services-integral-v2 *,
.rdc-services-integral-v2 *::before,
.rdc-services-integral-v2 *::after {
    box-sizing: border-box;
}


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

.rdc-services-integral-v2__hero p {
    max-width: 920px;
}


/* ====================================================
   MODELO LOYALTY
   ==================================================== */

.rdc-services-integral-v2__model {
    position: relative;

    margin-top:
        clamp(
            1rem,
            2.5vw,
            1.6rem
        );

    padding:
        clamp(
            1.5rem,
            3.5vw,
            2.8rem
        );

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f8fb 100%
        );

    border:
        1px solid
        var(--rdc-si-line);

    border-top:
        4px solid
        var(--rdc-si-orange);

    border-radius: 20px;

    box-shadow:
        0 12px 30px
        rgba(
            0,
            35,
            89,
            .07
        );
}


.rdc-services-integral-v2__heading {
    max-width: 850px;

    margin-bottom:
        clamp(
            1.7rem,
            3vw,
            2.5rem
        );
}


.rdc-services-integral-v2__eyebrow {
    display: block;

    margin-bottom: .5rem;

    color:
        var(--rdc-si-orange);

    font-size: .75rem;
    line-height: 1;

    font-weight: 900;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.rdc-services-integral-v2__heading h2,
.rdc-services-integral-v2__closing h2 {
    margin:
        0
        0
        .65rem;

    color:
        var(--rdc-si-navy);

    font-size:
        clamp(
            1.7rem,
            3.2vw,
            2.55rem
        );

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -.025em;
}


.rdc-services-integral-v2__heading > p,
.rdc-services-integral-v2__closing-head > p {
    margin: 0;

    color:
        var(--rdc-si-muted);

    font-size: 1rem;

    line-height: 1.65;
}


/* ====================================================
   PROGRESIÓN
   ==================================================== */

.rdc-services-integral-v2__phases {
    position: relative;

    display: grid;

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

    gap:
        clamp(
            1rem,
            2vw,
            1.4rem
        );
}


.rdc-services-integral-v2__phases::before {
    content: "";

    position: absolute;

    z-index: 0;

    top: 27px;

    left: 16.666%;
    right: 16.666%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--rdc-si-orange) 0%,
            var(--rdc-si-blue-mid) 50%,
            var(--rdc-si-navy) 100%
        );

    opacity: .55;
}


/* ====================================================
   FASES
   ==================================================== */

.rdc-services-integral-v2__phase {
    position: relative;
    z-index: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;
}


.rdc-services-integral-v2__marker {
    position: relative;
    z-index: 3;

    display: flex;

    width: 54px;
    height: 54px;

    margin:
        0
        auto
        1rem;

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

    background:
        var(--rdc-si-orange);

    border:
        5px solid
        #fff;

    border-radius: 50%;

    box-shadow:
        0 6px 16px
        rgba(
            0,
            35,
            89,
            .15
        );

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}


.rdc-services-integral-v2__marker span {
    color:
        var(--rdc-si-navy);

    font-size: .72rem;

    line-height: 1;

    font-weight: 900;
}


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

.rdc-services-integral-v2__card {
    position: relative;

    overflow: hidden;

    flex: 1;

    padding:
        1.35rem
        1.25rem
        1.45rem;

    background: #fff;

    border:
        1px solid
        var(--rdc-si-line);

    border-radius: 17px;

    box-shadow:
        0 8px 22px
        rgba(
            0,
            35,
            89,
            .06
        );

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


.rdc-services-integral-v2__phase:nth-child(1)
.rdc-services-integral-v2__card {
    border-top:
        4px solid
        var(--rdc-si-orange);
}


.rdc-services-integral-v2__phase:nth-child(2)
.rdc-services-integral-v2__card {
    border-top:
        4px solid
        var(--rdc-si-blue-mid);
}


.rdc-services-integral-v2__phase:nth-child(3)
.rdc-services-integral-v2__card {
    border-top:
        4px solid
        var(--rdc-si-navy);
}


.rdc-services-integral-v2__card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -53px;
    bottom: -53px;

    border:
        16px solid
        rgba(
            245,
            162,
            11,
            .045
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ====================================================
   ENCABEZADO DE TARJETA
   ==================================================== */

.rdc-services-integral-v2__card-head {
    position: relative;
    z-index: 2;

    margin-bottom: .9rem;

    padding-bottom: .95rem;

    border-bottom:
        1px solid
        rgba(
            0,
            35,
            89,
            .08
        );
}


.rdc-services-integral-v2__card-head > span {
    display: block;

    margin-bottom: .35rem;

    color:
        var(--rdc-si-orange);

    font-size: .7rem;

    line-height: 1;

    font-weight: 900;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.rdc-services-integral-v2__card-head h3 {
    margin:
        0
        0
        .55rem;

    color:
        var(--rdc-si-navy);

    font-size:
        clamp(
            1.15rem,
            1.7vw,
            1.38rem
        );

    line-height: 1.22;

    font-weight: 800;

    letter-spacing: -.015em;
}


.rdc-services-integral-v2__card-head p {
    margin: 0;

    color:
        var(--rdc-si-muted);

    font-size: .87rem;

    line-height: 1.5;
}


/* ====================================================
   LISTAS
   ==================================================== */

.rdc-services-integral-v2__list {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;

    list-style: none;
}


.rdc-services-integral-v2__list li {
    position: relative;

    margin: 0;

    padding:
        .62rem
        0
        .62rem
        1.25rem;

    color:
        var(--rdc-si-text);

    font-size: .92rem;

    line-height: 1.52;

    border-bottom:
        1px solid
        rgba(
            0,
            35,
            89,
            .07
        );
}


.rdc-services-integral-v2__list li:last-child {
    border-bottom: 0;
}


.rdc-services-integral-v2__list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 1.02rem;

    width: 7px;
    height: 7px;

    background:
        var(--rdc-si-orange);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(
            245,
            162,
            11,
            .11
        );
}


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

.rdc-services-integral-v2__closing {
    position: relative;

    overflow: hidden;

    margin-top:
        clamp(
            1rem,
            2.5vw,
            1.6rem
        );

    padding:
        clamp(
            1.5rem,
            3.5vw,
            2.8rem
        );

    background:
        linear-gradient(
            135deg,
            #edf4f9 0%,
            #f8fafc 100%
        );

    border:
        1px solid
        var(--rdc-si-line);

    border-radius: 20px;

    box-shadow:
        0 12px 30px
        rgba(
            0,
            35,
            89,
            .07
        );
}


.rdc-services-integral-v2__closing-head {
    max-width: 780px;

    margin-bottom: 1.55rem;
}


.rdc-services-integral-v2__cta-grid {
    display: grid;

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

    gap: 1rem;
}


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

.rdc-services-integral-v2__cta-card {
    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        74px
        1fr;

    gap: 1.25rem;

    align-items: start;

    min-height: 245px;

    padding:
        1.6rem;

    background: #fff;

    border:
        1px solid
        var(--rdc-si-line);

    border-top:
        4px solid
        var(--rdc-si-orange);

    border-radius: 18px;

    box-shadow:
        0 10px 25px
        rgba(
            0,
            35,
            89,
            .07
        );

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


.rdc-services-integral-v2__cta-card--brands {
    border-top-color:
        var(--rdc-si-blue);
}


.rdc-services-integral-v2__cta-card::after {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    right: -80px;
    bottom: -80px;

    border:
        24px solid
        rgba(
            7,
            81,
            142,
            .045
        );

    border-radius: 50%;

    pointer-events: none;
}


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

.rdc-services-integral-v2__cta-icon {
    position: relative;
    z-index: 2;

    display: flex;

    width: 70px;
    height: 70px;

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

    background:
        var(--rdc-si-orange);

    border-radius: 50%;

    box-shadow:
        0 8px 18px
        rgba(
            0,
            35,
            89,
            .11
        );

    transition:
        transform .22s ease;
}


.rdc-services-integral-v2__cta-card--brands
.rdc-services-integral-v2__cta-icon {
    background:
        var(--rdc-si-navy);
}


.rdc-services-integral-v2__cta-icon svg {
    width: 39px;
    height: 39px;

    fill: none;

    stroke:
        var(--rdc-si-navy);

    stroke-width: 3;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.rdc-services-integral-v2__cta-card--brands
.rdc-services-integral-v2__cta-icon svg {
    stroke: #fff;
}


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

.rdc-services-integral-v2__cta-content {
    position: relative;
    z-index: 2;
}


.rdc-services-integral-v2__cta-kicker {
    display: block;

    margin-bottom: .35rem;

    color:
        var(--rdc-si-orange);

    font-size: .7rem;

    font-weight: 900;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.rdc-services-integral-v2__cta-content h3 {
    margin:
        0
        0
        .6rem;

    color:
        var(--rdc-si-navy);

    font-size:
        clamp(
            1.25rem,
            2vw,
            1.55rem
        );

    line-height: 1.2;

    font-weight: 800;
}


.rdc-services-integral-v2__cta-content p {
    margin:
        0
        0
        1.15rem;

    color:
        var(--rdc-si-muted);

    font-size: .93rem;

    line-height: 1.58;
}


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

.rdc-services-integral-v2__cta-button {
    display: inline-flex;

    min-height: 46px;

    padding:
        .7rem
        1.25rem;

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

    background:
        var(--rdc-si-orange);

    border:
        2px solid
        var(--rdc-si-orange);

    border-radius: 999px;

    color:
        var(--rdc-si-navy)
        !important;

    font-size: .88rem;

    line-height: 1.2;

    font-weight: 850;

    text-decoration:
        none
        !important;

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


.rdc-services-integral-v2__cta-button--secondary {
    background:
        var(--rdc-si-navy);

    border-color:
        var(--rdc-si-navy);

    color:
        #fff
        !important;
}


/* ====================================================
   HOVER
   ==================================================== */

@media (hover: hover) and (pointer: fine) {

    .rdc-services-integral-v2__phase:hover
    .rdc-services-integral-v2__card {
        transform:
            translateY(-4px);

        box-shadow:
            0 16px 30px
            rgba(
                0,
                35,
                89,
                .11
            );
    }


    .rdc-services-integral-v2__phase:hover
    .rdc-services-integral-v2__marker {
        transform:
            scale(1.07);
    }


    .rdc-services-integral-v2__cta-card:hover {
        transform:
            translateY(-4px);

        box-shadow:
            0 16px 30px
            rgba(
                0,
                35,
                89,
                .11
            );
    }


    .rdc-services-integral-v2__cta-card:hover
    .rdc-services-integral-v2__cta-icon {
        transform:
            scale(1.06);
    }


    .rdc-services-integral-v2__cta-button:hover,
    .rdc-services-integral-v2__cta-button:focus {
        transform:
            translateY(-2px);

        background:
            var(--rdc-si-navy);

        border-color:
            var(--rdc-si-navy);

        color:
            #fff
            !important;
    }


    .rdc-services-integral-v2__cta-button--secondary:hover,
    .rdc-services-integral-v2__cta-button--secondary:focus {
        background:
            var(--rdc-si-orange);

        border-color:
            var(--rdc-si-orange);

        color:
            var(--rdc-si-navy)
            !important;
    }

}


/* ====================================================
   TABLETA
   ==================================================== */

@media (max-width: 1040px) {

    .rdc-services-integral-v2__phases {
        grid-template-columns: 1fr;

        gap: 1.2rem;
    }


    .rdc-services-integral-v2__phases::before {
        top: 27px;
        bottom: 27px;

        left: 27px;
        right: auto;

        width: 3px;
        height: auto;

        background:
            linear-gradient(
                180deg,
                var(--rdc-si-orange) 0%,
                var(--rdc-si-blue-mid) 50%,
                var(--rdc-si-navy) 100%
            );
    }


    .rdc-services-integral-v2__phase {
        display: grid;

        grid-template-columns:
            54px
            minmax(0, 1fr);

        gap: 1rem;

        align-items: start;
    }


    .rdc-services-integral-v2__marker {
        margin: 0;
    }

}


/* ====================================================
   CELULAR
   ==================================================== */

@media (max-width: 640px) {

    .rdc-services-integral-v2__model,
    .rdc-services-integral-v2__closing {
        margin-top: 1rem;

        padding:
            1.35rem
            1.05rem;

        border-radius: 16px;
    }


    .rdc-services-integral-v2__heading {
        margin-bottom: 1.45rem;
    }


    .rdc-services-integral-v2__phases {
        gap: 1rem;
    }


    .rdc-services-integral-v2__phases::before {
        left: 23px;
    }


    .rdc-services-integral-v2__phase {
        grid-template-columns:
            46px
            minmax(0, 1fr);

        gap: .75rem;
    }


    .rdc-services-integral-v2__marker {
        width: 46px;
        height: 46px;

        border-width: 4px;
    }


    .rdc-services-integral-v2__marker span {
        font-size: .68rem;
    }


    .rdc-services-integral-v2__card {
        padding:
            1.05rem
            .95rem
            1.1rem;

        border-radius: 14px;
    }


    .rdc-services-integral-v2__card-head h3 {
        font-size: 1.1rem;
    }


    .rdc-services-integral-v2__card-head p {
        font-size: .84rem;
    }


    .rdc-services-integral-v2__list li {
        padding:
            .55rem
            0
            .55rem
            1.1rem;

        font-size: .88rem;

        line-height: 1.48;
    }


    /* CTA final */

    .rdc-services-integral-v2__cta-grid {
        grid-template-columns: 1fr;
    }


    .rdc-services-integral-v2__cta-card {
        grid-template-columns: 1fr;

        gap: .85rem;

        min-height: 0;

        padding:
            1.25rem
            1.1rem;

        text-align: left;
    }


    .rdc-services-integral-v2__cta-icon {
        width: 60px;
        height: 60px;
    }


    .rdc-services-integral-v2__cta-icon svg {
        width: 34px;
        height: 34px;
    }


    .rdc-services-integral-v2__cta-button {
        width: 100%;
    }

}


/* ====================================================
   MOVIMIENTO REDUCIDO
   ==================================================== */

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

    .rdc-services-integral-v2__card,
    .rdc-services-integral-v2__marker,
    .rdc-services-integral-v2__cta-card,
    .rdc-services-integral-v2__cta-icon,
    .rdc-services-integral-v2__cta-button {
        transition: none;
    }

}


/* REDECOMSA-SERVICES-INTEGRAL-V2-1.0.0 END */

/* REDECOMSA-SOCIOS-CONTACT-CENTRALIZED-1.0.0 START */


/* ====================================================
   LISTADO
   No mostrar metadatos particulares del socio.
   Las acciones públicas quedan enfocadas en
   Perfil + Catálogos.
   ==================================================== */

.rdc-public-company-meta {
    display: none !important;
}


/* ====================================================
   CONTACTO COMERCIAL REDECOMSA
   ==================================================== */

.rdc-company-detail-contact
.rdc-redecomsa-contact-list {
    display: grid;

    gap: .8rem;

    margin-top: 1.1rem;
}


.rdc-company-detail-contact
.rdc-redecomsa-contact-channel {
    padding:
        .9rem
        .95rem;

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

    border:
        1px solid
        rgba(0, 35, 89, .10);

    border-radius: 12px;
}


.rdc-redecomsa-contact-title {
    display: flex;

    gap: .45rem;

    align-items: center;

    margin-bottom: .3rem;

    color: #002359;

    font-size: .76rem;

    line-height: 1.25;

    font-weight: 800;

    letter-spacing: .025em;
}


.rdc-redecomsa-contact-channel > strong {
    display: block;

    margin-bottom: .4rem;

    color: #002359;

    font-size: 1.05rem;

    line-height: 1.3;

    font-weight: 850;
}


.rdc-redecomsa-contact-note {
    display: block;

    margin:
        -.1rem
        0
        .55rem;

    color: #647487;

    font-size: .75rem;

    line-height: 1.35;
}


.rdc-redecomsa-contact-actions {
    display: flex;

    flex-wrap: wrap;

    gap: .45rem;

    margin-top: .55rem;
}


.rdc-redecomsa-contact-actions a {
    display: inline-flex;

    gap: .35rem;

    min-height: 35px;

    padding:
        .45rem
        .72rem;

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

    border-radius: 999px;

    font-size: .75rem;

    line-height: 1;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.rdc-redecomsa-contact-actions .is-call {
    background: #002359;

    color: #fff !important;
}


.rdc-redecomsa-contact-actions .is-whatsapp {
    background: #e9f8ef;

    border:
        1px solid
        rgba(25, 135, 84, .28);

    color: #157347 !important;
}


.rdc-redecomsa-contact-email {
    display: inline-block;

    overflow-wrap: anywhere;

    color: #07518e !important;

    font-size: .86rem;

    line-height: 1.4;

    font-weight: 750;

    text-decoration: none !important;
}


@media (hover: hover) and (pointer: fine) {

    .rdc-redecomsa-contact-actions a:hover,
    .rdc-redecomsa-contact-actions a:focus {
        transform: translateY(-2px);

        box-shadow:
            0 5px 12px
            rgba(0, 35, 89, .12);
    }


    .rdc-redecomsa-contact-email:hover,
    .rdc-redecomsa-contact-email:focus {
        text-decoration: underline !important;
    }

}


@media (max-width: 640px) {

    .rdc-redecomsa-contact-actions {
        display: grid;

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


    .rdc-redecomsa-contact-actions a {
        width: 100%;
    }


    .rdc-redecomsa-contact-channel:first-child
    .rdc-redecomsa-contact-actions {
        grid-template-columns: 1fr;
    }

}


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

    .rdc-redecomsa-contact-actions a {
        transition: none;
    }

}


/* REDECOMSA-SOCIOS-CONTACT-CENTRALIZED-1.0.0 END */

/* REDECOMSA-SOCIOS-CARD-CONTACTS-1.0.0 START */


/* ====================================================
   CONTACTO REDECOMSA EN TARJETAS
   ==================================================== */

.rdc-public-company-redecomsa-contact {
    margin:
        .95rem
        0
        .9rem;

    padding:
        .8rem;

    background:
        linear-gradient(
            135deg,
            rgba(0, 35, 89, .035) 0%,
            rgba(7, 81, 142, .055) 100%
        );

    border:
        1px solid
        rgba(0, 35, 89, .10);

    border-radius: 12px;
}


.rdc-public-company-contact-heading {
    display: flex;

    gap: .42rem;

    align-items: center;

    margin-bottom: .65rem;

    color: #002359;

    font-size: .72rem;
    line-height: 1.2;

    font-weight: 850;

    letter-spacing: .045em;

    text-transform: uppercase;
}


.rdc-public-company-contact-heading .fa {
    color: #f5a20b;
}


/* ====================================================
   FILAS
   ==================================================== */

.rdc-public-company-contact-row {
    display: grid;

    grid-template-columns:
        minmax(92px, auto)
        1fr;

    gap: .55rem;

    align-items: center;

    padding:
        .48rem
        0;

    border-top:
        1px solid
        rgba(0, 35, 89, .07);
}


.rdc-public-company-contact-row:first-of-type {
    border-top: 0;
}


.rdc-public-company-contact-number {
    color: #002359;

    font-size: .76rem;
    line-height: 1.2;

    font-weight: 850;

    white-space: nowrap;
}


/* ====================================================
   BOTONES
   ==================================================== */

.rdc-public-company-contact-buttons {
    display: flex;

    gap: .35rem;

    justify-content: flex-end;
}


.rdc-public-company-contact-button {
    display: inline-flex;

    gap: .3rem;

    min-height: 31px;

    padding:
        .38rem
        .57rem;

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

    border-radius: 999px;

    font-size: .68rem;
    line-height: 1;

    font-weight: 800;

    text-decoration:
        none
        !important;

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


.rdc-public-company-contact-button.is-call {
    background: #002f67;

    color:
        #fff
        !important;
}


.rdc-public-company-contact-button.is-whatsapp {
    background: #e7f8ed;

    border:
        1px solid
        rgba(24, 135, 84, .28);

    color:
        #157347
        !important;
}


/* ====================================================
   ACCIONES DEL SOCIO
   ==================================================== */

.rdc-public-company-actions {
    margin-top: .75rem;
}


/* ====================================================
   HOVER
   ==================================================== */

@media (hover: hover) and (pointer: fine) {

    .rdc-public-company-contact-button:hover,
    .rdc-public-company-contact-button:focus {
        transform:
            translateY(-2px);

        box-shadow:
            0 4px 10px
            rgba(0, 35, 89, .14);
    }


    .rdc-public-company-contact-button.is-call:hover,
    .rdc-public-company-contact-button.is-call:focus {
        background: #07518e;
    }


    .rdc-public-company-contact-button.is-whatsapp:hover,
    .rdc-public-company-contact-button.is-whatsapp:focus {
        background: #d9f4e3;
    }

}


/* ====================================================
   CELULAR
   ==================================================== */

@media (max-width: 640px) {

    .rdc-public-company-redecomsa-contact {
        padding:
            .75rem
            .7rem;
    }


    .rdc-public-company-contact-row {
        grid-template-columns: 1fr;

        gap: .42rem;
    }


    .rdc-public-company-contact-number {
        font-size: .8rem;
    }


    .rdc-public-company-contact-buttons {
        display: grid;

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

        width: 100%;
    }


    .rdc-public-company-contact-row.is-whatsapp-only
    .rdc-public-company-contact-buttons {
        grid-template-columns: 1fr;
    }


    .rdc-public-company-contact-button {
        width: 100%;

        min-height: 36px;

        font-size: .72rem;
    }

}


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

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

    .rdc-public-company-contact-button {
        transition: none;
    }

}


/* REDECOMSA-SOCIOS-CARD-CONTACTS-1.0.0 END */

/* =====================================================
   REDECOMSA-SERVICE-PREVIEW-PAGES-1.0.0 START
   Consultoría / Capacitación
   ===================================================== */

.rdc-service-preview {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    color: #102d50;
}

.rdc-service-preview__hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 1rem;
    background:
        linear-gradient(
            135deg,
            #032d63 0%,
            #075b9f 100%
        );
    color: #fff;
}

.rdc-service-preview__hero::after {
    content: "";
    position: absolute;
    width: 15rem;
    height: 15rem;
    right: -5rem;
    bottom: -7rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.rdc-service-preview__eyebrow {
    position: relative;
    z-index: 1;
    margin: 0 0 .65rem;
    color: #ff7900;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.rdc-service-preview__hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.55rem);
    line-height: 1.05;
}

.rdc-service-preview__lead {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 1.1rem 0 0;
    color: rgba(255, 255, 255, .94);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.7;
}

.rdc-service-preview__body {
    padding: clamp(2rem, 5vw, 4rem) 0 0;
}

.rdc-service-preview__intro {
    max-width: 820px;
    margin-bottom: 1.75rem;
}

.rdc-service-preview__kicker {
    margin: 0 0 .45rem;
    color: #ff6200;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.rdc-service-preview__intro h2 {
    margin: 0 0 .85rem;
    color: #072f5f;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1.2;
}

.rdc-service-preview__intro p {
    margin: 0;
    color: #52677e;
    line-height: 1.75;
}

.rdc-service-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.rdc-service-preview__card {
    padding: 1.5rem;
    border: 1px solid #dbe5ef;
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 12px 35px rgba(9, 48, 88, .06);
}

.rdc-service-preview__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    margin-bottom: .9rem;
    border-radius: .55rem;
    background: #fff1e8;
    color: #f15a24;
    font-size: .78rem;
    font-weight: 800;
}

.rdc-service-preview__card h3 {
    margin: 0 0 .65rem;
    color: #073365;
    font-size: 1.06rem;
}

.rdc-service-preview__card p {
    margin: 0;
    color: #5a6d81;
    font-size: .94rem;
    line-height: 1.65;
}

.rdc-service-preview__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-top: 3px solid #ff6200;
    border-radius: .8rem;
    background: #f5f8fb;
}

.rdc-service-preview__cta h2 {
    margin: 0 0 .35rem;
    color: #073365;
    font-size: 1.25rem;
}

.rdc-service-preview__cta p {
    margin: 0;
    color: #5a6d81;
}

.rdc-service-preview__actions {
    display: flex;
    flex: 0 0 auto;
    gap: .65rem;
}

.rdc-service-preview__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: .7rem 1rem;
    border-radius: .6rem;
    font-weight: 700;
    text-decoration: none !important;
}

.rdc-service-preview__button--primary {
    background: #ff5500;
    color: #fff !important;
}

.rdc-service-preview__button--secondary {
    border: 1px solid #b9c9d9;
    background: #fff;
    color: #073365 !important;
}

@media (max-width: 56rem) {

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

    .rdc-service-preview__cta {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 40rem) {

    .rdc-service-preview__hero {
        padding: 1.6rem 1.25rem;
        border-radius: .75rem;
    }

    .rdc-service-preview__body {
        padding-top: 1.75rem;
    }

    .rdc-service-preview__card,
    .rdc-service-preview__cta {
        padding: 1.2rem;
    }

    .rdc-service-preview__actions {
        width: 100%;
        flex-direction: column;
    }

    .rdc-service-preview__button {
        width: 100%;
    }

}

/* REDECOMSA-SERVICE-PREVIEW-PAGES-1.0.0 END */

/* =====================================================
   REDECOMSA-GLOBAL-NAV-9-ITEMS-1.0.0 START

   Menú principal de 9 opciones.

   Diagnóstico real:
   - viewport medido: 1068 px
   - contenedor menú: 1068 px
   - display: grid
   - configuración anterior: 8 columnas
   - Contacto pasaba a segunda fila

   Se conserva:
   - tipografía actual
   - altura compacta
   - navegación móvil/offcanvas
   - línea naranja
   - alineación vertical
   ===================================================== */

@media (min-width: 60rem) {

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel {
        display: grid !important;

        /*
         * 1  Inicio
         * 2  ¿Quiénes somos?
         * 3  Servicios integrales
         * 4  Socios comerciales
         * 5  Catálogos
         * 6  Representación de marcas
         * 7  Consultoría
         * 8  Capacitación
         * 9  Contacto
         */

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1.4fr)
            minmax(0, 1.1fr)
            minmax(0, 1.5fr)
            minmax(0, .9fr)
            minmax(0, 1.65fr)
            minmax(0, 1fr)
            minmax(0, 1fr)
            minmax(0, .9fr)
            !important;

        grid-auto-flow: row !important;
        grid-auto-columns: auto !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 0 !important;
    }


    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        margin: 0 !important;
    }


    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        /*
         * Mantener aproximadamente el padding
         * medido actualmente: 6.08 px.
         */
        padding-left: .38rem !important;
        padding-right: .38rem !important;

        white-space: normal !important;
        overflow-wrap: normal;
    }


    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container
    .g-menu-item-content,

    #g-header.redecomsa-header
    .g-main-nav
    .g-toplevel
    > li
    > .g-menu-item-container
    .g-menu-item-title {
        min-width: 0 !important;
        max-width: 100% !important;

        white-space: normal !important;

        text-align: center !important;
    }

}

/* REDECOMSA-GLOBAL-NAV-9-ITEMS-1.0.0 END */

/* =====================================================
   REDECOMSA-SERVICE-PREVIEW-NO-BREADCRUMBS-1.0.0 START

   Consultoría    — Itemid 120
   Capacitación  — Itemid 121

   Se oculta:
   - breadcrumb
   - módulo breadcrumb
   - fila/contenedor residual de Gantry
   ===================================================== */

body.itemid-120 .g-breadcrumbs,
body.itemid-120 .mod-breadcrumbs,
body.itemid-120 .breadcrumb,
body.itemid-120 .breadcrumbs,
body.itemid-120 nav[aria-label="Breadcrumbs"],
body.itemid-120 nav[aria-label="breadcrumb"],

body.itemid-121 .g-breadcrumbs,
body.itemid-121 .mod-breadcrumbs,
body.itemid-121 .breadcrumb,
body.itemid-121 .breadcrumbs,
body.itemid-121 nav[aria-label="Breadcrumbs"],
body.itemid-121 nav[aria-label="breadcrumb"] {
    display: none !important;

    width: 0 !important;
    height: 0 !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}


/*
 * Eliminar también el contenedor de Gantry
 * cuando únicamente contiene breadcrumbs.
 */

body.itemid-120
.platform-content:has(.mod-breadcrumbs),

body.itemid-120
.moduletable:has(.mod-breadcrumbs),

body.itemid-120
.g-grid:has(.mod-breadcrumbs),

body.itemid-121
.platform-content:has(.mod-breadcrumbs),

body.itemid-121
.moduletable:has(.mod-breadcrumbs),

body.itemid-121
.g-grid:has(.mod-breadcrumbs) {
    display: none !important;

    width: 0 !important;
    height: 0 !important;

    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}

/* REDECOMSA-SERVICE-PREVIEW-NO-BREADCRUMBS-1.0.0 END */

/* =====================================================
   REDECOMSA-SERVICE-PREVIEW-SPACING-1.0.0 START

   Consultoría   — Itemid 120
   Capacitación — Itemid 121

   Medición real a 1068px:

   Servicios Itemid 106:
   #g-main top         148.21px
   #g-main padding-top 0px
   artículo top        180.21px

   Consultoría Itemid 120:
   #g-main top         148.21px
   #g-main padding-top 24px
   artículo top        204.21px

   Diferencia exacta: 24px.

   Se corrige únicamente el contenedor responsable.
   ===================================================== */

body.itemid-120
#g-main,

body.itemid-121
#g-main {
    padding-top: 0 !important;
    padding-block-start: 0 !important;
}

/* REDECOMSA-SERVICE-PREVIEW-SPACING-1.0.0 END */
