/* styles.css */

  :root{
  /* NUEVA PALETA */
  --unison-blue:#24398A;
  --unison-gold:#EBA93B;

  /* neutros (no cambiar) */
  --bg:#F7F8FA;
  --card:#FFFFFF;
  --text:#111827;
  --muted:#6B7280;
  --border:#E5E7EB;

  /* motion */
  --ease:cubic-bezier(.2,.8,.2,1);
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --radius:14px;
}

    /* neutrals */
    --bg:#F7F8FA;
    --card:#FFFFFF;
    --text:#111827;
    --muted:#6B7280;
    --border:#E5E7EB;

    /* layout / motion */
    --ease:cubic-bezier(.2,.8,.2,1);
    --shadow: 0 10px 30px rgba(17,24,39,.08);
    --radius:14px;
  }

  *{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial;
    margin:0;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
  }
  a{ color:inherit; }

  /* HEADER */
  header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(11,61,145,.96);
    backdrop-filter: blur(10px);
    border-bottom:1px solid rgba(255,255,255,.14);
  }
  .container{
    max-width:1100px;
    margin:0 auto;
    padding:18px 20px;
  }
  .topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:240px;
  }
  .brand img{
    height:34px;
    width:auto;
    display:block;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
  }
  .brand .title{
    display:flex;
    flex-direction:column;
    line-height:1.1;
  }
  .brand .title strong{
    color:white;
    font-size:14px;
    letter-spacing:.2px;
  }
  .brand .title span{
    color:rgba(255,255,255,.75);
    font-size:12px;
    font-weight:800;
  }

  nav{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    justify-content:center;
  }
  nav a{
    text-decoration:none;
    color:rgba(255,255,255,.92);
    font-weight:900;
    font-size:12.5px;
    padding:8px 10px;
    border-radius:999px;
    transition: background .18s var(--ease), transform .18s var(--ease), color .18s var(--ease);
    white-space:nowrap;
  }
  nav a:hover{
    background:rgba(255,255,255,.10);
    transform: translateY(-1px);
    color:white;
  }


  .actions{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .lang-toggle{
    display:flex;
    gap:8px;
    align-items:center;
  }
  .lang-btn{
    border:1px solid rgba(255,255,255,0.28);
    background:transparent;
    color:white;
    padding:7px 12px;
    border-radius:999px;
    cursor:pointer;
    font-weight:900;
    font-size:12px;
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  }
  .lang-btn:hover{ transform: translateY(-1px); }
  .lang-btn[aria-pressed="true"]{
    background:var(--unison-gold);
    color:#111;
    border-color:var(--unison-gold);
  }

  .cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--unison-gold);
    color:#111;
    padding:10px 14px;
    border-radius:999px;
    text-decoration:none;
    font-weight:900;
    font-size:13px;
    transition: transform .18s var(--ease), filter .18s var(--ease);
    white-space:nowrap;
  }
  .cta:hover{ transform: translateY(-1px); filter: brightness(.98); }

  /* MOBILE HAMBURGER */
  .hamburger{
    display:none;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(255,255,255,.06);
    color:white;
    padding:10px 12px;
    border-radius:12px;
    cursor:pointer;
    font-weight:900;
    font-size:14px;
    line-height:1;
    transition: transform .18s var(--ease), background .18s var(--ease);
  }
  .hamburger:hover{ transform: translateY(-1px); background:rgba(255,255,255,.10); }

  .mobile-menu{
    display:none;
    margin-top:12px;
    border-top:1px solid rgba(255,255,255,.14);
    padding-top:12px;
  }
  .mobile-menu.open{ display:block; }
  .mobile-panel{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:16px;
    padding:12px;
    animation: menuIn .22s var(--ease) both;
  }
  @keyframes menuIn{
    from{ opacity:0; transform: translateY(-6px); }
    to{ opacity:1; transform: translateY(0); }
  }
  .mobile-panel a{
    display:block;
    padding:10px 10px;
    border-radius:12px;
    font-weight:900;
    font-size:14px;
    color:white;
    text-decoration:none;
  }
  .mobile-panel a:hover{ background:rgba(255,255,255,.10); }

  /* HERO */
  .hero{
    position:relative;
    min-height:78vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
      linear-gradient(rgba(11,61,145,.74), rgba(11,61,145,.64)),
      url("building13a.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    z-index:0;
    animation: heroZoom 20s ease-in-out infinite alternate;
    transform-origin:center;
  }
  @keyframes heroZoom{ from{ transform:scale(1);} to{ transform:scale(1.05);} }
  .hero::after{
    content:"";
    position:absolute;
    inset:0;
    backdrop-filter: blur(1px);
    z-index:0;
  }
  .hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  overflow:hidden;

  /* fallback if GIF doesn't load */
  background:
    background:
linear-gradient(rgba(36,57,138,.82), rgba(36,57,138,.68)),
url("hero-poster.jpg") center/cover no-repeat;
}

