:root {
    --primario: #4f46e5;
    --primario-oscuro: #3730a3;
    --secundario: #7c3aed;
    --fondo: #f4f7fb;
    --blanco: #ffffff;
    --texto: #172033;
    --texto-suave: #667085;
    --borde: #dfe5ef;
    --error: #c62828;
    --error-fondo: #fdecec;
    --sombra: 0 24px 70px rgba(35, 42, 70, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: var(--fondo);
}

.login-body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            rgba(79, 70, 229, 0.22),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #eef2ff,
            #f8fafc 55%,
            #ede9fe
        );
}

.login-contenedor {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.login-panel {
    width: min(1050px, 100%);
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    overflow: hidden;
    border-radius: 28px;
    background: var(--blanco);
    box-shadow: var(--sombra);
}

.login-info {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
    color: var(--blanco);
    background:
        linear-gradient(
            145deg,
            rgba(16, 24, 40, 0.72),
            rgba(49, 46, 129, 0.78)
        ),
        linear-gradient(
            135deg,
            var(--primario),
            var(--secundario)
        );
}

.login-info::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.login-info::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.login-info > * {
    position: relative;
    z-index: 1;
}

.etiqueta {
    display: inline-block;
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 999px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.login-info h1 {
    max-width: 520px;
    margin: 26px 0 18px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
}

.login-info > p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.login-beneficios {
    display: grid;
    gap: 15px;
    margin-top: 45px;
}

.login-beneficios div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.login-beneficios strong {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
}

.login-beneficios span {
    color: rgba(255, 255, 255, 0.90);
}

.login-formulario {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 60px;
}

.login-logo {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    border-radius: 18px;
    color: var(--blanco);
    background:
        linear-gradient(
            135deg,
            var(--primario),
            var(--secundario)
        );
    font-size: 28px;
    font-weight: bold;
}

.login-formulario h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.login-formulario > p {
    margin: 0 0 32px;
    color: var(--texto-suave);
}

.campo {
    margin-bottom: 20px;
}

.campo label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

.campo input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--borde);
    border-radius: 12px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.campo input:focus {
    border-color: var(--primario);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.boton-login {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    color: var(--blanco);
    background:
        linear-gradient(
            135deg,
            var(--primario),
            var(--secundario)
        );
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.boton-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.26);
}

.mensaje-error {
    margin-bottom: 20px;
    padding: 13px 15px;
    border: 1px solid #f2b8b5;
    border-radius: 10px;
    color: var(--error);
    background: var(--error-fondo);
}

.volver-inicio {
    display: block;
    margin-top: 24px;
    color: var(--texto-suave);
    text-align: center;
    text-decoration: none;
}

.volver-inicio:hover {
    color: var(--primario);
}

@media (max-width: 850px) {
    .login-panel {
        grid-template-columns: 1fr;
    }

    .login-info {
        padding: 50px 34px;
    }

    .login-formulario {
        padding: 50px 34px;
    }

    .login-info h1 {
        font-size: 42px;
    }
}

@media (max-width: 520px) {
    .login-contenedor {
        padding: 16px;
    }

    .login-panel {
        border-radius: 20px;
    }

    .login-info {
        display: none;
    }

    .login-formulario {
        padding: 42px 24px;
    }
}
.admin-body {
    min-height: 100vh;
    background: #f4f7fb;
}

.admin-header {
    background: #ffffff;
    border-bottom: 1px solid var(--borde);
    position: sticky;
    top: 0;
    z-index: 20;
}

.admin-header-contenido {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-marca {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--texto);
    text-decoration: none;
}

.admin-marca > span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primario),
        var(--secundario)
    );
    font-weight: bold;
    font-size: 20px;
}

.admin-marca div,
.admin-usuario div {
    display: flex;
    flex-direction: column;
}

.admin-marca small,
.admin-usuario small {
    color: var(--texto-suave);
}

.admin-usuario {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: right;
}

.boton-salir {
    padding: 10px 16px;
    border-radius: 10px;
    color: #b42318;
    background: #fff1f0;
    text-decoration: none;
    font-weight: bold;
}

