/* Escuela de Gimnasia — sitio público
   Balance: energía de marca EG + claridad parental
   Colores club: navy #0a4b6e · magenta #d82781 · cyan #4ac2e5 */

:root {
    /* Extraídos de piezas oficiales EG */
    --eg-blue: #0a4b6e;
    --eg-blue-deep: #2c4c64;
    --eg-magenta: #d8438f;
    --eg-magenta-dark: #c0357c;
    --eg-cyan: #4ac2e5;
    --eg-cyan-soft: #a2d2df;
    --eg-ice: #d9e9ed;
    --eg-ink: #0f172a;
    --eg-muted: #5b6b7c;
    --eg-line: #d7e3ec;
    --eg-paper: #eef6f8;
    --eg-white: #ffffff;
    --eg-radius: 14px;
    --eg-shadow: 0 16px 40px rgba(10, 75, 110, 0.12);
    --eg-max: 1100px;
    --eg-header-h: 72px;
    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;

    /* Alias para vistas migradas desde layouts.web */
    --brand-magenta: var(--eg-magenta);
    --brand-magenta-dark: var(--eg-magenta-dark);
    --brand-blue: var(--eg-blue);
    --brand-cyan: var(--eg-cyan);
    --bg-body: var(--eg-paper);
    --text-color: var(--eg-ink);
    --text-muted: var(--eg-muted);
    --white: var(--eg-white);
    --border-color: var(--eg-line);
}

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

html { scroll-behavior: smooth; }

body.site-body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--eg-ink);
    background: var(--eg-white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-skip {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--eg-magenta);
    color: #fff;
    padding: 8px 12px;
    z-index: 1000;
}
.site-skip:focus { left: 12px; top: 12px; }