/* GIF layer (desktop) */
.hero-gif-layer{
  position:absolute;
  inset:0;
  background: url("hero-banner.gif") center/cover no-repeat;
  z-index:0;
  filter: saturate(1.05) contrast(1.05);
}

/* UNISON overlay for readability */
.hero-overlay{
  position:absolute;
  inset:0;
background: linear-gradient(rgba(36,57,138,.82), rgba(36,57,138,.68));
  z-index:1;
}

/* content above */
.hero-inner{
  position:relative;
  z-index:2;
  max-width:980px;
  padding:40px 20px;
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .hero-gif-layer{ display:none; }
}

/* Mobile performance: show static poster instead */
@media (max-width: 768px){
  .hero-gif-layer{ display:none; }
  .hero{ min-height:62vh; }
}
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:900;
    font-size:14px;
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  }
  .btn.primary{ background: var(--unison-gold); color:#111; }
  .btn.primary:hover{ transform: translateY(-1px); }
  .btn.secondary{
    border:1px solid rgba(255,255,255,.25);
    color:white;
    background:rgba(255,255,255,.06);
  }
  .btn.secondary:hover{ transform: translateY(-1px); background:rgba(255,255,255,.10); }

  /* DECOR PHOTO */
.decor-photo{
  max-width:1100px;
  margin:40px auto 10px auto;   /* espacio arriba y abajo */
  padding:0 20px;
  display:flex;
  justify-content:center;
}

.decor-photo img{
  width:50%;
  height:auto;
  display:block;
  border-radius:18px;
  border:1px solid rgba(17,24,39,.08);
  box-shadow: 0 18px 50px rgba(17,24,39,.12);
  background:#fff;
}

/* Mobile: más grande para que no se vea muy pequeña */
@media (max-width:768px){
  .decor-photo img{
    width:80%;
  }
}

/* Mobile: más grande para que no se vea muy pequeña */
@media (max-width:768px){
  .decor-photo img{
    width:80%;
  }
}
  @media (hover:hover){
    .decor-photo img{ transition: transform .25s var(--ease); }
    .decor-photo img:hover{ transform: translateY(-2px); }
  }

  /* CONTENT */
  .content-wrap{
    max-width:1100px;
    margin:0 auto;
    padding:20px;
  }
  section{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:34px;
    margin-top:18px;
    box-shadow: var(--shadow);
  }
  section h2{
    margin:0 0 10px;
    color:var(--unison-blue);
    letter-spacing:-.2px;
  }
  section p{ color:var(--muted); font-weight:650; }

  .grid-2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:18px;
    margin-top:14px;
  }
  .card{
    border:1px solid var(--border);
    border-radius:14px;
    padding:16px;
    background:#fff;
  }
  .card h3{
    margin:0 0 8px;
    font-size:14px;
    color:var(--unison-blue);
    letter-spacing:-.1px;
  }
  .card p, .card li{ color:var(--muted); font-weight:650; }

  ul{
    margin:10px 0 0 18px;
    color:var(--muted);
    font-weight:650;
  }

  /* Language transitions */
  [data-lang]{ display:none; }
  [data-lang].active{ display:block; }
  [data-lang].enter{ animation: fadeSlideIn .35s var(--ease) both; }
  @keyframes fadeSlideIn{
    from{ opacity:0; transform: translateY(10px); }
    to{ opacity:1; transform: translateY(0); }
  }

  /* Facilities gallery */
  .gallery{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap:18px;
    margin-top:18px;
  }
  .gallery-item{
    background:white;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(17,24,39,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  }
  .gallery-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  .gallery-item img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
  }
  .gallery-caption{
    padding:12px;
    font-weight:900;
    color:var(--unison-blue);
    background:white;
    text-align:center;
    font-size:13px;
  }

  /* Footer */
  footer{
    margin-top:26px;
    background:var(--unison-blue);
    color:rgba(255,255,255,.85);
    text-align:center;
    padding:22px 20px;
    font-weight:850;
    font-size:13px;
  }

  /* Responsive */
  @media (max-width: 960px){
    .grid-2{ grid-template-columns: 1fr; }
  }
  @media (max-width: 860px){
    nav{ display:none; }
    .hamburger{ display:inline-flex; align-items:center; gap:8px; }
    .topbar{ flex-direction:column; align-items:flex-start; }
    .actions{ width:100%; justify-content:space-between; }
    .hero{ min-height:62vh; }
    .hero h1{ font-size:2.05rem; }
    .hero p{ font-size:1rem; }
    section{ padding:26px; }
    .decor-photo{ margin:-18px auto 0; }
    .hero{
  margin-bottom:30px;
}
  }
  .curriculum-block{
  margin-top:18px;
}