.admin-contenedor {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    padding: 42px 0 70px;
}

.admin-bienvenida {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-bienvenida h1 {
    margin: 8px 0 8px;
    font-size: clamp(32px, 5vw, 50px);
    letter-spacing: -1.5px;
}

.admin-bienvenida p {
    margin: 0;
    color: var(--texto-suave);
    font-size: 17px;
}

.etiqueta-admin {
    color: var(--primario);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.boton-principal,
.boton-secundario,
.boton-editar,
.boton-eliminar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.boton-principal {
    padding: 13px 20px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--primario),
        var(--secundario)
    );
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.20);
}

.boton-secundario {
    padding: 11px 17px;
    border: 1px solid var(--borde);
    border-radius: 10px;
    color: var(--texto);
    background: #ffffff;
}

.estadisticas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.tarjeta-estadistica {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--borde);
    border-radius: 18px;
    background: #ffffff;
}

.estadistica-icono {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #eef2ff;
    font-size: 24px;
}

.tarjeta-estadistica div {
    display: flex;
    flex-direction: column;
}

.tarjeta-estadistica strong {
    font-size: 28px;
}

.tarjeta-estadistica small {
    color: var(--texto-suave);
}

.panel-contenido {
    padding: 28px;
    border: 1px solid var(--borde);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(28, 39, 70, 0.06);
}

.panel-encabezado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.panel-encabezado h2 {
    margin: 0 0 6px;
}

.panel-encabezado p {
    margin: 0;
    color: var(--texto-suave);
}

.estado-vacio {
    padding: 70px 20px;
    text-align: center;
}

.estado-vacio-icono {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #eef2ff;
    font-size: 34px;
}

.estado-vacio h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.estado-vacio p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: var(--texto-suave);
}

.tabla-responsive {
    overflow-x: auto;
}

.tabla-admin {
    width: 100%;
    border-collapse: collapse;
}

.tabla-admin th,
.tabla-admin td {
    padding: 16px;
    border-bottom: 1px solid var(--borde);
    text-align: left;
    vertical-align: middle;
}