/* ---------- Announcement ---------- */
.site-announce {
    background: var(--eg-blue-deep);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 11px 16px;
}
.site-announce a {
    color: var(--eg-cyan);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- Header (transparente sobre hero) ---------- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--eg-header-h);
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
    position: fixed;
    background: rgba(6, 47, 70, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(4, 28, 43, 0.25);
}
.site-header__inner {
    width: min(100% - 32px, var(--eg-max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-logo__mark {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: transparent;
    border: none;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
}
.site-logo__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.site-logo__text strong {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}
.site-logo__text span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-nav a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 12px;
    border-radius: 999px;
    transition: background .15s, color .15s, opacity .15s;
}
.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.site-nav__cta {
    margin-left: 6px !important;
    background: var(--eg-cyan) !important;
    color: #062f46 !important;
    font-weight: 800 !important;
    padding: 10px 18px !important;
    box-shadow: 0 8px 20px rgba(74, 194, 229, 0.28);
}
.site-nav__cta:hover {
    background: #6fd0eb !important;
    color: #041c2b !important;
}
.site-nav__cta--ghost {
    margin-left: 10px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    box-shadow: none;
}
.site-nav__cta--ghost:hover {
    background: #fff !important;
    color: #062f46 !important;
    border-color: #fff;
}
.site-nav a.site-nav__exit {
    color: #f472b6;
    font-weight: 800;
    opacity: 1;
    padding: 9px 13px;
    border: 1px solid #f472b6;
    border-radius: 6px;
    background: rgba(216, 39, 129, 0.1);
}
.site-nav a.site-nav__exit:hover,
.site-nav a.site-nav__exit:focus-visible {
    background: #d82781;
    color: #fff;
}

.site-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.site-whatsapp__message {
    position: relative;
    display: block;
    padding: 11px 15px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
    color: #0a4b6e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}
.site-whatsapp__message::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -7px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #dbe3ef;
    border-right: 1px solid #dbe3ef;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
}
.site-whatsapp__message strong { color: #d82781; }
.site-whatsapp__icon {
    position: relative;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.36);
    color: #fff;
    font-size: 30px;
    transition: transform .18s ease;
}
.site-whatsapp:hover .site-whatsapp__icon { transform: scale(1.08); }
@media (max-width: 700px) {
    .site-whatsapp {
        right: 14px;
        bottom: 88px;
        gap: 7px;
    }
    .site-whatsapp__message {
        padding: 9px 11px;
        font-size: 10px;
    }
    .site-whatsapp__icon {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }
}

/* Grupos Tienda / Entradas: solo menú móvil */
.site-nav-group {
    display: none;
}

.site-menu-btn {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 900px) {
    .site-menu-btn { display: inline-grid; place-items: center; }
    .site-nav {
        display: none;
        position: absolute;
        top: var(--eg-header-h);
        left: 0;
        right: 0;
        background: #0b1520;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 16px 18px;
        gap: 2px;
        box-shadow: 0 16px 40px rgba(4, 28, 43, 0.45);
        max-height: calc(100vh - var(--eg-header-h));
        overflow-y: auto;
    }
    .site-nav.is-open { display: flex; }
    .site-nav > a { padding: 13px 4px; color: rgba(255,255,255,.88); border-radius: 0; }
    .site-nav > a:hover,
    .site-nav > a.is-active { background: transparent; color: #fff; }
    .site-nav__desktop-link { display: none !important; }
    /* En móvil Ingresar / Inscribirse van en el dock inferior, no en el menú ☰ */
    .site-nav .site-nav__cta {
        display: none !important;
    }
    .site-nav__cart {
        width: 100%;
        height: 48px;
        margin: 4px 0;
        border-radius: 12px;
    }

    .site-nav-group {
        display: block;
        padding: 14px 4px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        margin-top: 6px;
    }
    .site-nav-group__title {
        margin: 0 0 10px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }
    .site-nav-group__link {
        display: block !important;
        padding: 8px 0 8px 2px !important;
        color: var(--eg-magenta) !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 0 !important;
        background: transparent !important;
    }
    .site-nav-group__link--muted {
        color: rgba(255, 255, 255, 0.78) !important;
        font-weight: 700 !important;
    }
    .site-nav-group__link:hover {
        color: var(--eg-cyan) !important;
    }
}

/* ---------- Layout ---------- */
.site-main {
    min-height: 60vh;
}
.site-wrap {
    width: min(100% - 32px, var(--eg-max));
    margin: 0 auto;
}
.site-section { padding: 68px 0; }
.site-section--paper { background: var(--eg-paper); }
.site-section--ice { background: var(--eg-ice); }
.site-section--brand {
    background: linear-gradient(145deg, var(--eg-blue-deep), var(--eg-blue) 55%, #0d5a82);
    color: #fff;
}
.site-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eg-magenta);
    margin-bottom: 12px;
}
.site-section--brand .site-kicker { color: var(--eg-cyan); }
.site-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1;
    margin: 0 0 14px;
    color: var(--eg-blue);
}
.site-section--brand .site-title { color: #fff; }
.site-lead {
    margin: 0;
    max-width: 54ch;
    color: var(--eg-muted);
    font-size: 1.05rem;
}
.site-section--brand .site-lead { color: rgba(255,255,255,.84); }
.site-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn-eg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid transparent;
    transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn-eg:hover { transform: translateY(-1px); }
.btn-eg--primary {
    background: var(--eg-magenta);
    color: #fff;
}
.btn-eg--primary:hover { background: var(--eg-magenta-dark); color: #fff; }
.btn-eg--ghost {
    background: transparent;
    border-color: rgba(10, 75, 110, 0.22);
    color: var(--eg-blue);
}
.btn-eg--ghost:hover {
    border-color: var(--eg-magenta);
    color: var(--eg-magenta);
}
.btn-eg--light {
    background: #fff;
    color: var(--eg-blue);
}
.btn-eg--light:hover { background: var(--eg-cyan); color: var(--eg-blue-deep); }
.btn-eg--outline-light {
    background: transparent;
    border-color: rgba(255,255,255,.45);
    color: #fff;
}
.btn-eg--outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

/* ---------- Formularios inscripción (migrados de layouts.web) ---------- */
.site-body .card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(10, 75, 110, 0.06);
    border: 1px solid var(--eg-line);
}
.site-body .btn-primary {
    background: var(--eg-magenta);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background .15s;
}
.site-body .btn-primary:hover {
    background: var(--eg-magenta-dark);
    color: #fff;
}
.site-body .checkout-container {
    width: min(100% - 32px, 800px);
    margin: 0 auto;
    padding: calc(var(--eg-header-h) + 28px) 0 56px;
}

/* ---------- Hero: brand energy + clarity ---------- */
.site-hero {
    position: relative;
    min-height: min(82vh, 720px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 88% 12%, rgba(74, 194, 229, 0.38), transparent 55%),
        radial-gradient(ellipse 55% 45% at 8% 85%, rgba(216, 39, 129, 0.32), transparent 50%),
        linear-gradient(145deg, #062f46 0%, #0a4b6e 48%, #0d5f88 100%);
    color: #fff;
}
.site-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at 40% 50%, #000 20%, transparent 75%);
    pointer-events: none;
}
.site-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.site-hero__orb--1 {
    width: 380px;
    height: 380px;
    right: -70px;
    top: -50px;
    background: radial-gradient(circle, rgba(216,39,129,.42), transparent 70%);
    animation: egFloat 8s ease-in-out infinite;
}
.site-hero__orb--2 {
    width: 260px;
    height: 260px;
    left: 6%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(74,194,229,.32), transparent 70%);
    animation: egFloat 10s ease-in-out infinite reverse;
}
@keyframes egFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.site-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1240px);
    margin: 0 auto;
    padding: calc(var(--eg-header-h) + 56px) 0 48px;
}
.site-hero__inner--split {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(400px, 1.35fr);
    gap: 28px;
    align-items: start;
}
.site-hero__inner--split .eg-spotlight {
    margin-top: 18px;
}
@media (max-width: 900px) {
    .site-hero__inner--split {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }
    .site-hero__inner--split .eg-spotlight {
        margin-top: 0;
    }
}
.site-hero__copy-col {
    max-width: 30rem;
}