.curriculum-preview{
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.08);
  background:#fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.curriculum-preview:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.curriculum-preview img{
  width:100%;
  height:auto;
  display:block;
}
.mallacard{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}

.tabs{
  display:flex;
  gap:8px;
  padding:14px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, rgba(36,57,138,.04), rgba(255,255,255,0));
  overflow:auto;
  scrollbar-width: thin;
}

.tab{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--unison-blue);
  font-weight:950;
  font-size:13px;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  white-space:nowrap;
  transition: transform .16s var(--ease), background .16s var(--ease), border-color .16s var(--ease);
}

.tab:hover{
  transform: translateY(-1px);
  border-color: rgba(36,57,138,.25);
}

.tab.active{
  background: rgba(36,57,138,.08);
  border-color: rgba(36,57,138,.25);
}

.tab-panel{
  padding:18px 18px 10px 18px;
}

.course-list{
  margin:0;
  padding:0 0 4px 18px;
  color:var(--muted);
  font-weight:650;
}

.course-list li{
  margin:10px 0;
  line-height:1.4;
}

.course-code{
  font-weight:950;
  color:var(--unison-blue);
}

.course-name{
  font-weight:750;
  color:#0F172A;
}

.small-note{
  margin-top:12px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
/* ===== UNISON LOGO SIZE ===== */

.logo,
#logo {

  height: 72px;       /* antes probablemente 40–48px */
  width: auto;

  object-fit: contain;

  transition: transform .25s ease;

}

/* Hover elegante (opcional, estilo Ivy League) */
.logo:hover,
#logo:hover {
  transform: scale(1.04);
}

/* Mobile */
@media (max-width: 768px){

  .logo,
  #logo {

    height: 72px;

  }

}
/* QUICK FACTS */
.quickfacts{
  max-width:1120px;
  margin: 26px auto 20px auto;  /* sube un poco y se ve “premium” */
  padding: 0 20px;
}

.qf-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.qf-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.08);
}

.qf-number{
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.6px;
  color: var(--unison-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.qf-label{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.qf-cta{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
  background: linear-gradient(180deg, rgba(36,57,138,.06), rgba(255,255,255,0));
}

.qf-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:max-content;
  background: var(--unison-gold);
  color:#111;
  font-weight: 950;
  text-decoration:none;
  padding: 10px 14px;
  border-radius: 10px;
  transition: transform .16s var(--ease);
}

.qf-btn:hover{
  transform: translateY(-1px);
}

@media (max-width: 960px){
  .qf-grid{ grid-template-columns: 1fr 1fr; }
  .quickfacts{ margin: 18px auto 10px auto; }
}
/* CAREER OUTCOMES */
.outcomes-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.outcome-card{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:16px;
  background:#fff;
  box-shadow: var(--shadow-sm);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), border-color .16s var(--ease);
}

.outcome-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(36,57,138,.18);
}

.outcome-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background: rgba(36,57,138,.08);
  border: 1px solid rgba(36,57,138,.14);
  margin-bottom:10px;
}

#career-outcomes h3{
  margin:0 0 8px;
  color: var(--unison-blue);
  font-size:14px;
  font-weight:950;
}

#career-outcomes p{
  margin:0;
}

.outcomes-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width: 960px){
  .outcomes-grid{ grid-template-columns: 1fr; }
}
/* FAQ */
.faq-list{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow-sm);
}

.faq-q{
  width:100%;
  text-align:left;
  padding:16px 18px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-weight:950;
  color:var(--unison-blue);
  letter-spacing:-.1px;
  border-bottom:1px solid var(--border);
  transition: background .16s var(--ease);
}

