/* Estilos personalizados para tema escolar */
body {
    background-color: #e3f2fd; /* Azul claro */
    font-family: Arial, sans-serif;
}

.navbar-brand {
    font-weight: bold;
}

/* Logo pequeño junto a 'Iluminar' en la navbar */
.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 6px;
}

.aula-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.list-group-item a {
    text-decoration: none;
    color: #007bff;
}

.table {
    margin-top: 20px;
}

/* Nuevos estilos para la página principal solicitada */
.display-4 {
    text-transform: none;
    letter-spacing: 1px;
    font-size: 3.63rem; /* +10% sobre 3.3rem */
    font-weight: 800;
    /* degradado de azules a celestes */
    background: linear-gradient(90deg, #0d6efd 0%, #3db5ff 50%, #9be7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.25rem;
    text-shadow: 0 6px 18px rgba(13,110,253,0.08);
}

/* Asegurar la primera letra en mayúscula */
.display-4::first-letter {
    text-transform: uppercase;
}

/* Asegurar la primera letra en mayúscula */
.display-4::first-letter {
    text-transform: uppercase;
}
.placeholder-img {
    width: 384px; /* +20% de 320px */
    height: 216px; /* +20% de 180px */
    background: linear-gradient(135deg,#f0f4ff,#d9eaff);
    border: 2px solid #b6d1ff;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}
.btn-aula {
    min-width: 160px;
    width: 180px;
    height: 180px;
    padding: 0.8rem 1.2rem;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Pequeños ajustes responsivos */
@media (max-width: 576px) {
    .placeholder-img {
        width: 90%;
        height: 168px; /* +20% de 140px */
    }
}

/* Estilos para página de enlaces: logo al lado de cada caja */
.logo-placeholder {
    width: 72px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg,#fff,#eef6ff);
    border: 2px solid #d0e6ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b6cb0;
    font-weight: 700;
}
.logo-placeholder .small-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Aumentar cajas y logos un 50% */
.logo-placeholder.large {
    width: 108px; /* 72 * 1.5 */
    height: 84px; /* 56 * 1.5 */
    min-width: 84px;
}

/* Texto dentro de cada item - aumentar 50% */
.link-text {
    word-break: break-word;
    font-size: 1.5rem; /* aumentar 50% desde 1rem */
}

/* Aumentar padding de las cajas (list-group-item) para que la caja crezca visualmente */
.list-group .list-group-item {
    padding: 1.25rem 1rem;
}
.link-text {
    word-break: break-word;
}
/* Estilo para la frase motivacional en la página principal */
.quote-italic {
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    color: #0b4da0;
}
@media (max-width: 576px) {
    .logo-placeholder {
        width: 56px;
        height: 44px;
    }
    .display-4 {
        font-size: 2rem;
    }
    /* boton enlaces responsive */
    #btnEnlaces {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Estilos para realzar el botón 'enlaces de mi interes' */
#btnEnlaces {
    font-size: 1.05rem;
    padding: 0.65rem 1.6rem;
    border-radius: 0.6rem;
    background: linear-gradient(90deg,#00b4d8 0%,#0077b6 100%);
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 8px 22px rgba(0,118,255,0.16);
    transition: transform .15s ease, box-shadow .15s ease, opacity .12s;
}
#btnEnlaces:hover, #btnEnlaces:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,118,255,0.22);
    text-decoration: none;
    opacity: 0.98;
}