/* Spotlight / slider — grande, rectangular limpio */
.eg-spotlight {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    min-height: 480px;
}
.eg-spotlight__track {
    position: relative;
    min-height: 480px;
}
.eg-spotlight__slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    pointer-events: none;
}
.eg-spotlight__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
    min-height: 480px;
}
.eg-spotlight__slide.is-clickable {
    cursor: pointer;
}
.eg-spotlight__slide.is-clickable:hover .eg-spotlight__cta {
    background: var(--eg-magenta-dark);
}
.eg-spotlight__media {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #062f46, #0a4b6e);
    overflow: hidden;
    z-index: 0;
}
.eg-spotlight__media img,
.eg-spotlight__media video,
.eg-spotlight__media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}
.eg-spotlight__media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.eg-spotlight__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 56px 18px 34px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(to top, rgba(4, 24, 38, 0.92) 0%, rgba(4, 24, 38, 0.72) 55%, rgba(4, 24, 38, 0) 100%);
    pointer-events: none;
}
.eg-spotlight__body a,
.eg-spotlight__body .eg-spotlight__cta,
.eg-spotlight__body .eg-spotlight__social a {
    pointer-events: auto;
}
.eg-spotlight__kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--eg-cyan);
}
.eg-spotlight__body h2 {
    margin: 0;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.35rem;
    line-height: 1.1;
    color: #fff;
}
.eg-spotlight__body p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}
.eg-spotlight__detalle {
    margin: 2px 0 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    max-height: 4.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: pre-line;
}
.eg-spotlight__social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}
.eg-spotlight__social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    text-decoration: none;
    transition: background .15s;
}
.eg-spotlight__social a:hover {
    background: var(--eg-magenta);
}
.eg-spotlight__cta {
    margin-top: auto;
    align-self: flex-start;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    background: var(--eg-magenta);
    padding: 9px 14px;
    border-radius: 999px;
    transition: background .15s;
}
.eg-spotlight__cta:hover {
    background: var(--eg-magenta-dark);
}
.eg-spotlight__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    pointer-events: none;
}
.eg-spotlight__dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    pointer-events: auto;
    transition: width .2s, background .2s;
}
.eg-spotlight__dots button.is-active {
    width: 22px;
    background: var(--eg-cyan);
}

.site-hero__brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0 0 16px;
    max-width: 11ch;
}
.site-hero__brand em {
    font-style: normal;
    color: var(--eg-cyan);
}
.site-hero__copy {
    max-width: 38ch;
    font-size: clamp(1.02rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,.88);
    margin: 0;
}
.site-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}
.site-hero__meta span::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--eg-magenta);
    margin-right: 8px;
    vertical-align: middle;
}