.tabla-admin th {
    color: var(--texto-suave);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.imagen-miniatura {
    width: 110px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #e9edf5;
}

.tabla-titulo,
.tabla-descripcion {
    display: block;
}

.tabla-descripcion {
    max-width: 340px;
    margin-top: 5px;
    color: var(--texto-suave);
    font-size: 14px;
}

.orden-badge {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    background: #f1f3f7;
    font-weight: bold;
}

.estado {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
}

.estado-activo {
    color: #087443;
    background: #e8f8ef;
}

.estado-inactivo {
    color: #667085;
    background: #f2f4f7;
}

.acciones {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.boton-editar,
.boton-eliminar {
    padding: 9px 13px;
    border-radius: 9px;
    font-size: 14px;
}

.boton-editar {
    color: #3730a3;
    background: #eef2ff;
}

.boton-eliminar {
    color: #b42318;
    background: #fff1f0;
}

@media (max-width: 800px) {
    .admin-header-contenido,
    .admin-bienvenida,
    .panel-encabezado {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-usuario {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }

    .estadisticas {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .admin-usuario div {
        display: none;
    }

    .panel-contenido {
        padding: 20px 14px;
    }

    .admin-bienvenida .boton-principal,
    .panel-encabezado .boton-secundario {
        width: 100%;
    }
}
.pagina-encabezado {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.pagina-encabezado h1 {
    margin: 8px 0;
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -1.5px;
}

.pagina-encabezado p {
    margin: 0;
    color: var(--texto-suave);
    font-size: 17px;
}

.formulario-panel {
    padding: 32px;
    border: 1px solid var(--borde);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(28, 39, 70, 0.06);
}

.formulario-columnas {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 34px;
}

.formulario-datos {
    min-width: 0;
}

.grupo-formulario {
    margin-bottom: 22px;
}

.grupo-formulario label {
    display: block;
    margin-bottom: 8px;
    color: var(--texto);
    font-weight: bold;
}

.grupo-formulario input[type="text"],
.grupo-formulario input[type="number"],
.grupo-formulario textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--borde);
    border-radius: 12px;
    outline: none;
    color: var(--texto);
    background: #ffffff;
    font: inherit;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.grupo-formulario textarea {
    resize: vertical;
}

.grupo-formulario input:focus,
.grupo-formulario textarea:focus {
    border-color: var(--primario);
    box-shadow:
        0 0 0 4px
        rgba(79, 70, 229, 0.12);
}

.grupo-formulario small {
    display: block;
    margin-top: 7px;
    color: var(--texto-suave);
}

.formulario-fila {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 20px;
}

.interruptor-fila {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: fit-content;
    cursor: pointer;
    font-weight: normal !important;
}

.interruptor-fila input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.interruptor {
    position: relative;
    width: 48px;
    height: 27px;
    border-radius: 999px;
    background: #cfd5df;
    transition: background 0.2s;
}

.interruptor::after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
    transition: transform 0.2s;
}

.interruptor-fila input:checked + .interruptor {
    background:
        linear-gradient(
            135deg,
            var(--primario),
            var(--secundario)
        );
}

.interruptor-fila input:checked +
.interruptor::after {
    transform: translateX(21px);
}

.formulario-imagen-area {
    min-width: 0;
}

.zona-carga {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    overflow: hidden;
    border: 2px dashed #cdd5e3;
    border-radius: 20px;
    background: #f8faff;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.zona-carga:hover {
    border-color: var(--primario);
    background: #f3f4ff;
}

.zona-carga input {
    display: none;
}

.zona-carga-contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.zona-carga-icono {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: #eef2ff;
    font-size: 34px;
}

.zona-carga-contenido strong {
    margin-bottom: 5px;
    font-size: 19px;
}

.zona-carga-contenido span,
.zona-carga-contenido small {
    color: var(--texto-suave);
}

.zona-carga-contenido small {
    margin-top: 12px;
}

.vista-previa {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.oculto {
    display: none !important;
}

.boton-quitar-imagen {
    width: 100%;
    margin-top: 12px;
    padding: 11px 16px;
    border: 1px solid #f0b4af;
    border-radius: 10px;
    color: #b42318;
    background: #fff1f0;
    font-weight: bold;
    cursor: pointer;
}

.formulario-acciones {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--borde);
}

.alerta-formulario {
    margin-bottom: 25px;
    padding: 16px 18px;
    border-radius: 12px;
}

.alerta-formulario strong {
    display: block;
    margin-bottom: 8px;
}

.alerta-formulario ul {
    margin: 0;
    padding-left: 20px;
}

.alerta-error {
    color: #9f241b;
    border: 1px solid #f3b8b4;
    background: #fff1f0;
}

@media (max-width: 900px) {
    .formulario-columnas {
        grid-template-columns: 1fr;
    }

    .zona-carga {
        min-height: 320px;
    }

    .vista-previa {
        height: 320px;
    }
}

@media (max-width: 650px) {
    .pagina-encabezado {
        align-items: flex-start;
        flex-direction: column;
    }

    .pagina-encabezado .boton-secundario {
        width: 100%;
    }

    .formulario-panel {
        padding: 22px 16px;
    }

    .formulario-fila {
        grid-template-columns: 1fr;
    }

    .formulario-acciones {
        flex-direction: column-reverse;
    }

    .formulario-acciones a,
    .formulario-acciones button {
        width: 100%;
    }
}
.mensaje-exito-panel {
    margin-bottom: 24px;
    padding: 15px 18px;
    border: 1px solid #a8dfbd;
    border-radius: 12px;
    color: #087443;
    background: #eaf8ef;
    font-weight: bold;
}

.mensaje-error-panel {
    margin-bottom: 24px;
    padding: 15px 18px;
    border: 1px solid #f0b4af;
    border-radius: 12px;
    color: #b42318;
    background: #fff1f0;
    font-weight: bold;
}
.carrusel-body {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top left,
            rgba(79, 70, 229, 0.14),
            transparent 32%
        ),
        #f5f7fb;
}

.carrusel-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid var(--borde);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
}

.carrusel-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.carrusel-marca {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--texto);
    text-decoration: none;
}

