.e-n-tab-title{
	border-radius: 10px !important;
}


.float-buttons{
  position: fixed;
  right: 20px;
  bottom: 20px;   /* siempre abajo */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;  /* que quede arriba de todo */
}

.float-buttons a{
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;   /* ejemplo style whatsapp */
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.btn-facebook{
	background: #0866ff !important;
}

.pensum-icon {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


#main-footer {
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(0, 71, 171) 0%, rgb(0, 113, 227) 100%);
}

#main-footer .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    margin: 0px auto;
    padding: 50px 20px 30px;
    gap: 40px;
}

#main-footer .footer-logo {
    max-width: 320px;
    height: auto;
    display: block;
}
#main-footer .footer-address {
    line-height: 1.5;
    margin: 0px 0px 15px;
}

#main-footer .footer-contact {
    font-size: 0.95rem;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

#main-footer .footer-contact a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

#main-footer .r3-footer__bottom {
    text-align: center;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== Footer Región 3 (scope: #main-footer) ===== */
#main-footer {
  background: linear-gradient(90deg, #0047ab 0%, #0071e3 100%);
  color: #fff;
}

#main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* logo */
#main-footer .footer-logo {
  max-width: 320px;
  height: auto;
  display: block;
}

/* texto dirección */
#main-footer .footer-address {
  margin: 0 0 15px;
  line-height: 1.5;
}

/* lista de contacto */
#main-footer .footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}
#main-footer .footer-contact li { margin: 0 0 6px; }
#main-footer .footer-contact a {
  color: #fff;
  text-decoration: underline;
}
#main-footer .footer-contact a:hover { text-decoration: none; opacity: .9; }

/* franja inferior */
#main-footer .r3-footer__bottom {
  text-align: center;
  background: rgba(0,0,0,.2);
  padding: 12px 10px;
  font-size: .9rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
#main-footer .r3-footer__bottom strong { color: #ffd580; }

/* responsive */
@media (max-width: 768px){
  #main-footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  #main-footer .footer-logo { margin: 0 auto 20px; }
}
/* ===== Región3 Header ===== */
:root{
  --r3-azul:#1b67d8;
  --r3-azul-dark:#0b4fb4;
  --r3-naranja:#ff7a00;
  --r3-text:#0b2952;
}
.r3-container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Header transparente encima del hero */
.r3-header{
  position:fixed; top:35px; left:0; right:0; z-index:100;
  background:transparent;
  transition:background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.r3-header__wrap{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  min-height:72px;
}
.r3-brand img{height:40px; width:auto; display:block}
.r3-brand__text{font-weight:900; font-size:22px; color:#fff; text-decoration:none}

/* Menú desktop */
.r3-nav{display:block}
.r3-menu{list-style:none; margin:0; padding:0; display:flex; gap:14px}
.r3-menu > li > a{
  display:block; text-decoration:none; font-weight:800;
  padding:10px 14px; border-radius:999px;
  color:#fff; background:rgba(255,255,255,.12);
  backdrop-filter:saturate(140%) blur(4px);
  transition:transform .15s ease, background .15s ease;
}
.r3-menu > li > a:hover{ transform:translateY(-2px); background:rgba(255,255,255,.18)}

/* Pastillas con color (azules por defecto) */
.r3-menu > li:nth-child(-n+2) > a{ /* 1 y 2 = Inscripción / Re-inscripción */
  background: linear-gradient(180deg, var(--r3-azul) 0%, var(--r3-azul-dark) 100%);
}
.r3-menu > li:last-child > a{ /* Plataforma estudiantil = naranja */
  background: var(--r3-naranja); color:#1b1b1b;
}

/* Fondo al hacer scroll para legibilidad */
.r3-header.is-scrolled{
  background:rgba(10,23,44,.72);
  backdrop-filter:saturate(160%) blur(10px);
  box-shadow:0 8px 24px rgba(0,0,0,.15);
top: 0 !important;
}

/* ===== Mobile ===== */
.r3-nav-toggle{
  display:none; position:relative; width:42px; height:42px;
  border:0; background:rgba(255,255,255,.18); border-radius:10px;
}
.r3-nav-toggle span{
  position:absolute; left:10px; right:10px; height:2px; background:#fff; border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
.r3-nav-toggle span:nth-child(1){ top:12px }
.r3-nav-toggle span:nth-child(2){ top:20px }
.r3-nav-toggle span:nth-child(3){ top:28px }
.r3-nav-toggle.is-open span:nth-child(1){ transform:translateY(8px) rotate(45deg) }
.r3-nav-toggle.is-open span:nth-child(2){ opacity:0 }
.r3-nav-toggle.is-open span:nth-child(3){ transform:translateY(-8px) rotate(-45deg) }

@media (max-width: 980px){
  .r3-nav-toggle{ display:block }
  .r3-nav{ position:fixed; top:72px; right:12px; left:12px; display:none }
  .r3-nav.is-open{ display:block }
  .r3-menu{
    flex-direction:column; padding:12px; gap:10px;
    background:rgba(10,23,44,.92); border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.35);
  }
  .r3-menu > li > a{ background:transparent; border:1px solid rgba(255,255,255,.2) }
  .r3-menu > li:nth-child(-n+2) > a{ background:transparent; }
  .r3-menu > li:last-child > a{ background:var(--r3-naranja) }
}


 @media(max-width: 560px) {
                                
                                .hero-buttons {
                                   
                                    bottom: 576px !important;
                                }
                            }