/* ---------- Content blocks ---------- */
.site-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}
@media (max-width: 860px) {
    .site-split { grid-template-columns: 1fr; gap: 24px; }
}

.site-panel {
    border-radius: calc(var(--eg-radius) + 4px);
    padding: 28px;
    background: linear-gradient(155deg, rgba(10,75,110,.95), rgba(216,39,129,.78));
    color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--eg-shadow);
    position: relative;
    overflow: hidden;
}
.site-panel::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% 30%;
    height: 70%;
    background: radial-gradient(circle, rgba(74,194,229,.35), transparent 65%);
    pointer-events: none;
}
.site-panel strong {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.site-panel p {
    position: relative;
    z-index: 1;
    margin: 10px 0 0;
    color: rgba(255,255,255,.88);
    max-width: 28ch;
}

.site-callout {
    background: var(--eg-blue);
    color: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: var(--eg-shadow);
}
.site-callout h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 800;
}
.site-callout p {
    margin: 0 0 12px;
    color: rgba(255,255,255,.86);
    font-size: 0.95rem;
}
.site-callout a {
    color: var(--eg-cyan);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.site-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 860px) {
    .site-grid-2,
    .site-grid-3 { grid-template-columns: 1fr; }
}

.site-tile {
    border: 1px solid var(--eg-line);
    border-radius: var(--eg-radius);
    padding: 24px;
    background: #fff;
    transition: border-color .2s, transform .2s;
}
.site-tile:hover {
    border-color: rgba(216, 39, 129, 0.35);
    transform: translateY(-2px);
}
.site-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(74, 194, 229, 0.18);
    color: var(--eg-blue);
    margin-bottom: 14px;
    font-size: 17px;
    font-weight: 800;
}
.site-tile h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.25rem;
    color: var(--eg-blue);
}
.site-tile p {
    margin: 0;
    color: var(--eg-muted);
    font-size: 0.96rem;
}
.site-tile a.tile-link {
    display: inline-flex;
    margin-top: 14px;
    font-weight: 800;
    font-size: 13px;
    color: var(--eg-magenta);
    text-decoration: none;
}

.site-steps {
    counter-reset: egstep;
    display: grid;
    gap: 12px;
}
.site-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: var(--eg-radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}
.site-section:not(.site-section--brand) .site-step {
    background: #fff;
    border-color: var(--eg-line);
}
.site-step::before {
    counter-increment: egstep;
    content: counter(egstep);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    background: var(--eg-magenta);
    color: #fff;
}
.site-step h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}
.site-section--brand .site-step h3 { color: #fff; }
.site-section:not(.site-section--brand) .site-step h3 { color: var(--eg-blue); }
.site-step p {
    margin: 0;
    font-size: 0.95rem;
}
.site-section--brand .site-step p { color: rgba(255,255,255,.78); }
.site-section:not(.site-section--brand) .site-step p { color: var(--eg-muted); }

.site-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.site-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--eg-muted);
}
.site-list li i {
    color: var(--eg-magenta);
    margin-top: 4px;
}

/* ---------- Inner pages ---------- */
.page-hero {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(74,194,229,.22), transparent 45%),
        linear-gradient(135deg, var(--eg-blue-deep), var(--eg-blue));
    color: #fff;
    padding: calc(var(--eg-header-h) + 48px) 0 50px;
}
.page-hero h1 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 0.95;
    margin: 0 0 12px;
}
.page-hero p {
    margin: 0;
    max-width: 48ch;
    color: rgba(255,255,255,.84);
    font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #041c2b;
    color: rgba(255,255,255,.78);
    padding: 52px 0 26px;
}
.site-footer .site-logo__mark {
    background: transparent;
    border: none;
}
.site-footer .site-logo__text span {
    color: rgba(255, 255, 255, 0.55);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}
@media (max-width: 800px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    font-size: 1rem;
}
.site-footer a {
    color: rgba(255,255,255,.78);
    text-decoration: none;
}
.site-footer a:hover { color: var(--eg-cyan); }
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
}