.faq-q:hover{
  background: rgba(36,57,138,.04);
}

.faq-q::after{
  content:"+";
  float:right;
  font-weight:950;
  color: rgba(36,57,138,.75);
}

.faq-q.active::after{
  content:"–";
}

.faq-a{
  display:none;
  padding:0 18px 16px 18px;
  border-bottom:1px solid var(--border);
  background: linear-gradient(180deg, rgba(36,57,138,.02), rgba(255,255,255,0));
}

.faq-a p{
  margin:10px 0 0 0;
  color:var(--muted);
  font-weight:600;
}
/* CONTACT STRIP */
.contact-strip{
  max-width:1120px;
  margin:18px auto 0 auto;
  padding:0 20px;
  background: transparent;
  border:0;
  box-shadow:none;
}

.contact-inner{
  display:grid;
  grid-template-columns: 1fr 1.35fr;
  gap:16px;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.contact-left{
  padding:26px;
  background: linear-gradient(180deg, rgba(36,57,138,.08), rgba(255,255,255,0));
}

.contact-left h2{
  margin:0 0 10px;
  color: var(--unison-blue);
  font-weight:950;
  letter-spacing:-.3px;
  font-size:1.35rem;
}

.contact-left p{
  margin:0;
  color: var(--muted);
  font-weight:650;
}

.contact-right{
  padding:22px 22px 18px 22px;
}

.contact-item{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}

.contact-item:last-of-type{
  border-bottom:0;
}

.contact-label{
  color: var(--muted);
  font-weight:800;
  font-size:12px;
  text-transform: uppercase;
  letter-spacing:.5px;
}

.contact-value{
  color: var(--text);
  font-weight:650;
}

.contact-value a{
  color: var(--unison-blue);
  font-weight:900;
  text-decoration:none;
}

.contact-value a:hover{
  text-decoration:underline;
}

.contact-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width: 960px){
  .contact-inner{ grid-template-columns: 1fr; }
  .contact-item{ grid-template-columns: 1fr; gap:6px; }
}
/* TESTIMONIALS */

.testimonials-grid{

  margin-top: 18px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

}

.testimonial-card{

  background: #fff;

  border: 1px solid var(--border);

  border-radius: var(--radius);

  padding: 18px;

  box-shadow: var(--shadow-sm);

  transition: transform .16s var(--ease), box-shadow .16s var(--ease);

}

.testimonial-card:hover{

  transform: translateY(-4px);

  box-shadow: var(--shadow-md);

}

.testimonial-card p{

  margin: 0 0 12px;

  font-style: italic;

}

.testimonial-author{

  font-weight: 900;

  color: var(--unison-blue);

  font-size: 13px;

}

/* Mobile */

@media (max-width: 960px){

  .testimonials-grid{

    grid-template-columns: 1fr;

  }

}
/* FUTURE SECTION IMAGE INTEGRATION */

.future-grid{

  display:grid;

  grid-template-columns: 1.3fr 1fr;

  gap:40px;

  align-items:center;

  margin-top:10px;

}

.future-image{

  text-align:center;

}

.future-image img{

  max-width:300px;

  width:100%;

  height:auto;

}

/* Mobile */

@media (max-width: 768px){

  .future-grid{

    grid-template-columns: 1fr;

    text-align:center;

  }

  .future-image img{

    max-width:240px;

  }

}
.perfil-grid{

  display:grid;

  grid-template-columns: 320px 1fr;

  gap:40px;

  align-items:center;

  margin-top:20px;

}

.perfil-image img{

  width:100%;

  max-width:320px;

  height:auto;

}

.perfil-text ul{

  margin:0;

}

/* Mobile */

@media (max-width:768px){

  .perfil-grid{

    grid-template-columns:1fr;

    text-align:center;

  }

  .perfil-text{

    text-align:left;

  }

}
/* FINAL FOOTER BANNER */

.footer-banner{

  margin-top:60px;

  width:100%;

  min-height:240px;

  background-image:url("alllei.webp");

  background-position:center;

  background-size:cover;

  background-repeat:no-repeat;

  display:flex;

  align-items:center;

  justify-content:center;

  position:relative;

}

.footer-banner-overlay{

  width:100%;

  text-align:center;

  padding:50px 20px;

  background:linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
  );

  color:white;

}

