/* /Layout/MainLayout.razor.rz.scp.css */
/* --- ESTRUCTURA BASE --- */
.site[b-s46an5tnxp] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main[b-s46an5tnxp] {
    flex: 1;
}

/* --- FOOTER ESTILO ADSUM --- */
.footer2[b-s46an5tnxp] {
    margin-top: auto;
    background: #281b13; /* El mismo Dark Coffee del Nav */
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer2-inner[b-s46an5tnxp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

/* Branding en Footer */
.footer2-brand[b-s46an5tnxp] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.footer2-brand img[b-s46an5tnxp] {
    width: 50px;
    height: auto;
}

.footer2-title[b-s46an5tnxp] {
    font-weight: 800;
    font-size: 1.2rem;
    color: #f7a343; /* Naranja Adsum */
    line-height: 1.1;
}

.footer2-sub[b-s46an5tnxp] {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Columnas */
.footer2-cols[b-s46an5tnxp] {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    flex: 2;
    justify-content: flex-end;
}

.footer2-col[b-s46an5tnxp] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 120px;
}

.footer2-coltitle[b-s46an5tnxp] {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #f7a343;
    margin-bottom: 8px;
}

.footer2-col a[b-s46an5tnxp] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer2-col a:hover[b-s46an5tnxp] {
    color: #f7a343;
    padding-left: 5px; /* Animación sutil al hover */
}

/* Barra inferior */
.footer2-bottom[b-s46an5tnxp] {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer2-bottom-inner[b-s46an5tnxp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px;
}

.footer2-note[b-s46an5tnxp] {
    font-style: italic;
    color: rgba(247, 163, 67, 0.6);
}
.dev-link[b-s46an5tnxp] {
    color: #f7a343; /* El naranja de la marca */
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.dev-link:hover[b-s46an5tnxp] {
    text-decoration: underline;
    opacity: 0.8;
    color: #f7a343; /* Mantiene el color al pasar el mouse */
}

/* Ajuste para que en móviles no se amontone el texto */
@media (max-width: 576px) {
    .footer2-bottom-inner[b-s46an5tnxp] {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer2-inner[b-s46an5tnxp] {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .footer2-cols[b-s46an5tnxp] {
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
    }

    .footer2-bottom-inner[b-s46an5tnxp] {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* --- CABECERA FIJA Y ANIMACIÓN --- */
.topbar[b-kv4n32md4e] {
    /* Estilos de posición y diseño */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #281b13;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);

    /* Estilos de animación */
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

/* Estado cuando está oculta (en el Home arriba) */
.topbar.nav-hidden[b-kv4n32md4e] {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none; /* Evita que se clickeen links invisibles */
}

/* El resto de tus estilos (inner, brand, nav, etc.) siguen abajo igual */
.topbar-inner[b-kv4n32md4e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    flex-wrap: wrap;
}

/* --- LOGO --- */
.brand[b-kv4n32md4e] {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #f7a343 !important;
}

.brand:hover[b-kv4n32md4e] {
    opacity: 0.9;
    color: #f7a343 !important;
    text-decoration: none !important;
}

.brand img[b-kv4n32md4e] {
    width: 42px;
    height: auto;
}

.brand-text[b-kv4n32md4e] {
    display: flex;
    flex-direction: column;
}

.brand-title[b-kv4n32md4e] {
    font-weight: 800;
    letter-spacing: .2px;
    line-height: 1;
    color: #f7a343;
}

.brand-sub[b-kv4n32md4e] {
    font-size: 12px;
    opacity: .85;
    color: rgba(255,255,255,0.8);
}

/* --- NAVEGACIÓN (Escritorio) --- */
.nav[b-kv4n32md4e] {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Links: NavLink YA ES <a> */
.nav .nav-link[b-kv4n32md4e] {
    font-size: 15px;
    padding: 5px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav .nav-link:hover[b-kv4n32md4e],
.nav .nav-link.active[b-kv4n32md4e] {
    color: #f7a343 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    background-color: transparent;
}


/* Botón Colaborar */
.cta[b-kv4n32md4e] {
    background: #b01b18 !important;
    color: white !important;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    text-decoration: none !important;
    transition: 0.2s;
    margin-left: 10px;
}

.cta:hover[b-kv4n32md4e] {
    background: #931415 !important;
    transform: scale(1.05);
    text-decoration: none !important;
}

/* --- BOTÓN HAMBURGUESA (Móvil) --- */
.nav-toggle[b-kv4n32md4e] {
    display: none;
    background: transparent;
    border: 1px solid rgba(247, 163, 67, 0.5);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    color: #f7a343;
}

.hamburger[b-kv4n32md4e] {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #f7a343;
    position: relative;
}

.hamburger[b-kv4n32md4e]::before, .hamburger[b-kv4n32md4e]::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #f7a343;
    left: 0;
    transition: 0.3s;
}

.hamburger[b-kv4n32md4e]::before { top: -6px; }
.hamburger[b-kv4n32md4e]::after { top: 6px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-toggle[b-kv4n32md4e] {
        display: block;
    }

    .nav[b-kv4n32md4e] {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 15px;
        background: #281b13;
    }

    .nav.open[b-kv4n32md4e] {
    display: flex;
    animation: slideDown-b-kv4n32md4e 0.3s ease-out;
}

    .nav .nav-link[b-kv4n32md4e] {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 16px;
    }

    .cta[b-kv4n32md4e] {
        width: 80%;
        text-align: center;
        margin-top: 15px;
        display: block;
    }
}

@keyframes slideDown-b-kv4n32md4e {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* /Pages/Admin.razor.rz.scp.css */
:root[b-s6p6iy2nor] {
    --admin-bg: #111111;
    --admin-panel: #1d1d1d;
    --admin-panel-2: #252525;
    --admin-border: rgba(255,255,255,0.08);
    --admin-input: #0d0d0d;
    --admin-text: #f8f6f3;
    --admin-text-soft: #e7dfd7;
    --admin-muted: #c7beb4;
    --admin-muted-2: #a99f95;
    --admin-accent: #f3a43b;
    --admin-accent-soft: rgba(243, 164, 59, 0.12);
    --admin-danger: #b01b18;
    --admin-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.admin-layout[b-s6p6iy2nor] {
    display: flex;
    min-height: 100vh;
    padding-top: 92px;
    background:
        radial-gradient(circle at top left, rgba(243,164,59,0.05), transparent 30%),
        linear-gradient(180deg, #111 0%, #141414 100%);
    color: var(--admin-text);
}

.login-screen[b-s6p6iy2nor] {
    min-height: calc(100vh - 92px);
    width: 100%;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.login-box[b-s6p6iy2nor] {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, #242424 0%, #1b1b1b 100%);
    border: 1px solid var(--admin-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--admin-shadow);
    text-align: center;
}

.login-logo[b-s6p6iy2nor] {
    font-size: 2.2rem;
    margin-bottom: .75rem;
}

.login-box h2[b-s6p6iy2nor] {
    margin: 0 0 .5rem 0;
    color: var(--admin-text);
}

.login-sub[b-s6p6iy2nor] {
    color: var(--admin-muted);
    margin-bottom: 20px;
}

.btn-google[b-s6p6iy2nor] {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    background: #fff;
    color: #222;
    padding: 14px 18px;
    font-weight: 800;
    cursor: pointer;
}

.error-msg[b-s6p6iy2nor] {
    margin-top: 1rem;
    background: rgba(176, 27, 24, 0.15);
    border: 1px solid rgba(176, 27, 24, 0.3);
    color: #ffb0ae;
    border-radius: 12px;
    padding: 12px 14px;
}

.sidebar[b-s6p6iy2nor] {
    width: 250px;
    background: linear-gradient(180deg, #181818 0%, #161616 100%);
    border-right: 1px solid var(--admin-border);
    position: sticky;
    top: 92px;
    height: calc(100vh - 92px);
    display: flex;
    flex-direction: column;
}

.sidebar-head[b-s6p6iy2nor] {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--admin-border);
}

.brand[b-s6p6iy2nor] {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--admin-accent);
}

.sidebar-head small[b-s6p6iy2nor] {
    color: var(--admin-muted);
    display: block;
    margin-top: .25rem;
    line-height: 1.4;
}

.sidebar-nav[b-s6p6iy2nor] {
    display: flex;
    flex-direction: column;
    padding: .75rem;
    gap: .4rem;
}

.sidebar-nav button[b-s6p6iy2nor] {
    background: transparent;
    border: 1px solid transparent;
    color: var(--admin-text-soft);
    text-align: left;
    padding: 12px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: .2s ease;
}

.sidebar-nav button:hover[b-s6p6iy2nor] {
    background: rgba(255,255,255,0.04);
    border-color: var(--admin-border);
}

.sidebar-nav button.active[b-s6p6iy2nor] {
    background: var(--admin-accent-soft);
    border-color: rgba(243,164,59,0.22);
    color: var(--admin-accent);
}

.sidebar-foot[b-s6p6iy2nor] {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid var(--admin-border);
}

.btn-logout[b-s6p6iy2nor] {
    width: 100%;
    background: #262626;
    border: 1px solid var(--admin-border);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
}

.content[b-s6p6iy2nor] {
    flex: 1;
    padding: 2rem 2rem 3rem;
    overflow-x: hidden;
}

.panel[b-s6p6iy2nor] {
    max-width: 1100px;
}

.panel-head[b-s6p6iy2nor] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-head h2[b-s6p6iy2nor] {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    color: var(--admin-accent);
}

.form-box[b-s6p6iy2nor] {
    background: linear-gradient(180deg, #262626 0%, #1f1f1f 100%);
    border: 1px solid var(--admin-border);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: var(--admin-shadow);
}

.pueblo-admin-box[b-s6p6iy2nor] {
    max-width: 980px;
}

.field-group[b-s6p6iy2nor] {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    width: 100%;
    margin-bottom: 1rem;
}

.field-group label[b-s6p6iy2nor] {
    font-size: .92rem;
    font-weight: 800;
    color: var(--admin-accent);
    letter-spacing: 0.2px;
}

.form-row[b-s6p6iy2nor] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-box input[b-s6p6iy2nor],
.form-box textarea[b-s6p6iy2nor],
.form-box select[b-s6p6iy2nor] {
    width: 100%;
    background: var(--admin-input);
    color: var(--admin-text);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 14px 15px;
    outline: none;
    font-size: 1rem;
}

.form-box input[b-s6p6iy2nor]::placeholder,
.form-box textarea[b-s6p6iy2nor]::placeholder {
    color: var(--admin-muted-2);
    opacity: 1;
}

.form-box input:focus[b-s6p6iy2nor],
.form-box textarea:focus[b-s6p6iy2nor],
.form-box select:focus[b-s6p6iy2nor] {
    border-color: var(--admin-accent);
    box-shadow: 0 0 0 3px rgba(243,164,59,0.12);
}

.form-box input[type="datetime-local"][b-s6p6iy2nor] {
    color-scheme: dark;
}

.admin-separator[b-s6p6iy2nor] {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid var(--admin-border);
}

.section-admin-head[b-s6p6iy2nor] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.section-admin-head h3[b-s6p6iy2nor],
.section-admin-head h4[b-s6p6iy2nor] {
    margin: 0;
    color: var(--admin-text);
}

.admin-card[b-s6p6iy2nor],
.mini-card[b-s6p6iy2nor] {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--admin-border);
    border-radius: 18px;
    padding: 1rem;
    color: var(--admin-text);
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

.card-grid[b-s6p6iy2nor] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1rem;
}

.card-top[b-s6p6iy2nor] {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: flex-start;
    margin-bottom: .65rem;
}

.card-text[b-s6p6iy2nor] {
    color: var(--admin-text-soft);
    line-height: 1.55;
    margin: .6rem 0;
}

.admin-empty[b-s6p6iy2nor],
.muted[b-s6p6iy2nor],
.truncate[b-s6p6iy2nor] {
    color: var(--admin-muted);
}

.truncate[b-s6p6iy2nor] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-actions[b-s6p6iy2nor] {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.btn-primary[b-s6p6iy2nor],
.btn-secondary[b-s6p6iy2nor],
.btn-danger[b-s6p6iy2nor] {
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 800;
    transition: .2s ease;
}

.btn-primary[b-s6p6iy2nor] {
    background: var(--admin-accent);
    color: #22170d;
}

.btn-primary:hover[b-s6p6iy2nor] {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

.btn-secondary[b-s6p6iy2nor] {
    background: #2f2f2f;
    color: #fff;
    border: 1px solid var(--admin-border);
}

.btn-secondary:hover[b-s6p6iy2nor] {
    background: #383838;
}

.btn-danger[b-s6p6iy2nor] {
    background: var(--admin-danger);
    color: white;
}

.btn-danger:hover[b-s6p6iy2nor] {
    filter: brightness(1.03);
}

.slot-grid[b-s6p6iy2nor] {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.slot-actions[b-s6p6iy2nor] {
    display: flex;
    align-items: end;
    padding-bottom: 1rem;
}

.dropzone-pdf[b-s6p6iy2nor] {
    position: relative;
    display: block;
    border: 2px dashed rgba(243,164,59,0.45);
    border-radius: 20px;
    background: rgba(243,164,59,0.05);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1rem;
    overflow: hidden;
}

.sponsor-drop[b-s6p6iy2nor] {
    margin-bottom: 1rem;
}

.dropzone-input[b-s6p6iy2nor] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.dropzone-inner[b-s6p6iy2nor] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: var(--admin-text);
    position: relative;
    z-index: 1;
}

.dropzone-inner strong[b-s6p6iy2nor] {
    color: var(--admin-text);
    font-size: 1.35rem;
    font-weight: 900;
}

.dropzone-inner span[b-s6p6iy2nor] {
    color: var(--admin-muted);
    font-size: .95rem;
}

.dropzone-icon[b-s6p6iy2nor] {
    font-size: 2rem;
}

.dropzone-pdf input[type="file"][b-s6p6iy2nor] {
    color: transparent;
}

.dropzone-pdf input[type="file"][b-s6p6iy2nor]::file-selector-button {
    background: var(--admin-accent);
    color: #22170d;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.pdf-preview-box[b-s6p6iy2nor] {
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--admin-border);
    border-radius: 18px;
    overflow: hidden;
}

.preview-head[b-s6p6iy2nor] {
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--admin-border);
    color: var(--admin-accent);
    font-weight: 800;
}

.pdf-preview-frame[b-s6p6iy2nor] {
    width: 100%;
    height: 420px;
    border: 0;
    background: #111;
}

.image-preview-wrap[b-s6p6iy2nor] {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}

.image-preview[b-s6p6iy2nor] {
    width: 160px;
    height: 160px;
    object-fit: contain;
    background: #0f0f0f;
    border: 1px solid var(--admin-border);
    border-radius: 16px;
    padding: .5rem;
}

.sponsor-card[b-s6p6iy2nor] {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.sponsor-thumb[b-s6p6iy2nor] {
    width: 100%;
    max-width: 180px;
    height: 80px;
    object-fit: contain;
    background: #0f0f0f;
    border: 1px solid var(--admin-border);
    border-radius: 14px;
    padding: .5rem;
}

.feedback[b-s6p6iy2nor] {
    display: inline-block;
    margin-top: 1rem;
    color: var(--admin-accent);
    font-weight: 700;
}

.status-badge[b-s6p6iy2nor],
.mini-chip[b-s6p6iy2nor] {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
}

.mini-chip[b-s6p6iy2nor] {
    background: rgba(255,255,255,0.06);
    color: #ddd;
    border: 1px solid var(--admin-border);
}

.status-badge.pending[b-s6p6iy2nor] {
    background: rgba(243,164,59,0.12);
    color: var(--admin-accent);
    border: 1px solid rgba(243,164,59,0.22);
}

.status-badge.ok[b-s6p6iy2nor] {
    background: rgba(60,180,110,0.14);
    color: #88f0b1;
    border: 1px solid rgba(60,180,110,0.22);
}

.status-badge.bad[b-s6p6iy2nor] {
    background: rgba(176,27,24,0.14);
    color: #ffb0ae;
    border: 1px solid rgba(176,27,24,0.22);
}

.mt-2[b-s6p6iy2nor] {
    margin-top: 1rem;
}

.mt-4[b-s6p6iy2nor] {
    margin-top: 2rem;
}

@media (max-width: 980px) {
    .admin-layout[b-s6p6iy2nor] {
        flex-direction: column;
        padding-top: 92px;
    }

    .sidebar[b-s6p6iy2nor] {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
    }

    .content[b-s6p6iy2nor] {
        padding: 1rem 1rem 2rem;
    }

    .form-row[b-s6p6iy2nor],
    .slot-grid[b-s6p6iy2nor] {
        grid-template-columns: 1fr;
    }

    .slot-actions[b-s6p6iy2nor] {
        padding-bottom: 0;
    }

    .panel-head[b-s6p6iy2nor] {
        flex-direction: column;
        align-items: stretch;
    }
}
/* ===== FIX FUERTE DE COLORES ADMIN ===== */

.admin-layout[b-s6p6iy2nor],
.admin-layout *[b-s6p6iy2nor] {
    color: #f5efe8;
}

.content[b-s6p6iy2nor],
.panel[b-s6p6iy2nor],
.form-box[b-s6p6iy2nor],
.admin-card[b-s6p6iy2nor],
.mini-card[b-s6p6iy2nor] {
    color: #f5efe8;
}

.panel-head h2[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.sidebar-head .brand[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.sidebar-head small[b-s6p6iy2nor] {
    color: #bfb6ac !important;
}

.sidebar-nav button[b-s6p6iy2nor] {
    color: #f1e8df !important;
}

.sidebar-nav button.active[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.field-group label[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.section-admin-head h3[b-s6p6iy2nor],
.section-admin-head h4[b-s6p6iy2nor] {
    color: #ffffff !important;
}

.form-box input[b-s6p6iy2nor],
.form-box textarea[b-s6p6iy2nor],
.form-box select[b-s6p6iy2nor] {
    color: #ffffff !important;
    background: #0d0d0d !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
}

.form-box input[b-s6p6iy2nor]::placeholder,
.form-box textarea[b-s6p6iy2nor]::placeholder {
    color: #9f968d !important;
    opacity: 1 !important;
}

.form-box input[type="datetime-local"][b-s6p6iy2nor] {
    color: #ffffff !important;
}

.admin-card strong[b-s6p6iy2nor],
.mini-card strong[b-s6p6iy2nor],
.card-top strong[b-s6p6iy2nor] {
    color: #ffffff !important;
}

.card-text[b-s6p6iy2nor],
.admin-empty[b-s6p6iy2nor],
.muted[b-s6p6iy2nor],
.truncate[b-s6p6iy2nor],
.dropzone-inner span[b-s6p6iy2nor],
.sidebar-head small[b-s6p6iy2nor],
.feedback[b-s6p6iy2nor] {
    color: #cfc5bb !important;
}

.dropzone-inner strong[b-s6p6iy2nor] {
    color: #ffffff !important;
}

.dropzone-icon[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.preview-head[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.btn-primary[b-s6p6iy2nor] {
    color: #24170f !important;
}

.btn-secondary[b-s6p6iy2nor],
.btn-danger[b-s6p6iy2nor],
.btn-logout[b-s6p6iy2nor] {
    color: #ffffff !important;
}

.status-badge.pending[b-s6p6iy2nor] {
    color: #f3a43b !important;
}

.status-badge.ok[b-s6p6iy2nor] {
    color: #8df0b4 !important;
}

.status-badge.bad[b-s6p6iy2nor] {
    color: #ffb3b0 !important;
}

.mini-chip[b-s6p6iy2nor] {
    color: #e8ddd2 !important;
}

/* inputs del file picker */
input[type="file"][b-s6p6iy2nor] {
    color: #f5efe8 !important;
}

input[type="file"][b-s6p6iy2nor]::file-selector-button {
    background: #f3a43b !important;
    color: #24170f !important;
    border: none !important;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

/* fondo general admin */
.admin-layout[b-s6p6iy2nor] {
    background:
        radial-gradient(circle at top left, rgba(243,164,59,0.05), transparent 30%),
        linear-gradient(180deg, #111 0%, #141414 100%) !important;
}

/* cajas */
.form-box[b-s6p6iy2nor] {
    background: linear-gradient(180deg, #262626 0%, #1f1f1f 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

.admin-card[b-s6p6iy2nor],
.mini-card[b-s6p6iy2nor] {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

/* por si algún h3/h4 del theme principal pisa */
.content h1[b-s6p6iy2nor],
.content h2[b-s6p6iy2nor],
.content h3[b-s6p6iy2nor],
.content h4[b-s6p6iy2nor],
.content p[b-s6p6iy2nor],
.content small[b-s6p6iy2nor],
.content span[b-s6p6iy2nor],
.content label[b-s6p6iy2nor],
.content strong[b-s6p6iy2nor],
.content button[b-s6p6iy2nor] {
    color: inherit;
}
/* FIX botones ámbar */
.content .btn-primary[b-s6p6iy2nor],
.content button.btn-primary[b-s6p6iy2nor],
.admin-layout .btn-primary[b-s6p6iy2nor] {
    background: #f3a43b !important;
    color: #24170f !important;
    border: none !important;
}

.content .btn-primary:hover[b-s6p6iy2nor],
.content button.btn-primary:hover[b-s6p6iy2nor],
.admin-layout .btn-primary:hover[b-s6p6iy2nor] {
    background: #ffb347 !important;
    color: #24170f !important;
}

.content .btn-primary *[b-s6p6iy2nor],
.content button.btn-primary *[b-s6p6iy2nor],
.admin-layout .btn-primary *[b-s6p6iy2nor] {
    color: #24170f !important;
}
/* /Pages/Adsum.razor.rz.scp.css */
/* --- VARIABLES LOCALES --- */
:root[b-6hznkxly8p] {
    --cafe: #281B13;
    --rojo: #B01B18;
    --ambar: #F7A343;
    --crema-fondo: #FAF6F5;
}

/* CAPITALARIO LAYOUT */
.capitalario-layout[b-6hznkxly8p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    padding: 20px;
}

/* BADGE IZQUIERDO (COMPLETADO) */
.completado-badge[b-6hznkxly8p] {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid var(--ambar);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(247, 163, 67, 0.1);
    animation: slideInLeft-b-6hznkxly8p 0.6s ease-out;
}

.completado-badge .material-icons[b-6hznkxly8p] {
    color: var(--ambar);
    font-size: 2.5rem;
}

.badge-text[b-6hznkxly8p] {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.badge-text strong[b-6hznkxly8p] {
    font-size: 1.5rem;
    color: var(--cafe);
    line-height: 1;
}

.badge-text span[b-6hznkxly8p] {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--rojo);
    letter-spacing: 0.5px;
}

/* LOGO CONTAINER */
.logo-dynamic-container[b-6hznkxly8p] {
    position: relative;
    width: 200px;
    height: 280px;
}

.logo-underlay[b-6hznkxly8p] {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    opacity: 0.15;
}

.logo-fill-overlay[b-6hznkxly8p] {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación de vaciado rápido cuando se reinicia */
.logo-fill-overlay.reset-anim[b-6hznkxly8p] {
    transition: height 1.5s ease-in;
}

.logo-colored[b-6hznkxly8p] {
    width: 200px;
    height: 280px;
    position: absolute;
    bottom: 0;
    filter: drop-shadow(0 0 10px rgba(247, 163, 67, 0.4));
}

.capitalario-actions[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
}

.total-count[b-6hznkxly8p] {
    font-size: 4rem;
    font-weight: 900;
    color: var(--cafe);
    margin-bottom: 0;
    line-height: 1;
}

.count-label[b-6hznkxly8p] {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--rojo);
    margin-bottom: 0.5rem;
}

.meta-info[b-6hznkxly8p] {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

/* ANIMACIONES */
@keyframes slideInLeft-b-6hznkxly8p {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in[b-6hznkxly8p] { animation: fadeIn-b-6hznkxly8p 1s; }

@keyframes fadeIn-b-6hznkxly8p {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* REFLEXIONES */
.reflexiones-wall[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.ref-item-card[b-6hznkxly8p] {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.ref-item-card:hover[b-6hznkxly8p] {
    transform: scale(1.01);
}

/* PDF MODAL */
.pdf-container[b-6hznkxly8p] {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.modal-lectura[b-6hznkxly8p] {
    max-width: 900px !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .capitalario-layout[b-6hznkxly8p] {
        flex-direction: column;
        gap: 2rem;
    }

    .completado-badge[b-6hznkxly8p] {
        order: 2;
        width: 100%;
        justify-content: center;
    }

    .destination-grid[b-6hznkxly8p] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .foro-layout[b-6hznkxly8p] {
        grid-template-columns: 1fr;
    }

    .map-frame[b-6hznkxly8p] {
        max-width: 100%;
        height: 300px;
    }

    .crono-item[b-6hznkxly8p] {
        grid-template-columns: 80px 16px 1fr;
    }
}

/* --- ESTILOS EXISTENTES --- */
[b-6hznkxly8p] * {
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

.hero-section[b-6hznkxly8p] {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--cafe);
    background-image: linear-gradient(to bottom, rgba(40, 27, 19, 0.8), rgba(40, 27, 19, 0.6)), url('img/PortadaWeb.JPG');
    background-size: cover;
    background-position: center;
}

.hero-container[b-6hznkxly8p] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.badge-hero[b-6hznkxly8p] {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(176, 27, 24, 0.2);
    border: 1px solid rgba(176, 27, 24, 0.5);
    color: #ffbaba;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title[b-6hznkxly8p] {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-destacado[b-6hznkxly8p] {
    color: var(--ambar) !important;
    font-style: italic;
}

.hero-subtitle[b-6hznkxly8p] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.section[b-6hznkxly8p] {
    padding: 5rem 0;
}

.bg-light[b-6hznkxly8p] {
    background-color: var(--crema-fondo);
}

.container[b-6hznkxly8p] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header[b-6hznkxly8p] {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title[b-6hznkxly8p] {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cafe);
}

.section-desc[b-6hznkxly8p] {
    color: #666;
    max-width: 600px;
    margin: 0.5rem auto;
}

.overline[b-6hznkxly8p] {
    text-transform: uppercase;
    color: var(--rojo);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.blur-map-container[b-6hznkxly8p] {
    position: absolute;
    inset: 0;
    filter: blur(20px) grayscale(50%);
    opacity: 0.3;
    z-index: 1;
}

.fake-map[b-6hznkxly8p] {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&q=40');
    background-size: cover;
}

.countdown-card[b-6hznkxly8p] {
    position: relative;
    z-index: 5;
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #eee;
}

.pill-red[b-6hznkxly8p] {
    background: var(--rojo);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.countdown-grid[b-6hznkxly8p] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: var(--crema-fondo);
    padding: 2rem;
    border-radius: 1.5rem;
}

.time-block[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
    min-width: 70px;
}

.time-val[b-6hznkxly8p] {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
}

.time-lab[b-6hznkxly8p] {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
}

.time-sep[b-6hznkxly8p] {
    font-size: 2rem;
    color: #ddd;
    font-weight: 300;
    padding-bottom: 20px;
}

.countdown-footer[b-6hznkxly8p] {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.unlock-info[b-6hznkxly8p] {
    color: #aaa;
    font-style: italic;
    font-size: 0.85rem;
}

.destination-grid[b-6hznkxly8p] {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.text-content[b-6hznkxly8p] {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid #eee;
}

.history-text[b-6hznkxly8p] {
    line-height: 1.7;
    color: #555;
    white-space: pre-line;
}

.community-box[b-6hznkxly8p] {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.community-box h4[b-6hznkxly8p] {
    color: var(--rojo);
    margin-bottom: 0.4rem;
    font-weight: 800;
}

.community-box p[b-6hznkxly8p] {
    color: #666;
    margin-bottom: 1rem;
}

.map-frame[b-6hznkxly8p] {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
    border: 5px solid white;
    max-width: 500px;
    height: 350px;
    margin-left: auto;
}

.map-frame iframe[b-6hznkxly8p] {
    width: 100%;
    height: 100%;
}

.ref-card-header[b-6hznkxly8p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ref-avatar[b-6hznkxly8p] {
    width: 50px;
    height: 50px;
    background: var(--crema-fondo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.ref-meta[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
}

.ref-author-name[b-6hznkxly8p] {
    font-weight: 800;
    color: var(--cafe);
}

.ref-date[b-6hznkxly8p] {
    font-size: 0.8rem;
    color: #999;
}

.ref-card-body h3[b-6hznkxly8p] {
    font-size: 1.4rem;
    color: var(--cafe);
    margin-bottom: 0.8rem;
}

.ref-card-body p[b-6hznkxly8p] {
    color: #666;
    line-height: 1.6;
}

.ref-card-footer[b-6hznkxly8p] {
    margin-top: 1.5rem;
    border-top: 1px solid #f9f9f9;
    padding-top: 1rem;
}

.btn-read-more[b-6hznkxly8p] {
    background: none;
    border: none;
    color: var(--rojo);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.foro-layout[b-6hznkxly8p] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.foro-form-card[b-6hznkxly8p] {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    align-self: start;
}

.form-control[b-6hznkxly8p] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.foro-wall[b-6hznkxly8p] {
    background: #eee8e6;
    padding: 2.5rem;
    border-radius: 1.5rem;
}

.wall-title[b-6hznkxly8p] {
    color: var(--cafe);
    margin-bottom: 2rem;
    font-weight: 800;
}

.wall-scroll[b-6hznkxly8p] {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
}

.prayer-bubble[b-6hznkxly8p] {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    position: relative;
}

.bubble-header[b-6hznkxly8p] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.bubble-date[b-6hznkxly8p] {
    font-size: 0.8rem;
    color: #bbb;
}

.bubble-text[b-6hznkxly8p] {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bubble-actions[b-6hznkxly8p] {
    border-top: 1px solid #f5f5f5;
    padding-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.btn-rezar[b-6hznkxly8p] {
    background: none;
    border: 1px solid #eee;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 700;
}

.btn-rezar .material-icons[b-6hznkxly8p] {
    font-size: 1.1rem;
}

.btn-rezar:hover[b-6hznkxly8p] {
    border-color: var(--rojo);
    color: var(--rojo);
    background: #fff5f5;
}

.btn-rezar.active[b-6hznkxly8p] {
    background: var(--rojo) !important;
    color: white !important;
    border-color: var(--rojo) !important;
}

.btn-rezar.active .material-icons[b-6hznkxly8p] {
    color: white !important;
}

.btn-rezar:disabled[b-6hznkxly8p] {
    opacity: 1;
    cursor: default;
}
.btn-custom[b-6hznkxly8p] {
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    border: 2px solid var(--cafe);
    background: white;
    color: var(--cafe);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-custom:hover[b-6hznkxly8p] {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.btn-rojo[b-6hznkxly8p] {
    padding: 14px 34px;
    border-radius: 999px;
    font-weight: 700;
    border: 2px solid var(--cafe);
    background: white;
    color: var(--cafe);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-rojo:hover[b-6hznkxly8p] {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.modal-backdrop[b-6hznkxly8p] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(40, 27, 19, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-lectura[b-6hznkxly8p] {
    background: #ffffff;
    width: min(1100px, 100%);
    height: min(88vh, 920px);
    border-radius: 28px;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-close-modal[b-6hznkxly8p] {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f3efed;
    color: #8f8680;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.btn-close-modal:hover[b-6hznkxly8p] {
    background: #e9e1dc;
    color: var(--cafe);
    transform: scale(1.05);
}

.modal-lectura > h3[b-6hznkxly8p] {
    margin: 0;
    padding-right: 56px;
    color: var(--cafe);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    flex-shrink: 0;
}

.modal-lectura embed[b-6hznkxly8p],
.modal-lectura iframe[b-6hznkxly8p] {
    width: 100%;
    flex: 1;
    min-height: 0;
    border: none;
    border-radius: 20px;
    background: #f7f4f2;
    box-shadow: inset 0 0 0 1px #eee;
}

.modal-lectura p[b-6hznkxly8p] {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    overflow-y: auto;
    padding-right: 6px;
}

/* Scroll interno del modal */
.modal-lectura p[b-6hznkxly8p]::-webkit-scrollbar,
.modal-lectura[b-6hznkxly8p]::-webkit-scrollbar {
    width: 10px;
}

.modal-lectura p[b-6hznkxly8p]::-webkit-scrollbar-thumb,
.modal-lectura[b-6hznkxly8p]::-webkit-scrollbar-thumb {
    background: #d5ccc6;
    border-radius: 999px;
}

.modal-lectura p[b-6hznkxly8p]::-webkit-scrollbar-track,
.modal-lectura[b-6hznkxly8p]::-webkit-scrollbar-track {
    background: transparent;
}

/* Tablet */
@media (max-width: 1024px) {
    .modal-backdrop[b-6hznkxly8p] {
        padding: 18px;
    }

    .modal-lectura[b-6hznkxly8p] {
        width: min(96vw, 950px);
        height: min(90vh, 860px);
        padding: 1.25rem;
        border-radius: 24px;
    }

    .modal-lectura embed[b-6hznkxly8p],
    .modal-lectura iframe[b-6hznkxly8p] {
        border-radius: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modal-backdrop[b-6hznkxly8p] {
        padding: 10px;
        align-items: flex-end;
    }

    .modal-lectura[b-6hznkxly8p] {
        width: 100%;
        height: 92vh;
        max-height: 92vh;
        border-radius: 24px 24px 0 0;
        padding: 1rem;
        gap: 0.85rem;
    }

    .btn-close-modal[b-6hznkxly8p] {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .modal-lectura > h3[b-6hznkxly8p] {
        font-size: 1.35rem;
        padding-right: 46px;
        margin-top: 4px;
    }

    .modal-lectura embed[b-6hznkxly8p],
    .modal-lectura iframe[b-6hznkxly8p] {
        border-radius: 14px;
    }

    .modal-lectura p[b-6hznkxly8p] {
        font-size: 0.98rem;
        line-height: 1.7;
    }
}

/* Mobile chico */
@media (max-width: 480px) {
    .modal-backdrop[b-6hznkxly8p] {
        padding: 0;
    }

    .modal-lectura[b-6hznkxly8p] {
        height: 94vh;
        max-height: 94vh;
        border-radius: 20px 20px 0 0;
        padding: 0.9rem;
    }

    .modal-lectura > h3[b-6hznkxly8p] {
        font-size: 1.2rem;
    }
}

.modal-lectura-head[b-6hznkxly8p] {
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.modal-lectura-head h3[b-6hznkxly8p] {
    color: var(--cafe);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-lectura-body[b-6hznkxly8p] {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.modal-lectura-footer[b-6hznkxly8p] {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.btn-lg[b-6hznkxly8p] {
    padding: 18px 45px;
    font-size: 1.2rem;
}

.btn-ambar[b-6hznkxly8p] {
    background: var(--ambar);
    color: var(--cafe);
}

.btn-ambar:hover[b-6hznkxly8p] {
    background: #e08e2e;
    transform: translateY(-2px);
}

.bg-white[b-6hznkxly8p] {
    background: white;
}

/* NUEVOS ESTILOS */
.activities-mini-grid[b-6hznkxly8p] {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.act-mini-card[b-6hznkxly8p] {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.act-mini-card .material-icons[b-6hznkxly8p] {
    color: var(--ambar);
    font-size: 2rem;
}

.act-mini-card p[b-6hznkxly8p] {
    margin: 0.2rem 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

.cronograma-box[b-6hznkxly8p] {
    background: #281B13 !important;
    color: white !important;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(40, 27, 19, 0.18);
}

.cronograma-box h4[b-6hznkxly8p] {
    color: #F7A343 !important;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.cronograma-list[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.crono-dia-card[b-6hznkxly8p] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.2rem;
}

.crono-dia-header[b-6hznkxly8p] {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.8rem;
}

.crono-dia-nombre[b-6hznkxly8p] {
    font-weight: 900;
    font-size: 1.1rem;
    color: #F7A343 !important;
}

.crono-dia-titulo[b-6hznkxly8p] {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.2rem;
}

.crono-table[b-6hznkxly8p] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.crono-item[b-6hznkxly8p] {
    display: grid;
    grid-template-columns: 100px 20px 1fr;
    gap: 10px;
    align-items: start;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}

.crono-hora[b-6hznkxly8p] {
    font-weight: 800;
    color: white !important;
}

.crono-dot[b-6hznkxly8p] {
    width: 10px;
    height: 10px;
    background: #F7A343 !important;
    border-radius: 50%;
    margin-top: 0.4rem;
}

.crono-desc[b-6hznkxly8p] {
    color: rgba(255, 255, 255, 0.92) !important;
}

.pueblo-meta[b-6hznkxly8p] {
    margin-bottom: 1rem;
}
/* /Pages/Colaborar.razor.rz.scp.css */
:root[b-kvn6l2vt98] {
    --cafe: #281B13;
    --cafe-claro: #3e2f26;
    --ambar: #F7A343;
    --rojo: #B01B18;
    --crema-fondo: #FAF6F5;
    --gris-claro: #e9ecef;
    --blanco: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

[b-kvn6l2vt98] * {
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section[b-kvn6l2vt98] {
    position: relative;
    min-height: 550px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;

    /* IMPORTANTE: Color de respaldo MARRÓN por si no carga la imagen */
    background-color: var(--cafe); 

    background-image: 
        linear-gradient(to bottom, rgba(40, 27, 19, 0.8), rgba(40, 27, 19, 0.6)),
        url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container[b-kvn6l2vt98] {
    position: relative;
    z-index: 2; 
    max-width: 800px;
    padding: 20px;
}

.badge-hero[b-kvn6l2vt98] {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(176, 27, 24, 0.25);
    border: 1px solid rgba(176, 27, 24, 0.6);
    color: #ffbaba;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.hero-title[b-kvn6l2vt98] {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.text-destacado[b-kvn6l2vt98] {
    /* Forzamos el color para evitar conflictos */
    color: #B01B18 !important; 
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-subtitle[b-kvn6l2vt98] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-actions[b-kvn6l2vt98] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* BOTONES */
.btn-custom[b-kvn6l2vt98] {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-rojo[b-kvn6l2vt98] {
    background-color: var(--rojo);
    color: white;
    box-shadow: 0 5px 15px rgba(176, 27, 24, 0.4);
}
.btn-rojo:hover[b-kvn6l2vt98] { background-color: #921513; transform: translateY(-2px); }

.btn-transparente[b-kvn6l2vt98] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(5px);
}
.btn-transparente:hover[b-kvn6l2vt98] { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* =========================================
   RESTO DE SECCIONES
   ========================================= */
.section[b-kvn6l2vt98] { padding: 6rem 0; }
.bg-light[b-kvn6l2vt98] { background-color: var(--crema-fondo); }
.container[b-kvn6l2vt98] { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header[b-kvn6l2vt98] { text-align: center; margin-bottom: 4rem; }
.section-title[b-kvn6l2vt98] { font-size: 2.5rem; font-weight: 800; color: var(--cafe); margin-bottom: 1rem; }
.section-desc[b-kvn6l2vt98] { font-size: 1.125rem; color: #666; max-width: 700px; margin: 0 auto; }

/* STATS */
.stats-section[b-kvn6l2vt98] { padding: 4rem 0; background: white; border-bottom: 1px solid rgba(0,0,0,0.05); }
.stats-grid[b-kvn6l2vt98] { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.icon-box-red[b-kvn6l2vt98] { 
    width: 70px; height: 70px; background: rgba(176, 27, 24, 0.1); color: var(--rojo);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.stat-number[b-kvn6l2vt98] { font-size: 2.5rem; font-weight: 800; color: var(--rojo); }
.stat-label[b-kvn6l2vt98] { color: #666; font-weight: 600; }

/* CARDS DONACIÓN */
.donation-grid[b-kvn6l2vt98] { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.card[b-kvn6l2vt98] { background: white; border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0; }
.card-centered[b-kvn6l2vt98] { text-align: center; display: flex; flex-direction: column; align-items: center; }
.card-flex[b-kvn6l2vt98] { display: flex; flex-direction: column; }
.card-title[b-kvn6l2vt98] { font-size: 1.5rem; font-weight: 700; color: var(--cafe); margin-bottom: 2rem; }

.icon-circle[b-kvn6l2vt98] { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-circle-amber[b-kvn6l2vt98] { background: rgba(245, 158, 11, 0.1); color: var(--ambar); }
.icon-circle-red[b-kvn6l2vt98] { background: rgba(176, 27, 24, 0.1); color: var(--rojo); }

/* QR y Transfer Styles */
.qr-frame[b-kvn6l2vt98] { background: white; padding: 1rem; border-radius: 1rem; border: 1px solid #eee; margin-bottom: 1rem; }
.qr-placeholder[b-kvn6l2vt98] { width: 160px; height: 160px; background: #f8fafc; display: flex; align-items: center; justify-content: center; position: relative; }
.qr-icon[b-kvn6l2vt98] { font-size: 5rem; color: #cbd5e1; }
.qr-border[b-kvn6l2vt98] { position: absolute; width: 20px; height: 20px; border-color: var(--rojo); border-style: solid; }
.qr-border-tl[b-kvn6l2vt98] { top: 0; left: 0; border-width: 3px 0 0 3px; }
.qr-border-tr[b-kvn6l2vt98] { top: 0; right: 0; border-width: 3px 3px 0 0; }
.qr-border-bl[b-kvn6l2vt98] { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.qr-border-br[b-kvn6l2vt98] { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.transfer-details[b-kvn6l2vt98] { display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; }
.data-box[b-kvn6l2vt98] { background: var(--crema-fondo); padding: 1.25rem; border-radius: 1rem; border: 1px solid #e2e8f0; }
.data-header[b-kvn6l2vt98] { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.data-label[b-kvn6l2vt98] { font-size: 0.8rem; font-weight: 700; color: #888; text-transform: uppercase; }
.data-value[b-kvn6l2vt98] { font-size: 1.3rem; font-weight: 800; color: var(--cafe); word-break: break-all; }
.btn-copy[b-kvn6l2vt98] { background: none; border: none; cursor: pointer; color: var(--rojo); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.info-note[b-kvn6l2vt98] { display: flex; gap: 0.5rem; color: #666; font-size: 0.9rem; margin-top: 1rem; align-items: center; }

/* SECCIÓN LA HERENCIA */
.section-primary[b-kvn6l2vt98] { background: var(--rojo); color: white; }
.herencia-layout[b-kvn6l2vt98] { display: flex; gap: 4rem; align-items: center; }
.herencia-content[b-kvn6l2vt98] { flex: 1; }
.overline[b-kvn6l2vt98] { display: block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; opacity: 0.8; margin-bottom: 1rem; }
.herencia-title[b-kvn6l2vt98] { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.herencia-text[b-kvn6l2vt98] { font-size: 1.1rem; opacity: 0.95; margin-bottom: 2rem; line-height: 1.6; }

.metrics-grid[b-kvn6l2vt98] { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.metric-card[b-kvn6l2vt98] { background: rgba(255,255,255,0.1); padding: 1.25rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.2); }
.metric-icon[b-kvn6l2vt98] { color: var(--ambar); display: block; margin-bottom: 0.5rem; }
.metric-number[b-kvn6l2vt98] { font-size: 1.5rem; font-weight: 700; }
.metric-label[b-kvn6l2vt98] { font-size: 0.85rem; opacity: 0.8; }
.herencia-buttons[b-kvn6l2vt98] { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white[b-kvn6l2vt98] { background: white; color: var(--rojo); padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-flex; gap: 5px; align-items: center; }
.btn-outline-white[b-kvn6l2vt98] { background: transparent; border: 2px solid white; color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; display: inline-flex; gap: 5px; align-items: center; }

/* IMAGEN ENMARCADA */
.herencia-images[b-kvn6l2vt98] { flex: 1; position: relative; display: none; }
@media(min-width: 992px) { .herencia-images[b-kvn6l2vt98] { display: block; } }

.photo-frame-container[b-kvn6l2vt98] { position: relative; padding: 20px; }
.photo-frame[b-kvn6l2vt98] {
    border: 4px solid rgba(255, 255, 255, 0.4);
    padding: 8px; border-radius: 20px;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: rotate(2deg); transition: transform 0.3s ease;
    overflow: hidden;
}
.photo-frame:hover[b-kvn6l2vt98] { transform: rotate(0deg) scale(1.02); }
.framed-img[b-kvn6l2vt98] { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; display: block; }

.quote-card[b-kvn6l2vt98] {
    position: absolute; bottom: 40px; left: -30px;
    background: var(--ambar); color: white;
    padding: 1.5rem 2rem; border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3);
    max-width: 280px; font-weight: 700; font-size: 1.1rem; z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title[b-kvn6l2vt98] { font-size: 2.5rem; }
    .herencia-layout[b-kvn6l2vt98] { flex-direction: column; }
}
/* /Pages/Contacto.razor.rz.scp.css */
:root[b-xllpttok68] {
    --cafe: #281B13;
    --cafe-claro: #3e2f26;
    --ambar: #F7A343;
    --rojo: #B01B18;
    --crema-fondo: #FAF6F5;
    --gris-claro: #e9ecef;
    --blanco: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

[b-xllpttok68] * {
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section[b-xllpttok68] {
    position: relative;
    min-height: 450px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--cafe);
    
    /* Imagen de fondo (puedes cambiar la URL) */
    background-image: 
        linear-gradient(to bottom, rgba(40, 27, 19, 0.85), rgba(40, 27, 19, 0.7)),
        url('https://images.unsplash.com/photo-1577563908411-5077b6dc7624?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.hero-container[b-xllpttok68] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.badge-hero[b-xllpttok68] {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(176, 27, 24, 0.25);
    border: 1px solid rgba(176, 27, 24, 0.6);
    color: #ffbaba;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.hero-title[b-xllpttok68] {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-destacado[b-xllpttok68] {
    color: var(--ambar) !important;
    font-style: italic;
}

.hero-subtitle[b-xllpttok68] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   SECCIÓN GENERAL
   ========================================= */
.section[b-xllpttok68] { padding: 5rem 0; }
.bg-light[b-xllpttok68] { background-color: var(--crema-fondo); }
.container[b-xllpttok68] { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header[b-xllpttok68] { text-align: center; margin-bottom: 3rem; }
.section-title[b-xllpttok68] { font-size: 2.2rem; font-weight: 800; color: var(--cafe); margin-bottom: 0.5rem; }
.section-desc[b-xllpttok68] { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

/* =========================================
   CONTACT GRID
   ========================================= */
.contact-grid[b-xllpttok68] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Formulario */
.card[b-xllpttok68] {
    background: white; border: 1px solid #e2e8f0;
    border-radius: 1.5rem; padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.card-header h3[b-xllpttok68] { margin: 0 0 0.5rem 0; font-size: 1.5rem; font-weight: 800; color: var(--cafe); }
.card-header p[b-xllpttok68] { color: #666; margin-bottom: 2rem; }

.contact-form[b-xllpttok68] { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group[b-xllpttok68] { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width[b-xllpttok68] { grid-column: span 2; }
.form-footer.full-width[b-xllpttok68] { grid-column: span 2; margin-top: 1rem; }

label[b-xllpttok68] { font-size: 0.85rem; font-weight: 700; color: #555; margin-left: 2px; }
.form-control[b-xllpttok68] {
    width: 100%; padding: 12px; border: 1px solid #ddd;
    border-radius: 0.8rem; font-family: inherit; font-size: 1rem;
    transition: all 0.2s;
}
.form-control:focus[b-xllpttok68] { outline: none; border-color: var(--rojo); box-shadow: 0 0 0 4px rgba(176, 27, 24, 0.1); }

/* Botones */
.btn-custom[b-xllpttok68] {
    padding: 12px 25px; border-radius: 50px; font-weight: 700; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s;
}
.btn-rojo[b-xllpttok68] { background-color: var(--rojo); color: white; box-shadow: 0 5px 15px rgba(176, 27, 24, 0.3); }
.btn-rojo:hover[b-xllpttok68] { background-color: #921513; transform: translateY(-2px); }
.btn-rojo:disabled[b-xllpttok68] { background-color: #ccc; cursor: not-allowed; box-shadow: none; }
.btn-block[b-xllpttok68] { width: 100%; }
.btn-outline[b-xllpttok68] { background: white; border: 2px solid var(--rojo); color: var(--rojo); }

/* Estado de Éxito */
.success-state[b-xllpttok68] { text-align: center; padding: 2rem 0; }
.icon-circle.green[b-xllpttok68] { 
    width: 70px; height: 70px; background: rgba(34, 197, 94, 0.1); color: #16a34a; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.icon-circle .material-icons[b-xllpttok68] { font-size: 2.5rem; }
.success-state h3[b-xllpttok68] { color: var(--cafe); font-size: 1.5rem; margin-bottom: 0.5rem; }
.error-msg[b-xllpttok68] { color: var(--rojo); font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: 5px; justify-content: center; }

/* Info Column */
.info-column[b-xllpttok68] { display: flex; flex-direction: column; gap: 1.5rem; }

.info-card h3[b-xllpttok68] { margin-bottom: 1.5rem; font-size: 1.25rem; color: var(--cafe); font-weight: 800; border-bottom: 1px solid #eee; padding-bottom: 1rem; }
.info-list[b-xllpttok68] { display: flex; flex-direction: column; gap: 1.2rem; }
.info-item[b-xllpttok68] { display: flex; align-items: center; gap: 1rem; text-decoration: none; padding: 0.5rem; border-radius: 1rem; transition: background 0.2s; }
.info-item:hover[b-xllpttok68] { background: #f9f9f9; }

.icon-box[b-xllpttok68] {
    width: 45px; height: 45px; background: rgba(176, 27, 24, 0.1); color: var(--rojo);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.label[b-xllpttok68] { font-size: 0.8rem; text-transform: uppercase; color: #888; font-weight: 700; display: block; }
.value[b-xllpttok68] { font-size: 1rem; color: var(--cafe); font-weight: 600; }

/* Mapa */
.map-card[b-xllpttok68] { padding: 0; overflow: hidden; }
.map-footer[b-xllpttok68] { padding: 1rem; text-align: center; background: #f9f9f9; border-top: 1px solid #eee; }
.btn-link[b-xllpttok68] { color: var(--rojo); font-weight: 700; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 5px; }
.btn-link:hover[b-xllpttok68] { text-decoration: underline; }

/* FAQ Grid */
.faq-grid[b-xllpttok68] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.faq-item[b-xllpttok68] { background: white; padding: 2rem; border-radius: 1.5rem; border: 1px solid #eee; box-shadow: var(--shadow-sm); }
.faq-item h4[b-xllpttok68] { color: var(--rojo); margin-bottom: 1rem; font-weight: 800; font-size: 1.1rem; }
.faq-item p[b-xllpttok68] { color: #555; line-height: 1.6; margin: 0; }
.faq-item a[b-xllpttok68] { color: var(--cafe); font-weight: 700; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .contact-grid[b-xllpttok68] { grid-template-columns: 1fr; }
    .contact-form[b-xllpttok68] { grid-template-columns: 1fr; }
    .form-group.full-width[b-xllpttok68] { grid-column: span 1; }
    .form-footer.full-width[b-xllpttok68] { grid-column: span 1; }
}
/* /Pages/Equipo.razor.rz.scp.css */
.page-head[b-zo90uylbzl] {
  padding: 32px 0 12px;
}

.page-head h1[b-zo90uylbzl] {
  margin: 0 0 8px;
  font-size: 34px;
  color: var(--marron);
}

.muted[b-zo90uylbzl] {
  margin: 0;
  opacity: .75;
}

/* CONTENEDOR GENERAL */
.team-wrap[b-zo90uylbzl] {
  padding: 24px 0 48px;
}

.team-grid[b-zo90uylbzl] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* GRUPO */
.group-card[b-zo90uylbzl] {
  background: var(--blanco);
  border-radius: 20px;
  border: 1px solid rgba(40,27,19,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

.group-head[b-zo90uylbzl] {
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(40,27,19,.95),
    rgba(40,27,19,.85)
  );
  color: var(--blanco);
}

.group-title[b-zo90uylbzl] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.group-head h2[b-zo90uylbzl] {
  margin: 0;
  font-size: 18px;
  letter-spacing: .3px;
}

.count[b-zo90uylbzl] {
  background: rgba(247,163,67,.15);
  border: 1px solid rgba(247,163,67,.35);
  color: var(--amarillo);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 800;
  font-size: 12px;
}

.group-sub[b-zo90uylbzl] {
  margin-top: 6px;
  font-size: 13px;
  opacity: .85;
}

/* MIEMBROS */
.members[b-zo90uylbzl] {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.member-card[b-zo90uylbzl] {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(40,27,19,.15);
  transition: transform .15s ease, box-shadow .15s ease;
}

.member-card:hover[b-zo90uylbzl] {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
}

/* AVATAR */
.avatar[b-zo90uylbzl] {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--blanco);
  background: linear-gradient(
    135deg,
    var(--rojo),
    var(--marron)
  );
}

/* TEXTO */
.member-body[b-zo90uylbzl] {
  flex: 1;
  min-width: 0;
}

.member-top[b-zo90uylbzl] {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.member-name[b-zo90uylbzl] {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.member-name strong[b-zo90uylbzl] {
  font-size: 14px;
  color: var(--marron);
}

.nick[b-zo90uylbzl] {
  font-size: 12px;
  opacity: .65;
}

.pill[b-zo90uylbzl] {
  background: rgba(194,226,255,.35);
  color: var(--marron);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.member-meta[b-zo90uylbzl] {
  margin-top: 6px;
  font-size: 12px;
  opacity: .75;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-sep[b-zo90uylbzl] {
  opacity: .4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .members[b-zo90uylbzl] {
    grid-template-columns: 1fr;
  }
}
/* /Pages/Foro.razor.rz.scp.css */
.page-head[b-74du1hf0fs]{
  padding: 28px 0 12px;
}

.head-inner[b-74du1hf0fs]{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.kicker[b-74du1hf0fs]{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(194,226,255,.55);
  border: 1px solid rgba(40,27,19,.10);
  box-shadow: var(--shadow);
  font-size: 24px;
  flex: 0 0 auto;
}

.head-text h1[b-74du1hf0fs]{
  margin: 0 0 6px;
  font-size: 36px;
  letter-spacing: -.3px;
  color: var(--marron);
}

.muted[b-74du1hf0fs]{
  opacity: .85;
  margin: 0;
  color: rgba(40,27,19,.85);
}

.small[b-74du1hf0fs]{ font-size: 12px; }

/* Tabs */
.tabs[b-74du1hf0fs]{
  margin-top: 14px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

.tab[b-74du1hf0fs]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(40,27,19,.18);
  background: rgba(250,246,245,.9);
  color: var(--marron);
  font-weight: 900;
  font-size: 13px;
  cursor:pointer;
}

.tab:hover[b-74du1hf0fs]{
  background: rgba(194,226,255,.25);
  border-color: rgba(194,226,255,.65);
}

.tab.active[b-74du1hf0fs]{
  background: rgba(176,27,24,.10);
  border-color: rgba(176,27,24,.35);
  color: var(--rojo);
}

.tab.ghost[b-74du1hf0fs]{
  background: transparent;
}

/* Hero reflexión */
.hero-ref[b-74du1hf0fs]{
  padding: 6px 0 16px;
}

.hero-card[b-74du1hf0fs]{
  border-radius: 22px;
  padding: 18px 18px 16px;
  background:
    radial-gradient(680px 240px at 14% 16%, rgba(194,226,255,.16), transparent 55%),
    radial-gradient(620px 220px at 86% 12%, rgba(176,27,24,.20), transparent 55%),
    rgba(40,27,19,.94);
  border: 1px solid rgba(194,226,255,.18);
  box-shadow: var(--shadow);
  color: var(--blanco);
}

.hero-badge[b-74du1hf0fs]{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: .04em;
  background: rgba(176,27,24,.18);
  border: 1px solid rgba(176,27,24,.28);
  color: rgba(250,246,245,.95);
  margin-bottom: 10px;
}

.hero-quote[b-74du1hf0fs]{
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
}

.hero-meta[b-74du1hf0fs]{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 12px;
  opacity: .9;
}

.hero-meta .dot[b-74du1hf0fs]{
  opacity: .5;
}

/* Layout */
.wrap[b-74du1hf0fs]{
  padding: 8px 0 54px;
}

.grid[b-74du1hf0fs]{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items:start;
}

.left[b-74du1hf0fs], .right[b-74du1hf0fs]{
  display:flex;
  flex-direction:column;
  gap: 16px;
}

.card[b-74du1hf0fs]{
  background: rgba(250,246,245,.92);
  border: 1px solid rgba(40,27,19,.12);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  overflow: hidden;
}

.card-head[b-74du1hf0fs]{
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(40,27,19,.08);
  background:
    radial-gradient(520px 160px at 12% 20%, rgba(194,226,255,.22), transparent 55%),
    radial-gradient(520px 160px at 86% 10%, rgba(176,27,24,.12), transparent 55%),
    rgba(250,246,245,.92);
}

.card-head h2[b-74du1hf0fs]{
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--marron);
}

.head-row[b-74du1hf0fs]{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}

/* Search */
.search[b-74du1hf0fs]{
  min-width: 240px;
  flex: 0 0 auto;
}

.search input[b-74du1hf0fs]{
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(40,27,19,.18);
  background: rgba(255,255,255,.75);
  padding: 10px 12px;
  outline: none;
  font-size: 13px;
  color: var(--marron);
}

.search input:focus[b-74du1hf0fs]{
  border-color: rgba(194,226,255,.95);
  box-shadow: 0 0 0 4px rgba(194,226,255,.35);
}

/* Buttons */
.btn[b-74du1hf0fs]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(40,27,19,.18);
  background: rgba(250,246,245,.9);
  color: var(--marron);
  cursor: pointer;
}

.btn.primary[b-74du1hf0fs]{
  background: var(--rojo);
  color: var(--blanco);
  border-color: rgba(176,27,24,.35);
}

.btn.primary:hover[b-74du1hf0fs]{ filter: brightness(1.03); }

.btn.ghost[b-74du1hf0fs]{
  background: transparent;
}

.btn.ghost:hover[b-74du1hf0fs]{
  background: rgba(194,226,255,.25);
  border-color: rgba(194,226,255,.65);
}

.btn.mini[b-74du1hf0fs]{
  padding: 8px 12px;
  font-size: 12px;
}

/* Form */
.form-grid[b-74du1hf0fs]{
  padding: 14px 16px 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field[b-74du1hf0fs]{
  display:flex;
  flex-direction:column;
  gap: 6px;
  font-size: 12px;
  color: rgba(40,27,19,.85);
}

.field span[b-74du1hf0fs]{ font-weight: 900; }

.field input[b-74du1hf0fs],
.field textarea[b-74du1hf0fs]{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(40,27,19,.18);
  background: rgba(255,255,255,.75);
  padding: 10px 12px;
  outline: none;
  font-size: 13px;
  color: var(--marron);
}

.field input:focus[b-74du1hf0fs],
.field textarea:focus[b-74du1hf0fs]{
  border-color: rgba(194,226,255,.95);
  box-shadow: 0 0 0 4px rgba(194,226,255,.35);
}

.field-full[b-74du1hf0fs]{ grid-column: 1 / -1; }

.form-actions[b-74du1hf0fs]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hint[b-74du1hf0fs]{
  font-size: 12px;
  opacity: .75;
}

/* List */
.list[b-74du1hf0fs]{
  padding: 14px 16px 16px;
}

.item[b-74du1hf0fs]{
  border: 1px solid rgba(40,27,19,.10);
  background: rgba(255,255,255,.70);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 12px;
}

.item-top[b-74du1hf0fs]{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.who[b-74du1hf0fs]{
  display:flex;
  gap: 10px;
  align-items:center;
  min-width: 0;
}

.avatar[b-74du1hf0fs]{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: var(--marron);
  background:
    radial-gradient(circle at 30% 25%, rgba(194,226,255,.55), rgba(194,226,255,.12)),
    rgba(247,163,67,.10);
  border: 1px solid rgba(40,27,19,.08);
  flex: 0 0 auto;
}

.who-text[b-74du1hf0fs]{
  display:flex;
  flex-direction:column;
  min-width: 0;
}

.who-text strong[b-74du1hf0fs]{
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.count-pill[b-74du1hf0fs]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(176,27,24,.10);
  border: 1px solid rgba(176,27,24,.22);
  color: var(--rojo);
  font-weight: 1000;
  font-size: 12px;
  white-space: nowrap;
}

.item-text[b-74du1hf0fs]{
  color: rgba(40,27,19,.92);
  line-height: 1.4;
  margin-bottom: 10px;
}

.item-actions[b-74du1hf0fs]{
  display:flex;
  justify-content:flex-end;
}

/* Pager */
.pager[b-74du1hf0fs]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(40,27,19,.14);
}

.pages[b-74du1hf0fs]{
  display:flex;
  gap: 8px;
  align-items:baseline;
}

/* Admin */
.admin .admin-body[b-74du1hf0fs]{
  padding: 14px 16px 16px;
}

.admin-item[b-74du1hf0fs]{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content:space-between;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(40,27,19,.10);
  background: rgba(255,255,255,.70);
  margin-bottom: 12px;
}

.admin-top[b-74du1hf0fs]{
  display:flex;
  gap: 10px;
  align-items:baseline;
  justify-content:space-between;
}

.admin-text[b-74du1hf0fs]{
  margin-top: 6px;
  color: rgba(40,27,19,.90);
  line-height: 1.35;
}

.admin-actions[b-74du1hf0fs]{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* Note */
.note[b-74du1hf0fs]{
  border-radius: 22px;
  background: rgba(40,27,19,.94);
  color: var(--blanco);
  border: 1px solid rgba(194,226,255,.18);
  box-shadow: var(--shadow);
  padding: 16px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.note h3[b-74du1hf0fs]{
  margin: 0 0 6px;
  font-size: 16px;
}

.note .muted[b-74du1hf0fs]{ color: rgba(250,246,245,.88); }

.note-actions[b-74du1hf0fs]{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Reflexiones */
.ref-head[b-74du1hf0fs]{
  padding: 10px 0 14px;
}

.ref-head h2[b-74du1hf0fs]{
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--marron);
}

.ref-grid[b-74du1hf0fs]{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.ref-card[b-74du1hf0fs]{
  background: rgba(250,246,245,.92);
  border: 1px solid rgba(40,27,19,.12);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  padding: 14px;
}

.ref-top[b-74du1hf0fs]{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.ref-chip[b-74du1hf0fs]{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  background: rgba(194,226,255,.40);
  border: 1px solid rgba(194,226,255,.65);
  color: var(--marron);
}

.ref-card h3[b-74du1hf0fs]{
  margin: 0 0 6px;
  color: var(--marron);
  font-size: 16px;
}

.ref-foot[b-74du1hf0fs]{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(40,27,19,.14);
}

/* debating empty */
.empty[b-74du1hf0fs]{
  padding: 12px;
  border-radius: 18px;
  background: rgba(194,226,255,.22);
  border: 1px solid rgba(194,226,255,.55);
  color: rgba(40,27,19,.90);
}
/* Nota debajo del formulario (clara, para no competir con el listado) */
.note.note-light[b-74du1hf0fs]{
  background: rgba(250,246,245,.92);
  color: var(--marron);
  border: 1px solid rgba(40,27,19,.12);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

.note.note-light .muted[b-74du1hf0fs]{
  color: rgba(40,27,19,.85);
}


/* Responsive */
@media (max-width: 980px){
  .grid[b-74du1hf0fs]{ grid-template-columns: 1fr; }
  .head-row[b-74du1hf0fs]{ flex-direction:column; }
  .search[b-74du1hf0fs]{ min-width: 100%; }
  .ref-grid[b-74du1hf0fs]{ grid-template-columns: 1fr; }
}
/* /Pages/Historia.razor.rz.scp.css */
.page-head[b-vfozwolc9c] { padding: 28px 0 10px; }

.badge[b-vfozwolc9c] {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
    border-radius: 999px; background: rgba(176,27,24,.14);
    border: 1px solid rgba(176,27,24,.25); color: #b01b18; /* var(--rojo) */
    font-weight: 900; font-size: 12px; letter-spacing: .04em;
}

.page-head h1[b-vfozwolc9c] { margin: 10px 0 8px; font-size: 34px; letter-spacing: -.2px; color: #281b13; /* var(--marron) */ }
.muted[b-vfozwolc9c] { opacity: .86; margin: 0; color: rgba(40,27,19,.86); }

/* Layout */
.timeline-wrap[b-vfozwolc9c] { padding: 18px 0 44px; }
.timeline-grid[b-vfozwolc9c] { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; align-items: start; }

/* Left card */
.timeline-card[b-vfozwolc9c] {
    background: rgba(40,27,19,.94); color: #fff; border-radius: 22px;
    border: 1px solid rgba(194,226,255,.18); overflow: hidden;
}

.timeline-head[b-vfozwolc9c] {
    padding: 16px 16px 10px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: radial-gradient(550px 180px at 18% 18%, rgba(194,226,255,.18), transparent 55%), 
                radial-gradient(500px 160px at 88% 20%, rgba(176,27,24,.18), transparent 55%), 
                rgba(40,27,19,.92);
    border-bottom: 1px solid rgba(250,246,245,.10);
}
.timeline-head h2[b-vfozwolc9c] { margin: 0; font-size: 18px; letter-spacing: .2px; }
.pill[b-vfozwolc9c] { font-size: 11px; font-weight: 900; padding: 6px 10px; border-radius: 999px; background: rgba(250,246,245,.10); border: 1px solid rgba(250,246,245,.16); }

/* Timeline list */
.timeline[b-vfozwolc9c] { padding: 10px 10px 12px 16px; }
.tl-item[b-vfozwolc9c] {
    width: 100%; text-align: left; display: flex; gap: 12px; padding: 10px 10px; margin: 4px 6px;
    border-radius: 16px; color: inherit; border: 1px solid transparent; background: transparent; cursor: pointer;
}
.tl-item:hover[b-vfozwolc9c] { background: rgba(250,246,245,.06); border-color: rgba(194,226,255,.65); }
.dot[b-vfozwolc9c] { width: 10px; height: 10px; border-radius: 999px; margin-top: 6px; background: #b01b18; box-shadow: 0 0 0 3px rgba(176,27,24,.18); flex: 0 0 auto; }
.tl-body[b-vfozwolc9c] { min-width: 0; flex: 1; }
.tl-top[b-vfozwolc9c] { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.tl-year[b-vfozwolc9c] { font-weight: 1000; letter-spacing: .2px; }
.tl-place[b-vfozwolc9c] { opacity: .9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-note[b-vfozwolc9c] { margin-top: 4px; font-size: 12px; opacity: .85; }

/* Foot note */
.timeline-foot[b-vfozwolc9c] { padding: 0 16px 16px; }
.callout[b-vfozwolc9c] { background: rgba(250,246,245,.08); border: 1px solid rgba(194,226,255,.20); border-radius: 18px; padding: 12px; font-size: 13px; line-height: 1.35; }

/* Right column (cards) */
.years-head[b-vfozwolc9c] { padding: 6px 0 10px; }
.years-head h2[b-vfozwolc9c] { margin: 0 0 6px; font-size: 18px; color: #281b13; }
.year-card[b-vfozwolc9c] { background: rgba(250,246,245,.94); border: 1px solid rgba(40,27,19,.12); border-radius: 22px; box-shadow: 0 12px 26px rgba(0,0,0,.06); padding: 16px; margin-bottom: 12px; }
.year-top[b-vfozwolc9c] { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.year-chip[b-vfozwolc9c] { font-weight: 1000; color: #fff; background: #b01b18; border-radius: 999px; padding: 6px 10px; font-size: 12px; }
.year-title[b-vfozwolc9c] { display: flex; align-items: baseline; gap: 8px; min-width: 0; color: #281b13; }
.year-title strong[b-vfozwolc9c] { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sep[b-vfozwolc9c] { opacity: .35; }
.small[b-vfozwolc9c] { font-size: 12px; opacity: .8; white-space: nowrap; }
.year-text[b-vfozwolc9c] { margin: 0 0 12px; color: rgba(40,27,19,.90); line-height: 1.45; }
.year-actions[b-vfozwolc9c] { display: flex; gap: 10px; flex-wrap: wrap; }

/* Buttons */
.btn[b-vfozwolc9c] { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px; text-decoration: none; font-weight: 900; font-size: 13px; border: 1px solid rgba(40,27,19,.16); background: #fff; color: #281b13; cursor: pointer; }
.btn.primary[b-vfozwolc9c] { background: #f7a343; border-color: rgba(40,27,19,.10); }
.btn.primary:hover[b-vfozwolc9c] { filter: brightness(.98); }
.btn.ghost[b-vfozwolc9c] { background: transparent; border-color: rgba(40,27,19,.22); }
.btn.ghost:hover[b-vfozwolc9c] { background: rgba(194,226,255,.35); }

/* Note band */
.note-band[b-vfozwolc9c] { padding: 10px 0 60px; }
.note-inner[b-vfozwolc9c] { background: rgba(40,27,19,.95); border-radius: 22px; padding: 16px; color: #fff; border: 1px solid rgba(176,27,24,.35); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.note-inner h3[b-vfozwolc9c] { margin: 0 0 6px; }
.note-inner .muted[b-vfozwolc9c] { color: rgba(250,246,245,.92); }
.note-actions[b-vfozwolc9c] { display: flex; gap: 10px; flex-wrap: wrap; }

/* ------- MODAL ------- */
.modal-backdrop[b-vfozwolc9c] {
    position: fixed; inset: 0; background: rgba(40,27,19,.55);
    backdrop-filter: blur(4px); z-index: 1000;
}

.modal[b-vfozwolc9c] {
    position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
    z-index: 1001; padding: 18px; pointer-events: none; /* Para que el backdrop click funcione atrás si hay margin */
}

.modal-card[b-vfozwolc9c] {
    pointer-events: auto; /* Reactivar clicks en la tarjeta */
    width: min(1000px, 100%); max-height: 86vh; overflow: auto;
    background: rgba(250,246,245,.98); border: 1px solid rgba(40,27,19,.14);
    border-radius: 22px; box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.modal-head[b-vfozwolc9c] {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(40,27,19,.10);
    background: radial-gradient(650px 220px at 20% 0%, rgba(194,226,255,.55), transparent 55%),
                radial-gradient(520px 200px at 90% 10%, rgba(247,163,67,.22), transparent 55%),
                rgba(250,246,245,.98);
    position: sticky; top: 0; z-index: 1;
}

.modal-title[b-vfozwolc9c] { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.modal-year[b-vfozwolc9c] { display: inline-flex; align-items: center; justify-content: center; height: 28px; padding: 0 12px; border-radius: 999px; background: #b01b18; color: #fff; font-weight: 900; font-size: 12px; }
.modal-place[b-vfozwolc9c] { color: #281b13; }
.icon-btn[b-vfozwolc9c] { border: 1px solid rgba(40,27,19,.14); background: rgba(255,255,255,.85); border-radius: 999px; width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.icon-btn:hover[b-vfozwolc9c] { background: rgba(194,226,255,.30); }

.modal-body[b-vfozwolc9c] { padding: 14px 16px 16px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 14px; }
.info-card[b-vfozwolc9c] { background: rgba(255,255,255,.85); border: 1px solid rgba(40,27,19,.10); border-radius: 18px; padding: 12px; margin-bottom: 12px; }
.info-card h3[b-vfozwolc9c] { margin: 0 0 6px; font-size: 14px; letter-spacing: .2px; }
.facts[b-vfozwolc9c] { margin: 8px 0 0; padding-left: 18px; color: rgba(40,27,19,.88); }

/* Carousel y Testimonios */
.carousel[b-vfozwolc9c] { background: rgba(255,255,255,.85); border: 1px solid rgba(40,27,19,.10); border-radius: 18px; padding: 12px; margin-bottom: 12px; }
.carousel-frame[b-vfozwolc9c] { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(40,27,19,.10); background: rgba(194,226,255,.20); }
.carousel-frame img[b-vfozwolc9c] { width: 100%; height: 280px; object-fit: cover; display: block; }
.carousel-ind[b-vfozwolc9c] { position: absolute; right: 10px; bottom: 10px; background: rgba(40,27,19,.78); color: #fff; font-size: 12px; padding: 4px 8px; border-radius: 999px; }

.testis[b-vfozwolc9c] { background: rgba(255,255,255,.85); border: 1px solid rgba(40,27,19,.10); border-radius: 18px; padding: 12px; }
.testis h3[b-vfozwolc9c] { margin: 0 0 8px; font-size: 14px; }
.testi-card[b-vfozwolc9c] { background: rgba(250,246,245,.95); border: 1px solid rgba(40,27,19,.10); border-radius: 16px; padding: 12px; margin-bottom: 8px; }

/* Responsive */
@media (max-width: 980px) {
    .timeline-grid[b-vfozwolc9c] { grid-template-columns: 1fr; }
    .modal-body[b-vfozwolc9c] { grid-template-columns: 1fr; }
    .carousel-frame img[b-vfozwolc9c] { height: 240px; }
}
/* /Pages/Home.razor.rz.scp.css */
:root[b-j9tznfj49b]{
  --snow:#FAF6F5;
  --icy:#C2E2FF;
  --coffee:#281B13;
  --amber:#F7A343;
  --mahogany:#B01B18;

  --muted:rgba(255,255,255,.78);
  --shadow-lg: 0 18px 45px rgba(0,0,0,.22);
  --container: 1100px;
}

/* ---------- HERO ---------- */
.hero[b-j9tznfj49b]{
  min-height: calc(100svh - 60px);
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  background-image: url('/img/PortadaWeb.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow:hidden;
}

.hero[b-j9tznfj49b]::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background: linear-gradient(to bottom,
    rgba(40,27,19,.55),
    rgba(40,27,19,.78)
  );
  mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
}

.hero-content[b-j9tznfj49b]{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 1rem;
  width: min(var(--container), 92vw);
  color: white;
  padding: 7rem 1rem;
}

.main-logo[b-j9tznfj49b]{
  width: 140px;
  margin-bottom: .4rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.35));
}

.main-title[b-j9tznfj49b]{
  font-family: "Arturo", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: .18em;
  margin: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.subtitle[b-j9tznfj49b]{
  font-family: "Code Pro", system-ui, sans-serif;
  font-style: normal;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 .6rem 0;
  letter-spacing: .03em;
}


/* CTA */
.hero-actions[b-j9tznfj49b]{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom: 1.1rem;
}

.btn[b-j9tznfj49b]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.85rem 1.15rem;
  border-radius: 999px;
  font-family: "Code Pro", system-ui, sans-serif;
  font-weight: 600;
  text-decoration:none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}

.btn-primary[b-j9tznfj49b]{
  background: var(--mahogany);
  color: white;
  box-shadow: 0 12px 30px rgba(176,27,24,.25);
}
.btn-primary:hover[b-j9tznfj49b]{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(176,27,24,.32);
}

.btn-ghost[b-j9tznfj49b]{
  background: rgba(250,246,245,.10);
  color: white;
  border: 1px solid rgba(250,246,245,.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover[b-j9tznfj49b]{
  transform: translateY(-2px);
  background: rgba(250,246,245,.16);
}

/* Stats */
.stats-container[b-j9tznfj49b]{
  display:flex;
  justify-content:center;
  gap: 1rem;
  margin-top: .8rem;
  flex-wrap:wrap;
}

.stat-item[b-j9tznfj49b]{
  min-width: 190px;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(40,27,19,.35);
  border: 1px solid rgba(250,246,245,.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.stat-number[b-j9tznfj49b]{
  display:block;
  font-family: "Arturo", serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: .02em;
  text-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.stat-label[b-j9tznfj49b]{
  font-family: "Code Pro", system-ui, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .55rem;
  opacity: .9;
}

.scroll-indicator[b-j9tznfj49b]{
  margin-top: 2.2rem;
  font-size: .9rem;
  opacity: .75;
  animation: bounce-b-j9tznfj49b 2s infinite;
  font-family: "Code Pro", system-ui, sans-serif;
  letter-spacing: .04em;
}

@keyframes bounce-b-j9tznfj49b{
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ---------- PANELES ACORDEÓN ---------- */
.vertical-container[b-j9tznfj49b]{
  display:flex;
  width: min(1200px, 95%);
  height: 62vh;
  margin: 4rem auto 5rem;
  gap: 14px;
}
/* MEJORAS DE LEGIBILIDAD EN PANELES */
.paneles-section[b-j9tznfj49b] {
    padding: 4rem 0;
    background: var(--snow);
}

.container-title[b-j9tznfj49b] {
    text-align: center;
    margin-bottom: 2rem;
}

.vertical-container[b-j9tznfj49b] {
    display: flex;
    width: min(1300px, 95%);
    height: 70vh;
    margin: 0 auto;
    gap: 15px;
    perspective: 1000px;
}

.panel[b-j9tznfj49b] {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    flex: 0.7; /* Más angosto cuando está cerrado */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all .6s cubic-bezier(.25, .8, .25, 1);
    text-decoration: none;
    color: white;
}

.panel-overlay[b-j9tznfj49b] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40,27,19,0.9), rgba(40,27,19,0.2));
    z-index: 1;
}

/* NOMBRE VERTICAL CUANDO ESTÁ CERRADO */
.panel-collapsed-label[b-j9tznfj49b] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    z-index: 2;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.4s ease;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.panel.active[b-j9tznfj49b] {
    flex: 5;
    box-shadow: 0 20px 50px rgba(40,27,19,0.3);
}

.panel.active .panel-collapsed-label[b-j9tznfj49b] {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg) translateY(20px);
}

/* CONTENIDO ABIERTO */
.panel-content[b-j9tznfj49b] {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.panel.active .panel-content[b-j9tznfj49b] {
    opacity: 1;
    transform: translateY(0);
}

.panel-category[b-j9tznfj49b] {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.panel h3[b-j9tznfj49b] {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    margin: 0 0 1rem;
    font-weight: 900;
}

.panel-cta[b-j9tznfj49b] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--amber);
}

/* RESPONSIVE OPTIMIZADO */
@media (max-width: 1024px) {
    .vertical-container[b-j9tznfj49b] { height: 60vh; }
    .panel-collapsed-label[b-j9tznfj49b] { font-size: 1rem; }
}

@media (max-width: 768px) {
    .vertical-container[b-j9tznfj49b] {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .panel[b-j9tznfj49b] {
        height: 120px; /* Tamaño colapsado en móvil */
        flex: none;
        width: 100%;
        align-items: center;
    }

    .panel.active[b-j9tznfj49b] {
        height: 350px;
    }

    .panel-collapsed-label[b-j9tznfj49b] {
        transform: translate(-50%, -50%); /* Sin rotación en móvil */
        rotate: 0deg;
        letter-spacing: 2px;
        font-size: 1.5rem;
    }
    
    .panel-content[b-j9tznfj49b] {
        padding: 1.5rem;
    }
}
/* /Pages/Identidad.razor.rz.scp.css */
:root[b-jy9c5ncn0y] {
    --cafe: #281B13;
    --cafe-claro: #3e2f26;
    --ambar: #F7A343;
    --rojo: #B01B18;
    --crema-fondo: #FAF6F5;
    --gris-claro: #e9ecef;
    --blanco: #ffffff;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

[b-jy9c5ncn0y] * {
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section[b-jy9c5ncn0y] {
    position: relative;
    min-height: 450px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--cafe);
    
    /* Imagen de fondo (puedes cambiar la URL por una foto de misión grupal) */
    background-image: 
        linear-gradient(to bottom, rgba(40, 27, 19, 0.8), rgba(40, 27, 19, 0.6)),
        url('img/portadaIdentidad.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-container[b-jy9c5ncn0y] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.badge-hero[b-jy9c5ncn0y] {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(176, 27, 24, 0.25);
    border: 1px solid rgba(176, 27, 24, 0.6);
    color: #ffbaba;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.hero-title[b-jy9c5ncn0y] {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-destacado[b-jy9c5ncn0y] {
    color: var(--ambar) !important; /* Ámbar para resaltar sobre oscuro */
    font-style: italic;
}

.hero-subtitle[b-jy9c5ncn0y] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   SECCIÓN GENERAL
   ========================================= */
.section[b-jy9c5ncn0y] { padding: 5rem 0; }
.bg-light[b-jy9c5ncn0y] { background-color: var(--crema-fondo); }
.container[b-jy9c5ncn0y] { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-header[b-jy9c5ncn0y] { text-align: center; margin-bottom: 3rem; }
.section-title[b-jy9c5ncn0y] { font-size: 2.2rem; font-weight: 800; color: var(--cafe); margin-bottom: 0.5rem; }
.section-desc[b-jy9c5ncn0y] { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }
.badge-title[b-jy9c5ncn0y] {
    color: var(--rojo); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px;
    display: block; margin-bottom: 10px;
}

/* =========================================
   MISIÓN & STATS GRID
   ========================================= */
.about-grid[b-jy9c5ncn0y] {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.text-column .overline[b-jy9c5ncn0y] {
    text-transform: uppercase; color: var(--rojo); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem;
}
.text-column h2[b-jy9c5ncn0y] { margin-bottom: 1.5rem; }
.text-content p[b-jy9c5ncn0y] { color: #555; line-height: 1.7; margin-bottom: 1rem; font-size: 1.05rem; }

/* Stats Cards */
.stats-column[b-jy9c5ncn0y] { display: flex; flex-direction: column; gap: 1.5rem; }
.stats-row[b-jy9c5ncn0y] { display: flex; gap: 1.5rem; }

.stat-card[b-jy9c5ncn0y] {
    background: white; border: 1px solid #e2e8f0;
    border-radius: 1.5rem; padding: 2rem;
    text-align: center; box-shadow: var(--shadow-sm);
    flex: 1;
}

.stat-card.primary[b-jy9c5ncn0y] {
    background: var(--rojo); color: white; border: none;
    box-shadow: 0 10px 25px -5px rgba(176, 27, 24, 0.4);
}
.stat-card.primary .stat-label[b-jy9c5ncn0y] { color: rgba(255,255,255,0.8); }

.big-number[b-jy9c5ncn0y] { font-size: 4rem; font-weight: 900; line-height: 1; display: block; margin-bottom: 0.5rem; }
.mid-number[b-jy9c5ncn0y] { font-size: 2.5rem; font-weight: 800; color: var(--cafe); display: block; margin-bottom: 0.5rem; }
.stat-label[b-jy9c5ncn0y] { font-size: 0.9rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; color: #888; }

/* =========================================
   ACTIVITIES GRID
   ========================================= */
.activities-grid[b-jy9c5ncn0y] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-card[b-jy9c5ncn0y] {
    background: white; padding: 2rem;
    border-radius: 1.5rem; border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
}
.activity-card:hover[b-jy9c5ncn0y] { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.icon-circle[b-jy9c5ncn0y] {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.icon-circle.amber[b-jy9c5ncn0y] { background: rgba(247, 163, 67, 0.15); color: var(--ambar); }
.icon-circle.red[b-jy9c5ncn0y] { background: rgba(176, 27, 24, 0.1); color: var(--rojo); }

.activity-card h3[b-jy9c5ncn0y] { font-size: 1.25rem; font-weight: 700; color: var(--cafe); margin-bottom: 1rem; }
.activity-card p[b-jy9c5ncn0y] { color: #666; font-size: 0.95rem; line-height: 1.5; }

/* =========================================
   TIMELINE (HISTORIA)
   ========================================= */
.loading-state[b-jy9c5ncn0y] { text-align: center; padding: 3rem; color: #888; }
.spinner[b-jy9c5ncn0y] { border: 3px solid #f3f3f3; border-top: 3px solid var(--rojo); border-radius: 50%; width: 30px; height: 30px; animation: spin-b-jy9c5ncn0y 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin-b-jy9c5ncn0y { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.timeline-grid[b-jy9c5ncn0y] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.year-card[b-jy9c5ncn0y] {
    background: white; border: 1px solid #e2e8f0;
    border-radius: 1.25rem; padding: 1.5rem;
    cursor: pointer; transition: all 0.2s;
    display: flex; flex-direction: column;
}
.year-card:hover[b-jy9c5ncn0y] { border-color: var(--ambar); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.year-header[b-jy9c5ncn0y] { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.year-badge[b-jy9c5ncn0y] { background: var(--rojo); color: white; padding: 4px 10px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; }
.year-place[b-jy9c5ncn0y] { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--cafe); }
.year-province[b-jy9c5ncn0y] { font-size: 0.85rem; color: #888; font-weight: 600; margin-bottom: 1rem; display: block; }
.year-desc[b-jy9c5ncn0y] { font-size: 0.9rem; color: #555; line-height: 1.5; flex-grow: 1; margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.year-footer[b-jy9c5ncn0y] { border-top: 1px solid #f0f0f0; padding-top: 1rem; margin-top: auto; }
.btn-link[b-jy9c5ncn0y] { color: var(--rojo); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
.btn-link .material-icons[b-jy9c5ncn0y] { font-size: 1rem; transition: transform 0.2s; }
.year-card:hover .btn-link .material-icons[b-jy9c5ncn0y] { transform: translateX(3px); }

/* =========================================
   MODAL (REDISEÑO)
   ========================================= */
.modal-backdrop[b-jy9c5ncn0y] {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(40, 27, 19, 0.7);
    backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}

.modal-container[b-jy9c5ncn0y] {
    background: white; width: 100%; max-width: 1000px;
    height: 85vh; border-radius: 1.5rem;
    display: flex; flex-direction: column;
    overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: slideUp-b-jy9c5ncn0y 0.3s ease-out;
}
@keyframes slideUp-b-jy9c5ncn0y { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Header Modal */
.modal-header[b-jy9c5ncn0y] {
    background: var(--rojo); color: white; padding: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}
.modal-title-group[b-jy9c5ncn0y] { display: flex; align-items: center; gap: 15px; }
.modal-year[b-jy9c5ncn0y] { background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 50px; font-weight: 800; font-size: 1.1rem; }
.modal-header h3[b-jy9c5ncn0y] { margin: 0; font-size: 1.5rem; font-weight: 800; }
.modal-subtitle[b-jy9c5ncn0y] { opacity: 0.9; font-size: 0.9rem; }
.btn-close[b-jy9c5ncn0y] { background: rgba(255,255,255,0.2); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.btn-close:hover[b-jy9c5ncn0y] { background: white; color: var(--rojo); }

/* Layout Interno */
.modal-content-grid[b-jy9c5ncn0y] {
    display: grid; grid-template-columns: 1.2fr 1fr;
    flex-grow: 1; overflow: hidden;
}

/* Fotos (Izquierda) */
.modal-media[b-jy9c5ncn0y] { background: #1a1a1a; padding: 20px; display: flex; align-items: center; justify-content: center; }
.photo-viewer[b-jy9c5ncn0y] { position: relative; width: 100%; height: 100%; max-height: 500px; border-radius: 10px; overflow: hidden; }
.main-photo[b-jy9c5ncn0y] { width: 100%; height: 100%; object-fit: contain; background: black; }
.photo-controls[b-jy9c5ncn0y] {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,0.6); padding: 5px 15px; border-radius: 50px;
}
.nav-btn[b-jy9c5ncn0y] { background: none; border: none; color: white; cursor: pointer; display: flex; }
.photo-counter[b-jy9c5ncn0y] { color: white; font-size: 0.85rem; font-weight: 600; }

/* Info (Derecha) */
.modal-details[b-jy9c5ncn0y] { padding: 2rem; overflow-y: auto; background: var(--crema-fondo); }
.detail-box[b-jy9c5ncn0y] { background: white; padding: 1.5rem; border-radius: 1rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; border: 1px solid #eee; }
.detail-box h4[b-jy9c5ncn0y] { color: var(--cafe); font-size: 1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1rem; border-bottom: 2px solid #f0f0f0; padding-bottom: 0.5rem; }

.data-list[b-jy9c5ncn0y] { list-style: none; padding: 0; margin: 0; }
.data-list li[b-jy9c5ncn0y] { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; color: #555; }
.data-list .icon[b-jy9c5ncn0y] { color: var(--rojo); font-size: 1.2rem; }

.testimonial-item[b-jy9c5ncn0y] { background: #f9f9f9; padding: 1rem; border-radius: 0.8rem; margin-bottom: 1rem; font-style: italic; border-left: 3px solid var(--ambar); }
.testimonial-item small[b-jy9c5ncn0y] { display: block; margin-top: 5px; font-weight: 700; color: var(--cafe); font-style: normal; }

/* Responsive */
@media (max-width: 900px) {
    .about-grid[b-jy9c5ncn0y] { grid-template-columns: 1fr; gap: 2rem; }
    .stats-row[b-jy9c5ncn0y] { flex-direction: row; }
    .modal-content-grid[b-jy9c5ncn0y] { grid-template-columns: 1fr; overflow-y: auto; }
    .modal-media[b-jy9c5ncn0y] { min-height: 300px; }
    .modal-container[b-jy9c5ncn0y] { height: 95vh; }
}
@media (max-width: 600px) {
    .stats-row[b-jy9c5ncn0y] { flex-direction: column; }
    .hero-title[b-jy9c5ncn0y] { font-size: 2.2rem; }
}
/* /Pages/Penia.razor.rz.scp.css */
:root[b-a8ofhbo4nd] {
    --cafe: #281B13; --cafe-claro: #3e2f26; --ambar: #F7A343; --rojo: #B01B18;
    --crema-fondo: #FAF6F5; --gris-claro: #e9ecef; --blanco: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-lg: 1rem; --radius-xl: 1.5rem;
}

[b-a8ofhbo4nd] * { font-family: 'Plus Jakarta Sans', sans-serif; box-sizing: border-box; }

/* HERO SECTION */
.hero-section[b-a8ofhbo4nd] {
    position: relative; min-height: 550px; display: flex; align-items: center; justify-content: center; text-align: center; color: white;
    background-color: var(--cafe);
    background-image: linear-gradient(to bottom, rgba(40, 27, 19, 0.8), rgba(40, 27, 19, 0.6)), url('img/lh2.png');
    background-size: cover; background-position: center;
}
.hero-container[b-a8ofhbo4nd] { position: relative; z-index: 2; max-width: 800px; padding: 20px; }
.badge-hero[b-a8ofhbo4nd] { display: inline-block; padding: 8px 18px; background: rgba(247, 163, 67, 0.2); border: 1px solid rgba(247, 163, 67, 0.5); color: #ffca8b; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; backdrop-filter: blur(4px); }
.hero-title[b-a8ofhbo4nd] { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.text-destacado[b-a8ofhbo4nd] { color: var(--ambar) !important; font-style: italic; }
.hero-subtitle[b-a8ofhbo4nd] { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 35px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-actions[b-a8ofhbo4nd] { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* BOTONES */
.btn-custom[b-a8ofhbo4nd] { padding: 12px 28px; border-radius: 50px; font-weight: 700; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; text-decoration: none; }
.btn-white[b-a8ofhbo4nd] { background-color: #ffffff !important; color: #281B13 !important; border: 2px solid #ffffff !important; }
.btn-white:hover[b-a8ofhbo4nd] { background-color: #f2f2f2 !important; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.btn-outline-white[b-a8ofhbo4nd] { background-color: rgba(255,255,255,0.1) !important; border: 2px solid #ffffff !important; color: #ffffff !important; backdrop-filter: blur(4px); }
.btn-outline-white:hover[b-a8ofhbo4nd] { background-color: rgba(255,255,255,0.2) !important; transform: translateY(-2px); }

/* SECCIONES */
.section[b-a8ofhbo4nd] { padding: 5rem 0; }
.bg-light[b-a8ofhbo4nd] { background-color: var(--crema-fondo); }
.container[b-a8ofhbo4nd] { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header[b-a8ofhbo4nd] { text-align: center; margin-bottom: 3rem; }
.section-title[b-a8ofhbo4nd] { font-size: 2.2rem; font-weight: 800; color: var(--cafe); margin-bottom: 0.5rem; }
.section-desc[b-a8ofhbo4nd] { font-size: 1.1rem; color: #666; max-width: 700px; margin: 0 auto; }

/* ABOUT GRID */
.about-grid[b-a8ofhbo4nd] { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.text-column .overline[b-a8ofhbo4nd] { text-transform: uppercase; color: var(--rojo); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem; }
.text-content p[b-a8ofhbo4nd] { color: #555; line-height: 1.7; margin-bottom: 1rem; font-size: 1.05rem; }
.stats-mini-grid[b-a8ofhbo4nd] { display: flex; gap: 1.5rem; margin-top: 2rem; }
.stat-mini[b-a8ofhbo4nd] { display: flex; flex-direction: column; border-left: 3px solid var(--ambar); padding-left: 1rem; }
.stat-k[b-a8ofhbo4nd] { font-size: 0.8rem; text-transform: uppercase; color: #888; font-weight: 700; }
.stat-v[b-a8ofhbo4nd] { font-size: 1.1rem; font-weight: 800; color: var(--cafe); }

/* COLLAGE */
.collage-container[b-a8ofhbo4nd] { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 15px; height: 450px; position: relative; }
.collage-img[b-a8ofhbo4nd] { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.collage-img:hover[b-a8ofhbo4nd] { transform: scale(1.02); }
.collage-img.main[b-a8ofhbo4nd] { grid-column: 1 / 2; grid-row: 1 / 3; }
.collage-img.sub-top[b-a8ofhbo4nd] { grid-column: 2 / 3; grid-row: 1 / 2; }
.collage-img.sub-bottom[b-a8ofhbo4nd] { grid-column: 2 / 3; grid-row: 2 / 3; }

/* FEATURES */
.features-grid[b-a8ofhbo4nd] { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.feature-card[b-a8ofhbo4nd] { background: white; padding: 2rem; border-radius: 1.5rem; border: 1px solid #e2e8f0; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.feature-card:hover[b-a8ofhbo4nd] { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.icon-circle[b-a8ofhbo4nd] { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.icon-circle.amber[b-a8ofhbo4nd] { background: rgba(247, 163, 67, 0.15); color: var(--ambar); }
.icon-circle.red[b-a8ofhbo4nd] { background: rgba(176, 27, 24, 0.1); color: var(--rojo); }
.feature-card h3[b-a8ofhbo4nd] { font-size: 1.25rem; font-weight: 700; color: var(--cafe); margin-bottom: 1rem; }
.feature-card p[b-a8ofhbo4nd] { color: #666; font-size: 0.95rem; line-height: 1.5; }

/* SPONSOR CTA (CON LOGO) */
.cta-sponsor-card[b-a8ofhbo4nd] {
    background: var(--rojo); color: white; border-radius: 2rem;
    display: grid; grid-template-columns: 1.2fr 0.8fr; overflow: hidden;
    box-shadow: 0 20px 40px rgba(176, 27, 24, 0.3);
    position: relative;
}
.cta-content[b-a8ofhbo4nd] { padding: 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.pill[b-a8ofhbo4nd] { background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; align-self: flex-start; margin-bottom: 1.5rem; }
.cta-content h2[b-a8ofhbo4nd] { font-size: 2.5rem; font-weight: 900; margin-bottom: 1.5rem; line-height: 1.1; }
.cta-content p[b-a8ofhbo4nd] { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.6; }
.benefits-list[b-a8ofhbo4nd] { list-style: none; padding: 0; margin: 0 0 2.5rem 0; }
.benefits-list li[b-a8ofhbo4nd] { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check[b-a8ofhbo4nd] { background: white; color: var(--rojo); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; }

.cta-image[b-a8ofhbo4nd] { 
    background: #921513; 
    position: relative; 
    min-height: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.abstract-pattern[b-a8ofhbo4nd] { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0); background-size: 20px 20px; }

/* ESTILO DEL LOGO ENMARCADO */
.logo-overlay[b-a8ofhbo4nd] {
    position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 250px; height: 250px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}
.logo-overlay:hover[b-a8ofhbo4nd] { transform: rotate(0deg) scale(1.05); }

.cta-logo[b-a8ofhbo4nd] {
    width: 80%; 
    height: auto; 
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* SPONSORS GRID */
.sponsors-grid[b-a8ofhbo4nd] { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sponsor-item[b-a8ofhbo4nd] { background: white; border: 1px solid #e2e8f0; border-radius: 1rem; height: 120px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; transition: all 0.3s ease; }
.sponsor-item img[b-a8ofhbo4nd] { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: all 0.3s ease; }
.sponsor-item:hover[b-a8ofhbo4nd] { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--ambar); }
.sponsor-item:hover img[b-a8ofhbo4nd] { filter: grayscale(0%) opacity(1); }
.empty-state[b-a8ofhbo4nd] { text-align: center; padding: 3rem; color: #888; border: 2px dashed #ddd; border-radius: 1.5rem; }
.btn-link[b-a8ofhbo4nd] { color: var(--rojo); font-weight: 700; text-decoration: underline; }
.loading-state[b-a8ofhbo4nd] { text-align: center; padding: 3rem; color: #888; }
.spinner[b-a8ofhbo4nd] { border: 3px solid #f3f3f3; border-top: 3px solid var(--rojo); border-radius: 50%; width: 30px; height: 30px; animation: spin-b-a8ofhbo4nd 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin-b-a8ofhbo4nd { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 900px) {
    .about-grid[b-a8ofhbo4nd] { grid-template-columns: 1fr; }
    .cta-sponsor-card[b-a8ofhbo4nd] { grid-template-columns: 1fr; }
    .cta-image[b-a8ofhbo4nd] { min-height: 200px; padding: 2rem; }
    .logo-overlay[b-a8ofhbo4nd] { width: 150px; height: 150px; }
    .cta-content[b-a8ofhbo4nd] { padding: 3rem 2rem; }
    .collage-container[b-a8ofhbo4nd] { height: 350px; }
}
/* /Pages/Pueblo.razor.rz.scp.css */
.page-head[b-ybjy81rxrk]{
  padding: 28px 0 10px;
}

.badge[b-ybjy81rxrk]{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(176,27,24,.14);
  border: 1px solid rgba(176,27,24,.25);
  color: var(--rojo);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
}

.page-head h1[b-ybjy81rxrk]{
  margin: 10px 0 8px;
  font-size: 34px;
  letter-spacing: -.2px;
  color: var(--marron);
}

.muted[b-ybjy81rxrk]{
  opacity: .85;
  margin: 0;
  color: rgba(40,27,19,.85);
}

/* Shell + blur overlay */
.pueblo-wrap[b-ybjy81rxrk]{ padding: 18px 0 64px; }

.pueblo-shell[b-ybjy81rxrk]{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(250,246,245,.85);
  border: 1px solid rgba(40,27,19,.12);
  box-shadow: var(--shadow);
}

.pueblo-content[b-ybjy81rxrk]{
  padding: 18px;
  transition: filter .25s ease, opacity .25s ease;
}

.pueblo-shell:not(.revealed) .pueblo-content[b-ybjy81rxrk]{
  filter: blur(8px);
  opacity: .55;
  pointer-events: none;
  user-select: none;
}

/* Overlay */
.overlay[b-ybjy81rxrk]{
  position:absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background:
    radial-gradient(900px 380px at 20% 18%, rgba(194,226,255,.55), transparent 60%),
    radial-gradient(700px 340px at 85% 30%, rgba(176,27,24,.22), transparent 60%),
    rgba(40,27,19,.55);
  backdrop-filter: blur(6px);
}

.overlay-card[b-ybjy81rxrk]{
  width: min(720px, 100%);
  background: rgba(40,27,19,.92);
  color: var(--blanco);
  border-radius: 22px;
  border: 1px solid rgba(194,226,255,.20);
  box-shadow: 0 18px 46px rgba(0,0,0,.25);
  padding: 18px;
}

.overlay-badge[b-ybjy81rxrk]{
  display:inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(247,163,67,.18);
  border: 1px solid rgba(247,163,67,.26);
  color: var(--amarillo);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.overlay-card h2[b-ybjy81rxrk]{
  margin: 0 0 8px;
  font-size: 22px;
}

.overlay-card p[b-ybjy81rxrk]{
  margin: 0 0 14px;
  opacity: .9;
  line-height: 1.4;
}

.countdown[b-ybjy81rxrk]{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  background: rgba(250,246,245,.06);
  border: 1px solid rgba(250,246,245,.12);
  border-radius: 18px;
  padding: 12px;
  margin: 10px 0 14px;
}

.cd-item[b-ybjy81rxrk]{
  min-width: 72px;
  text-align:center;
}

.cd-num[b-ybjy81rxrk]{
  font-size: 28px;
  font-weight: 1000;
  letter-spacing: .3px;
  color: var(--amarillo);
}

.cd-lbl[b-ybjy81rxrk]{
  font-size: 12px;
  opacity: .85;
}

.cd-sep[b-ybjy81rxrk]{
  font-size: 22px;
  opacity: .5;
}

.overlay-actions[b-ybjy81rxrk]{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.tiny[b-ybjy81rxrk]{
  margin-top: 10px;
  font-size: 12px;
  opacity: .75;
  text-align:center;
}

/* Content layout */
.grid-2[b-ybjy81rxrk]{
  display:grid;
  grid-template-columns: 1.2fr .95fr;
  gap: 16px;
  align-items:start;
}

.card[b-ybjy81rxrk]{
  background: rgba(250,246,245,.92);
  border: 1px solid rgba(40,27,19,.12);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  padding: 16px;
}

.card-head[b-ybjy81rxrk]{
  display:flex;
  align-items:baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.card-head h2[b-ybjy81rxrk]{
  margin: 0;
  font-size: 18px;
}

.chip[b-ybjy81rxrk]{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(194,226,255,.45);
  border: 1px solid rgba(40,27,19,.10);
  color: var(--marron);
  white-space: nowrap;
}

.sub[b-ybjy81rxrk]{
  margin: 14px 0 8px;
  font-size: 14px;
}

.para[b-ybjy81rxrk]{
  margin: 0;
  opacity: .9;
  line-height: 1.45;
}

.stack[b-ybjy81rxrk]{ display:grid; gap: 14px; }

.facts[b-ybjy81rxrk]{
  display:grid;
  gap: 10px;
  margin: 12px 0 6px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(194,226,255,.22);
  border: 1px solid rgba(40,27,19,.08);
}
.fact[b-ybjy81rxrk]{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.fact-k[b-ybjy81rxrk]{
  font-size: 12px;
  opacity: .85;
  font-weight: 800;
}
.fact-v[b-ybjy81rxrk]{
  font-size: 12px;
  opacity: .9;
}

/* Map */
.map-frame[b-ybjy81rxrk]{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(40,27,19,.10);
  background: rgba(194,226,255,.20);
}
.map-frame iframe[b-ybjy81rxrk]{
  width: 100%;
  height: 260px;
  border: 0;
}

.hint[b-ybjy81rxrk]{
  margin: 10px 0 0;
  font-size: 12px;
  opacity: .8;
}

/* Lists */
.list[b-ybjy81rxrk]{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 8px;
  opacity: .92;
}

.divider[b-ybjy81rxrk]{
  height: 1px;
  background: rgba(40,27,19,.12);
  margin: 12px 0;
}

.cta-row[b-ybjy81rxrk]{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Buttons (local) */
.btn[b-ybjy81rxrk]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(40,27,19,.16);
  background: rgba(250,246,245,.95);
  color: var(--marron);
}

.btn.primary[b-ybjy81rxrk]{
  background: var(--amarillo);
  border-color: rgba(40,27,19,.10);
}

.btn.primary:hover[b-ybjy81rxrk]{ filter: brightness(.98); }

.btn.ghost[b-ybjy81rxrk]{
  background: transparent;
}

.btn.ghost:hover[b-ybjy81rxrk]{
  background: rgba(194,226,255,.35);
}

/* Photos */
.photos[b-ybjy81rxrk]{ padding: 18px 2px 6px; }

.section-head[b-ybjy81rxrk]{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 12px;
}

.section-head h2[b-ybjy81rxrk]{
  margin: 0;
  font-size: 18px;
}

.photo-grid[b-ybjy81rxrk]{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ph[b-ybjy81rxrk]{
  margin: 0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(40,27,19,.12);
  background: rgba(250,246,245,.92);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
}

.ph img[b-ybjy81rxrk]{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display:block;
}

.ph figcaption[b-ybjy81rxrk]{
  font-size: 12px;
  opacity: .85;
  padding: 10px 12px;
}

/* Schedule */
.schedule[b-ybjy81rxrk]{ padding: 16px 2px 6px; }

.schedule-grid[b-ybjy81rxrk]{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.day[b-ybjy81rxrk]{
  background: rgba(250,246,245,.92);
  border: 1px solid rgba(40,27,19,.12);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  overflow:hidden;
}

.day-head[b-ybjy81rxrk]{
  padding: 14px;
  background:
    radial-gradient(520px 170px at 20% 20%, rgba(194,226,255,.45), transparent 60%),
    radial-gradient(520px 170px at 85% 30%, rgba(176,27,24,.14), transparent 60%),
    rgba(250,246,245,.95);
  border-bottom: 1px solid rgba(40,27,19,.10);
  display:flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.day-title[b-ybjy81rxrk]{
  font-weight: 1000;
}

.slots[b-ybjy81rxrk]{
  margin: 0;
  padding: 12px 14px 14px;
  list-style: none;
  display:grid;
  gap: 10px;
}

.slots li[b-ybjy81rxrk]{
  display:flex;
  gap: 10px;
  align-items: baseline;
}

.time[b-ybjy81rxrk]{
  font-weight: 1000;
  color: var(--rojo);
  min-width: 52px;
}

.text[b-ybjy81rxrk]{
  opacity: .9;
}

/* Bottom note */
.bottom-note[b-ybjy81rxrk]{ padding: 18px 2px 18px; }

.note[b-ybjy81rxrk]{
  background: rgba(40,27,19,.92);
  color: var(--blanco);
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(194,226,255,.18);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.note h3[b-ybjy81rxrk]{ margin: 0 0 6px; font-size: 16px; }
.note-actions[b-ybjy81rxrk]{ display:flex; gap: 10px; flex-wrap: wrap; }
.note .muted[b-ybjy81rxrk]{ color: rgba(250,246,245,.88); }

/* Responsive */
@media (max-width: 980px){
  .grid-2[b-ybjy81rxrk]{ grid-template-columns: 1fr; }
  .photo-grid[b-ybjy81rxrk]{ grid-template-columns: 1fr; }
  .schedule-grid[b-ybjy81rxrk]{ grid-template-columns: 1fr; }
  .cd-item[b-ybjy81rxrk]{ min-width: 60px; }
}