/* ---------- Dock móvil propio: Inscribirme + Ingresar ---------- */
.eg-mobile-dock {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    gap: 10px;
    align-items: stretch;
    padding: 10px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(6, 47, 70, 0.94) 0%, rgba(10, 75, 110, 0.92) 55%, rgba(216, 67, 143, 0.88) 140%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 18px 40px rgba(4, 28, 43, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.eg-mobile-dock__cta {
    flex: 1.35;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 14px;
    text-decoration: none;
    color: #062f46;
    background: linear-gradient(135deg, #ffffff 0%, #e8f8fd 100%);
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(74, 194, 229, 0.28);
}
.eg-mobile-dock__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--eg-magenta);
    color: #fff;
    font-size: 14px;
}
.eg-mobile-dock__copy {
    display: grid;
    gap: 1px;
    line-height: 1.15;
}
.eg-mobile-dock__copy strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.eg-mobile-dock__copy small {
    font-size: 11px;
    font-weight: 600;
    color: rgba(6, 47, 70, 0.65);
}
.eg-mobile-dock__ghost {
    flex: 0.9;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 52px;
    padding: 8px 10px;
    text-decoration: none;
    color: #fff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.eg-mobile-dock__ghost i {
    font-size: 15px;
    color: var(--eg-cyan);
}
.eg-mobile-dock__ghost:active,
.eg-mobile-dock__cta:active {
    transform: scale(0.98);
}
@media (max-width: 900px) {
    .eg-mobile-dock { display: flex; }
    .site-footer { padding-bottom: 110px; }
    .eg-proposal-switch { bottom: 92px; }
}

/* ---------- Age cards (brand graphics) ---------- */
.eg-age-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 860px) {
    .eg-age-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}
.eg-age-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--eg-shadow);
    transition: transform .2s ease;
    text-decoration: none;
}
.eg-age-card:hover { transform: translateY(-4px); }
.eg-age-card img {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    object-fit: contain;
    display: block;
    background: #fff;
}

.eg-anni {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}
@media (max-width: 860px) {
    .eg-anni { grid-template-columns: 1fr; }
}
.eg-anni__img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--eg-shadow);
}
.eg-anni__img img {
    width: 100%;
    height: auto;
}

.eg-historia {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--eg-shadow);
}
.eg-historia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}
.eg-historia__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px;
    background: linear-gradient(transparent, rgba(6, 47, 70, 0.85));
    color: #fff;
}
.eg-historia__caption strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.eg-copy p {
    color: var(--eg-ink-soft, #3a5568);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}
.eg-copy p:last-of-type {
    margin-bottom: 0;
}
.eg-copy .site-actions {
    margin-top: 1.5rem;
}
.eg-valores {
    width: min(100%, var(--eg-max));
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}
.eg-valores img {
    width: 100%;
    height: auto;
    display: block;
}
@media (min-width: 900px) {
    .eg-valores {
        width: min(100% - 32px, var(--eg-max));
        border-radius: 18px;
        box-shadow: var(--eg-shadow);
        margin: 40px auto;
    }
}

.eg-sede {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}
.eg-sede--reverse .eg-sede__info { order: 2; }
.eg-sede--reverse .eg-sede__map { order: 1; }
@media (max-width: 860px) {
    .eg-sede { grid-template-columns: 1fr; }
    .eg-sede--reverse .eg-sede__info,
    .eg-sede--reverse .eg-sede__map { order: initial; }
}
.eg-sede__info {
    border: 1px solid var(--eg-line);
    border-radius: 18px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(10, 75, 110, 0.05);
}
.eg-sede__map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--eg-line);
    box-shadow: var(--eg-shadow);
    min-height: 320px;
    background: var(--eg-paper);
}
.eg-sede__map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.eg-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 0.95rem;
}
.eg-alert--ok {
    background: #dcfce7;
    color: #166534;
}
.eg-alert--err {
    background: #fef2f2;
    color: #991b1b;
}

