/* ══════════════════════════════════════
   Vida Escolar (uniformes, horarios,
   almuerzos JUNAEB, encuestas / reseñas)
══════════════════════════════════════ */

.ve-section {
    max-width: 1200px; margin: 0 auto; padding: 72px 80px;
}
.ve-section h2 { font-size: 1.85rem; color: #07193d; margin: 8px 0 18px; }
.ve-section > p { color: #4a5568; line-height: 1.75; max-width: 820px; }

.ve-empty {
    color: #5a6a7e; padding: 2rem 1rem;
    font-size: .95rem; font-style: italic;
}

/* ── Uniformes ─────────────────────── */
.ve-uniform-group { margin-top: 56px; }
.ve-uniform-group:first-of-type { margin-top: 40px; }
.ve-group-header {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 14px; margin-bottom: 28px;
    border-bottom: 2px solid #eef2f8;
}
.ve-group-header i { color: #dca84d; width: 26px; height: 26px; flex-shrink: 0; }
.ve-group-header h3 { font-size: 1.35rem; color: #07193d; }

.ve-uniform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
}
.ve-uniform-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #eef2f8;
    box-shadow: 0 2px 14px rgba(7,25,61,.07);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.ve-uniform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7,25,61,.12);
}
.ve-uniform-card__photo {
    width: 100%; aspect-ratio: 3 / 4;
    background: #f5f7fc; overflow: hidden;
}
.ve-uniform-card__photo img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .35s;
}
.ve-uniform-card:hover .ve-uniform-card__photo img { transform: scale(1.04); }
.ve-uniform-card__body { padding: 18px 20px 22px; }
.ve-uniform-card__body h4 { font-size: 1.05rem; color: #07193d; margin-bottom: 8px; }
.ve-uniform-card__body p { font-size: .875rem; color: #5a6a7e; line-height: 1.6; margin: 0; }
.ve-level-pill {
    display: inline-block;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .02em;
    padding: 4px 10px; border-radius: 20px;
    background: #e8f4fd; color: #1a6fa8;
    margin-bottom: 10px;
}

/* ── Horarios ──────────────────────── */
.ve-horario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
    margin-top: 40px;
}
.ve-horario-block {
    background: white;
    border-radius: 18px;
    border: 1px solid #eef2f8;
    box-shadow: 0 2px 14px rgba(7,25,61,.07);
    overflow: hidden;
}
.ve-horario-block__header {
    background: #07193d;
    color: white;
    padding: 16px 22px;
    display: flex; align-items: center; gap: 12px;
}
.ve-horario-block__header i { width: 20px; height: 20px; color: #ffd76d; flex-shrink: 0; }
.ve-horario-block__header h3 { font-size: 1.05rem; font-weight: 700; }

.ve-horario-row {
    padding: 16px 22px;
    border-bottom: 1px solid #f0f4fb;
}
.ve-horario-row:last-child { border-bottom: none; }
.ve-horario-row__top {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
}
.ve-horario-row__level { font-size: 1rem; font-weight: 700; color: #07193d; }
.ve-horario-row__time {
    font-size: .95rem; font-weight: 700; color: #0c2b66;
    background: #eef2f8; padding: 4px 12px; border-radius: 20px;
    white-space: nowrap;
}
.ve-horario-row__detail {
    display: flex; flex-wrap: wrap; gap: 8px 20px;
    margin-top: 10px;
}
.ve-horario-row__detail span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .84rem; color: #5a6a7e;
}
.ve-horario-row__detail i { width: 14px; height: 14px; color: #dca84d; flex-shrink: 0; }
.ve-horario-row__notes {
    margin-top: 10px; font-size: .84rem; color: #5a6a7e;
    line-height: 1.6; font-style: italic;
}

/* ── JUNAEB ────────────────────────── */
.ve-junaeb-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 44px;
}
.ve-info-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 14px rgba(7,25,61,.06);
    border-top: 4px solid transparent;
    transition: border-color .25s, transform .25s;
}
.ve-info-card:hover { border-top-color: #dca84d; transform: translateY(-4px); }
.ve-info-card__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #dca84d22, #ffd76d22);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #dca84d; margin-bottom: 16px;
}
.ve-info-card h3 { font-size: 1rem; color: #07193d; margin-bottom: 8px; }
.ve-info-card p { font-size: .875rem; color: #5a6a7e; line-height: 1.65; }

.ve-band { background: #07193d; padding: 64px 80px; }
.ve-band__inner { max-width: 1200px; margin: 0 auto; }
.ve-band h2 { font-size: 1.75rem; color: white; margin: 8px 0 14px; }
.ve-band > .ve-band__inner > p { color: rgba(255,255,255,.78); line-height: 1.75; max-width: 780px; }

.ve-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px; margin-top: 40px;
}
.ve-step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 24px 22px;
}
.ve-step__num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: #0a1f45; font-weight: 700; font-size: .95rem;
    margin-bottom: 14px;
}
.ve-step h4 { font-size: .98rem; color: white; margin-bottom: 8px; }
.ve-step p { font-size: .85rem; color: rgba(255,255,255,.72); line-height: 1.6; }

.ve-lunch-times {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-top: 32px;
}
.ve-lunch-chip {
    display: flex; align-items: center; gap: 10px;
    background: white; border: 1px solid #eef2f8;
    border-radius: 12px; padding: 12px 18px;
    box-shadow: 0 2px 10px rgba(7,25,61,.05);
}
.ve-lunch-chip i { width: 16px; height: 16px; color: #dca84d; flex-shrink: 0; }
.ve-lunch-chip strong { font-size: .9rem; color: #07193d; }
.ve-lunch-chip span { font-size: .85rem; color: #5a6a7e; }

.ve-cta {
    display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
    max-width: 900px; margin: 0 auto;
    background: white; border-radius: 16px; padding: 32px 36px;
    box-shadow: 0 4px 24px rgba(7,25,61,.08);
    border-left: 5px solid #dca84d;
}
.ve-cta > i { color: #dca84d; flex-shrink: 0; width: 40px; height: 40px; }
.ve-cta h3 { font-size: 1.1rem; color: #07193d; margin-bottom: 4px; }
.ve-cta p { font-size: .875rem; color: #5a6a7e; }
.ve-cta .btn-primary { margin-left: auto; }

/* ── Encuestas / Reseñas ───────────── */
.ve-resena-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-top: 44px;
}
.ve-resena-card {
    background: white;
    border-radius: 18px;
    border: 1px solid #eef2f8;
    box-shadow: 0 2px 14px rgba(7,25,61,.07);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.ve-resena-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7,25,61,.12);
}
.ve-resena-card__media { background: #f5f7fc; }
.ve-resena-card__media img {
    width: 100%; max-height: 260px;
    object-fit: cover; display: block;
}
.ve-resena-card__body { padding: 22px 22px 18px; flex: 1; }
.ve-resena-card__meta {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 12px;
}
.ve-source-pill {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .02em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px;
    background: #edf7ed; color: #2e7d32;
}
.ve-resena-card__date { font-size: .8rem; color: #8b98a9; }
.ve-resena-card h3 { font-size: 1.05rem; color: #07193d; margin-bottom: 10px; line-height: 1.4; }
.ve-resena-card p { font-size: .88rem; color: #5a6a7e; line-height: 1.65; margin: 0; }

.ve-score {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #dca84d, #ffd76d);
    color: #0a1f45; font-weight: 700; font-size: .95rem;
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 12px;
}
.ve-score i { width: 15px; height: 15px; }

.ve-resena-card__actions {
    border-top: 1px solid #f0f4fb;
    padding: 14px 22px;
    display: flex; gap: 18px; flex-wrap: wrap;
}
.ve-resena-card__actions a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .85rem; font-weight: 600; color: #0c2b66;
    text-decoration: none;
}
.ve-resena-card__actions a:hover { color: #dca84d; text-decoration: underline; }
.ve-resena-card__actions i { width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 900px) {
    .ve-section, .ve-band { padding-left: 24px; padding-right: 24px; }
    .ve-cta { flex-direction: column; text-align: center; }
    .ve-cta .btn-primary { margin-left: 0; }
}