.footer-banner-overlay h2{

  font-size:28px;

  margin-bottom:10px;

  font-weight:900;

}

.footer-banner-overlay p{

  margin-bottom:20px;

  font-weight:600;

}

.footer-banner-btn{

  display:inline-block;

  background:#EBA93B;

  color:#111;

  font-weight:900;

  padding:12px 24px;

  border-radius:8px;

  text-decoration:none;

  transition:.2s;

}

.footer-banner-btn:hover{

  transform:translateY(-2px);

}

/* Mobile */

@media (max-width:768px){

  .footer-banner{

    min-height:180px;

  }

  .footer-banner-overlay h2{

    font-size:20px;

  }

}
/* ===== DOCENTES PAGE ===== */

.simple-header{
  padding:40px 0 20px;
  background:var(--unison-blue);
  color:white;
  text-align:center;
}

.simple-header h1{
  margin:10px 0 0;
  font-size:28px;
}

.back-link{
  color:var(--unison-gold);
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.faculty-page{
  padding:60px 0;
}

.faculty-intro{
  text-align:center;
  margin-bottom:40px;
  font-weight:600;
  color:var(--muted);
}
.faculty-grid{

  display:grid;

  grid-template-columns: repeat(3, 1fr);

  gap:24px;

  margin-top:30px;

}
/* Tablet */
@media (max-width: 1024px){

  .faculty-grid{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* Mobile */
@media (max-width: 640px){

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

}
/* ===== Faculty Photo Professional Styling ===== */

.faculty-header{

  display:flex;

  align-items:center;

  gap:14px;

  margin-bottom:10px;

}

/* Photo */



/* Hover effect: subtle activation */

.faculty-card:hover .faculty-photo{

  filter: grayscale(0%) contrast(1);

  transform: scale(1.05);

}

/* Perfect name alignment */

.faculty-header h3{

  margin:0;

  font-size:15px;

  line-height:1.25;

}

.faculty-role{

  margin:3px 0 0;

  font-size:13px;

}
.faculty-header{
  border-left:3px solid var(--unison-gold);
  padding-left:12px;
}
/* Faculty card refined hover */
.faculty-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform .22s var(--ease),
    box-shadow .22s var(--ease),
    border-color .22s var(--ease),
    background .22s var(--ease);
}

.faculty-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15,23,42,.10);
  border-color: rgba(36,57,138,.18);
  background: linear-gradient(180deg, rgba(36,57,138,.03), rgba(255,255,255,1));
}

/* Stronger academic header */
.faculty-header{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:10px;
  border-left:3px solid var(--unison-gold);
  padding-left:12px;
}

/* Photo */
.faculty-photo{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  filter: grayscale(100%) contrast(1.05);
  transition: filter .28s ease, transform .28s ease;
}

.faculty-card:hover .faculty-photo{
  filter: grayscale(0%) contrast(1);
  transform: scale(1.06);
}

/* Name + role alignment */
.faculty-header h3{
  margin:0;
  font-size:15px;
  line-height:1.25;
  color:var(--unison-blue);
  font-weight:950;
}

.faculty-role{
  margin:3px 0 0;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

/* Email refinement */
.faculty-email{
  margin:10px 0 0;
}

.faculty-email a{
  color:var(--unison-blue);
  font-weight:900;
  text-decoration:none;
}

.faculty-email a:hover{
  text-decoration:underline;
}
/* CERTIFICATION PAGE */
#certification-page p{
  margin-bottom:16px;
}

.cert-box{
  margin-top:24px;
  padding:22px;
  border:1px solid var(--border);
  border-radius:14px;
  background: linear-gradient(180deg, rgba(36,57,138,.05), rgba(255,255,255,1));
  box-shadow: var(--shadow-sm);
}

.cert-box h3{
  margin:0 0 12px;
  color:var(--unison-blue);
  font-size:18px;
  font-weight:950;
}

.cert-list{
  margin:0;
  padding-left:20px;
}

.cert-list li{
  margin-bottom:10px;
  font-weight:650;
  color:var(--muted);
}
/* Certification Photo */

.cert-photo{
  margin-top:50px;
  text-align:center;
}

.cert-photo img{
  max-width:600px;
  width:100%;
  border-radius:12px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.cert-logo img{
  max-width:160px;   /* más pequeño */
  height:auto;
  opacity:.9;        /* más elegante */
}