.carrusel-marca > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primario),
        var(--secundario)
    );
    font-size: 21px;
    font-weight: bold;
}

.carrusel-marca div {
    display: flex;
    flex-direction: column;
}

.carrusel-marca small {
    color: var(--texto-suave);
}

.boton-panel {
    display: inline-flex;
    padding: 11px 17px;
    border-radius: 11px;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primario),
        var(--secundario)
    );
    text-decoration: none;
    font-weight: bold;
}

.carrusel-portada {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    padding: 50px 0 70px;
}

.carrusel-presentacion {
    max-width: 760px;
    margin-bottom: 30px;
}

.etiqueta-carrusel {
    color: var(--primario);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.6px;
}

.carrusel-presentacion h1 {
    margin: 10px 0 12px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -3px;
}

.carrusel-presentacion p {
    margin: 0;
    color: var(--texto-suave);
    font-size: 19px;
}

.carrusel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #101828;
    box-shadow:
        0 28px 80px
        rgba(30, 41, 70, 0.20);
}

.carrusel-pista {
    position: relative;
    min-height: clamp(
        430px,
        62vw,
        680px
    );
}

.carrusel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
    transform: scale(1.025);
}

.carrusel-slide.activo {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.carrusel-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrusel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 10, 20, 0.04) 25%,
            rgba(5, 10, 20, 0.88) 100%
        );
}

.carrusel-capa {
    position: absolute;
    z-index: 2;
    left: clamp(26px, 6vw, 72px);
    right: clamp(26px, 6vw, 72px);
    bottom: clamp(40px, 8vw, 88px);
    max-width: 760px;
    color: white;
}

.carrusel-capa > span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.carrusel-capa h2 {
    margin: 0 0 12px;
    font-size: clamp(34px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -2px;
}

.carrusel-capa p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 2vw, 20px);
}

.carrusel-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: white;
    background: rgba(7, 14, 28, 0.48);
    font-size: 34px;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
}

.carrusel-control:hover {
    background: rgba(7, 14, 28, 0.78);
}

.carrusel-anterior {
    left: 20px;
}

.carrusel-siguiente {
    right: 20px;
}

.carrusel-indicadores {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.carrusel-indicadores button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
    transition: width 0.25s;
}

.carrusel-indicadores button.activo {
    width: 34px;
    background: white;
}

.carrusel-vacio {
    padding: 90px 24px;
    border: 1px solid var(--borde);
    border-radius: 24px;
    background: white;
    text-align: center;
}

.carrusel-vacio > div {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: #eef2ff;
    font-size: 36px;
}

.carrusel-vacio h2 {
    margin: 0 0 9px;
}

.carrusel-vacio p {
    margin: 0 0 24px;
    color: var(--texto-suave);
}

.carrusel-footer {
    padding: 24px;
    border-top: 1px solid var(--borde);
    color: var(--texto-suave);
    text-align: center;
}

@media (max-width: 650px) {
    .carrusel-nav {
        min-height: 68px;
    }

    .carrusel-marca small {
        display: none;
    }

    .carrusel-portada {
        padding-top: 34px;
    }

    .carrusel-presentacion h1 {
        letter-spacing: -2px;
    }

    .carrusel-control {
        width: 44px;
        height: 44px;
    }

    .carrusel-anterior {
        left: 10px;
    }

    .carrusel-siguiente {
        right: 10px;
    }
}
.imagen-actual {
    margin-bottom: 18px;
}

.imagen-actual span {
    display: block;
    margin-bottom: 9px;
    color: var(--texto);
    font-weight: bold;
}

.imagen-actual img {
    width: 100%;
    height: 210px;
    border-radius: 16px;
    object-fit: cover;
    background: #edf1f7;
}

.zona-carga-editar {
    min-height: 250px;
}

.zona-carga-editar .vista-previa {
    height: 250px;
}