:root {
    --etc-primario: #2563eb;
    --etc-primario-oscuro: #1d4ed8;
    --etc-fondo: #f1f5f9;
    --etc-texto: #0f172a;
    --etc-accento: #f59e0b;
    --etc-verde: #16a34a;
}

body {
    background-color: var(--etc-fondo);
    color: var(--etc-texto);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.app-navbar {
    background-color: var(--etc-primario);
}

.app-navbar .navbar-brand,
.app-navbar .nav-link {
    color: #ffffff;
}

.app-navbar .nav-link:hover {
    color: var(--etc-accento);
}

.badge-logo {
    background-color: var(--etc-accento);
    color: var(--etc-primario-oscuro);
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    border-radius: 0.35rem;
    font-size: 0.8rem;
}

.app-footer {
    background-color: #0f172a;
    color: #cbd5e1;
}

.paso-indicador {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--etc-primario);
    color: #fff;
    font-weight: 700;
}

.tarjeta-colegio {
    transition: box-shadow 0.15s ease-in-out;
}

.tarjeta-colegio:hover {
    box-shadow: 0 0.5rem 1rem rgba(15, 23, 42, 0.12);
}

.puntaje-badge {
    font-size: 1.35rem;
    font-weight: 800;
}

.etiqueta-seleccionada {
    background-color: var(--etc-verde);
    color: #fff;
}

img.colegio-foto {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.375rem;
}

.etc-dot {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-right: 0.4rem;
    vertical-align: middle;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}
