@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
/* ── Variables ── */
:root {
    --color-primary:    #095CA7;
    --color-secondary:  #005EAA;
    --color-accent:     #D85D11;
    --color-bg:         #F0F0F0;
    --color-text:       #282829;
    --color-text-light: rgba(255, 255, 255, 0.85);
    --color-white:      #ffffff;
    --color-border:     #CCCCCC;

    --radius-base:   12px;
    --radius-input:  52px;
    --radius-btn:    24px;

    --font-main: 'Instrument Sans', sans-serif;

    --shadow-nav: 0 2px 16px rgba(9, 92, 167, 0.20);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --transition: 0.22s ease;
}

/* ── Base Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
.zd-portal-body {
    font-family: var(--font-main);
    font-size: 13px;
    background-color: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}
/* ============================================================
   FOOTER
   ============================================================ */

/* ── Root ── */
.Footer__root {
    background-color: var(--color-primary);
    font-family: var(--font-main);
    margin-top: auto;
}

/* ── Main section ── */
.Footer__main {
    padding: 52px 32px 0;
}

.Footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 44px;
}

/* Brand column */
.Footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.Footer__logoLink {
    display: inline-block;
    width: fit-content;
}

.Footer__logo {
    height: 36px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity var(--transition);
}

.Footer__logo:hover {
    opacity: 1;
}

.Footer__tagline {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 500;
    margin-top: 4px;
}

.Footer__powered {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 2px;
}

.Footer__powered strong {
    color: rgba(255, 255, 255, 0.58);
    font-weight: 600;
}

/* Links columns */
.Footer__linksGroup {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.Footer__colTitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.Footer__linkList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.Footer__link {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    font-weight: 400;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.Footer__link:hover {
    color: var(--color-white) !important;
    padding-left: 4px;
}

/* Divider */
.Footer__divider {
    max-width: 1280px;
    margin: 0 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
}

/* ── Bottom bar ── */
.Footer__footerCopyrigt {
    padding: 16px 32px;
}

.Footer__container2 {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--font-main);
    font-size: 12px;
}

.Footer__copy {
    color: rgba(255, 255, 255, 0.38);
}

.Footer__bottomRight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.38);
}

.Footer__bottomRight span {
    color: rgba(255, 255, 255, 0.38);
}

.Footer__footerLink {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    transition: color var(--transition);
    text-decoration: none;
}

.Footer__footerLink:hover {
    color: var(--color-accent);
}

/* ── Responsive Footer ── */
@media (max-width: 768px) {
    .Footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .Footer__main {
        padding: 40px 20px 0;
    }

    .Footer__footerCopyrigt {
        padding: 14px 20px;
    }

    .Footer__container2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* ============================================================
   Mensaje de Bienvenida
   ============================================================ */
.Header__bgColor {
    opacity: 0.6;
}