.eg-shop {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 860px) {
    .eg-shop { grid-template-columns: 1fr; }
}
.eg-shop__side {
    border: 1px solid var(--eg-line);
    border-radius: 16px;
    padding: 20px;
    background: #fff;
    position: sticky;
    top: calc(var(--eg-header-h) + 16px);
}
.eg-shop__side h3 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 1rem;
    color: var(--eg-blue);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--eg-line);
}
.eg-shop__side ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.eg-shop__side li { margin-bottom: 4px; }
.eg-shop__side a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--eg-muted);
    transition: background .15s, color .15s;
}
.eg-shop__side a:hover,
.eg-shop__side a.is-active {
    background: rgba(216, 67, 143, 0.1);
    color: var(--eg-magenta);
}

.eg-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 8px 8px 16px;
    background: #fff;
    border: 1px solid var(--eg-line);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(10, 75, 110, 0.06);
}
.eg-search i { color: var(--eg-muted); }
.eg-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--eg-ink);
    min-width: 0;
}
.eg-search button {
    border: none;
    background: var(--eg-magenta);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
}
.eg-search button:hover { background: var(--eg-magenta-dark); }
.eg-search--hero {
    margin: 28px 0 0;
    max-width: 520px;
    border: none;
}
.eg-search--hero button {
    background: var(--eg-cyan);
    color: #062f46;
}
.eg-search--hero button:hover { background: #6fd0eb; }

.eg-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}
.eg-product {
    background: #fff;
    border: 1px solid var(--eg-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.eg-product:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 194, 229, 0.45);
    box-shadow: var(--eg-shadow);
}
.eg-product__img {
    position: relative;
    padding-top: 100%;
    background: var(--eg-paper);
}
.eg-product__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eg-product__ph {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #cbd5e1;
}
.eg-product__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}
.eg-product__cat {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--eg-muted);
}
.eg-product__body h3 {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--eg-blue);
    line-height: 1.3;
}
.eg-product__link {
    color: inherit;
    text-decoration: none;
}
.eg-product__link:hover h3,
.eg-product__body h3 .eg-product__link:hover {
    color: var(--eg-magenta);
}
.eg-product__price {
    margin: 6px 0 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--eg-magenta);
}
.eg-product__body form { margin-top: auto; }
.eg-product__body .btn-eg { font-size: 0.88rem; padding: 10px 14px; }
.eg-product__body .btn-eg i { margin-right: 6px; }

.eg-pagination { margin-top: 28px; }
.eg-empty {
    text-align: center;
    padding: 56px 24px;
    border: 1px dashed var(--eg-line);
    border-radius: 16px;
    background: #fff;
    color: var(--eg-muted);
}
.eg-empty i {
    display: block;
    font-size: 2.4rem;
    opacity: 0.35;
    margin-bottom: 12px;
}
.eg-empty h3 {
    margin: 0 0 8px;
    color: var(--eg-blue);
}
.eg-empty a {
    color: var(--eg-magenta);
    font-weight: 700;
}

.eg-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.eg-count {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--eg-muted);
}

.eg-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.eg-event {
    background: #fff;
    border: 1px solid var(--eg-line);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}
.eg-event:hover {
    transform: translateY(-3px);
    box-shadow: var(--eg-shadow);
}
.eg-event.is-past {
    opacity: 0.62;
    filter: grayscale(0.55);
}
.eg-event.is-past:hover {
    transform: none;
    box-shadow: none;
}
.eg-event__img {
    height: 180px;
    background: linear-gradient(135deg, var(--eg-blue-deep), var(--eg-blue));
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.45);
    font-size: 2rem;
    position: relative;
}
.eg-event__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
}
.eg-event__badge--muted { background: #64748b; }
.eg-event__badge--warn { background: #dc2626; }
.eg-event__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.eg-event__body h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--eg-blue);
    line-height: 1.35;
}
.eg-event__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.86rem;
    color: var(--eg-muted);
    font-weight: 600;
}
.eg-event__meta i {
    width: 16px;
    margin-right: 4px;
    color: #94a3b8;
}
.eg-event__foot {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.eg-event__price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--eg-ink);
}
.eg-event__price small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--eg-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.eg-event__price.is-muted { color: var(--eg-muted); }
.eg-event__price.is-warn { color: #dc2626; }
.eg-event__cta {
    border: 1.5px solid var(--eg-magenta);
    color: var(--eg-magenta);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 999px;
    transition: background .15s, color .15s;
}
.eg-event:hover .eg-event__cta {
    background: var(--eg-magenta);
    color: #fff;
}

.eg-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    background: #fff;
    border: 1px solid var(--eg-line);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(10, 75, 110, 0.05);
}
@media (max-width: 860px) {
    .eg-info-strip { grid-template-columns: 1fr; }
}
.eg-info-strip h4 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--eg-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}
.eg-info-strip h4 i { color: var(--eg-cyan); }
.eg-info-strip p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--eg-muted);
}
.eg-info-strip a {
    color: var(--eg-magenta);
    font-weight: 700;
    text-decoration: none;
}
.eg-info-strip a:hover { text-decoration: underline; }

.site-nav__cart {
    position: relative;
    display: inline-grid !important;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.1);
    color: #fff !important;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 4px;
}
.site-nav__cart:hover {
    background: rgba(255,255,255,.18) !important;
}
.site-nav__cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--eg-magenta);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.eg-cta-box {
    margin-top: 48px;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 32px;
    border: 2px solid var(--eg-magenta);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--eg-shadow);
}
.eg-cta-box h2 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--eg-blue);
}
.eg-cta-box > p {
    margin: 0 0 22px;
    color: var(--eg-muted);
    font-size: 1.02rem;
}
.eg-cta-box .btn-eg {
    min-width: 200px;
}
.eg-cta-box .btn-eg i {
    margin-right: 8px;
}
.eg-cta-box__hint {
    margin: 18px 0 0 !important;
    font-size: 0.92rem !important;
}
.eg-cta-box__hint a {
    color: var(--eg-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.eg-cta-box__hint a:hover {
    color: var(--eg-magenta);
}

.eg-logged-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 28px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(74, 194, 229, 0.14);
    border: 1px solid rgba(74, 194, 229, 0.35);
    color: var(--eg-blue);
    font-size: 0.95rem;
}
.eg-logged-banner i {
    color: var(--eg-cyan);
}
.eg-logged-banner a {
    margin-left: auto;
    font-weight: 800;
    color: var(--eg-magenta);
    text-decoration: none;
}
.eg-logged-banner a:hover {
    text-decoration: underline;
}

.eg-step {
    position: relative;
    text-align: center;
    border: 1px solid var(--eg-line);
    border-radius: 18px;
    padding: 36px 22px 28px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(10, 75, 110, 0.06);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.eg-step:hover {
    border-color: rgba(216, 67, 143, 0.35);
    transform: translateY(-3px);
    box-shadow: var(--eg-shadow);
}
.eg-step__num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--eg-cyan);
    color: #062f46;
    font-size: 14px;
    font-weight: 800;
}
.eg-step__icon {
    width: 56px;
    height: 56px;
    margin: 8px auto 16px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(216, 67, 143, 0.1);
    color: var(--eg-magenta);
    font-size: 22px;
}
.eg-step h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 1.2rem;
    color: var(--eg-blue);
}
.eg-step p {
    margin: 0;
    color: var(--eg-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
    .site-reveal {
        opacity: 0;
        transform: translateY(14px);
        animation: egReveal .65s ease forwards;
    }
    .site-reveal-delay-1 { animation-delay: .1s; }
    .site-reveal-delay-2 { animation-delay: .2s; }
    @keyframes egReveal {
        to { opacity: 1; transform: none; }
    }
}

/* Comparador de propuestas (demo al cliente) */
.eg-proposal-switch {
    position: fixed;
    z-index: 1200;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 10px 16px;
    border-radius: 999px;
    background: rgba(6, 31, 45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 40px rgba(4, 20, 32, 0.35);
    backdrop-filter: blur(10px);
}
.eg-proposal-switch__label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.eg-proposal-switch__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.eg-proposal-switch__btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
}
.eg-proposal-switch__btn.is-active {
    background: var(--eg-cyan);
    border-color: var(--eg-cyan);
    color: #062f46;
}
@media (max-width: 640px) {
    .eg-proposal-switch {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 18px;
        padding: 10px;
    }
    .eg-proposal-switch__label {
        width: 100%;
        text-align: center;
        margin-bottom: 2px;
    }
}
