﻿*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: "IBM Plex Sans", sans-serif;
  overflow-x: hidden;
}

img{
  max-width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: inherit;
}

button{
  font-family: inherit;
}

@font-face{
  font-family:'Chillax';
  src:url('../fonts/chillax-300.woff2') format('woff2');
  font-weight:300;
  font-display:swap;
  font-style:normal;
}

@font-face{
  font-family:'Chillax';
  src:url('../fonts/chillax-400.woff2') format('woff2');
  font-weight:400;
  font-display:swap;
  font-style:normal;
}

@font-face{
  font-family:'Chillax';
  src:url('../fonts/chillax-500.woff2') format('woff2');
  font-weight:500;
  font-display:swap;
  font-style:normal;
}

@font-face{
  font-family:'Chillax';
  src:url('../fonts/chillax-600.woff2') format('woff2');
  font-weight:600;
  font-display:swap;
  font-style:normal;
}

@font-face{
  font-family:'Chillax';
  src:url('../fonts/chillax-700.woff2') format('woff2');
  font-weight:700;
  font-display:swap;
  font-style:normal;
}

@font-face{
  font-family:'IBM Plex Sans';
  src:url('../fonts/ibmplex-400.woff2') format('woff2');
  font-weight:400 700;
  font-display:swap;
  font-style:normal;
}

@keyframes rrDiBridgeSpin{
  from{
    transform:translateX(-50%) rotate(0deg);
  }
  to{
    transform:translateX(-50%) rotate(360deg);
  }
}

@keyframes rrWaPulse{
  0%{
    box-shadow:0 12px 34px rgba(37,211,102,.5),0 4px 14px rgba(18,26,58,.32),0 0 0 0 rgba(37,211,102,.55);
  }
  70%{
    box-shadow:0 12px 34px rgba(37,211,102,.5),0 4px 14px rgba(18,26,58,.32),0 0 0 16px rgba(37,211,102,0);
  }
  100%{
    box-shadow:0 12px 34px rgba(37,211,102,.5),0 4px 14px rgba(18,26,58,.32),0 0 0 0 rgba(37,211,102,0);
  }
}

@keyframes rrUnifyGradient{
  0%{
    background-position:0% 50%;
  }
  50%{
    background-position:100% 50%;
  }
  100%{
    background-position:0% 50%;
  }
}

@keyframes rrDiDotPulse{
  0%,
  100%{
    opacity:1;
  }
  50%{
    opacity:.35;
  }
}

@keyframes rrDifShake{
  0%,
  100%{
    transform:translateX(0);
  }
  20%{
    transform:translateX(-6px);
  }
  40%{
    transform:translateX(6px);
  }
  60%{
    transform:translateX(-4px);
  }
  80%{
    transform:translateX(4px);
  }
}

@keyframes rrLoaderBreathe{
  0%,
  100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.12);
  }
}

.rr-di-hero{
  position:relative;
  width:100%;
  min-height:clamp(500px,42vh,620px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:linear-gradient(135deg,#0F1A38 0%,#1B2C63 32%,#2C4A94 62%,#3E8FC4 88%,#65C5E8 130%);
}

.rr-di-hero__bridge-logo{
  position:absolute;
  bottom:-220px;
  left:50%;
  width:440px;
  height:440px;
  pointer-events:none;
  z-index:0;
  mix-blend-mode:overlay;
  opacity:.6;
}

.rr-di-hero__bridge-logo img{
  width:100%;
  height:100%;
  display:block;
  animation:rrDiBridgeSpin 50s linear infinite;
}

.rr-di-hero__content{
  position:relative;
  z-index:2;
  max-width:1440px;
  margin:0 auto;
  width:100%;
  padding:120px clamp(20px,5vw,64px) clamp(220px,22vw,280px);
  box-sizing:border-box;
  color:#fff;
  text-align:center;
}

.rr-di-hero__content h1{
  font-family:Chillax,sans-serif;
  font-weight:400;
  font-size:70px;
  line-height:1.06;
  margin:0 0 18px;
}

.rr-dif-hp{
  position:absolute!important;
  left:-9999px!important;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.rr-footer{
  background:#12203F;
  color:rgba(255,255,255,.85);
  padding:clamp(56px,7vw,80px) clamp(20px,5vw,64px) 28px;
  font-family:'IBM Plex Sans',sans-serif;
}

.rr-footer__grid{
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.rr-footer__brand{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.rr-footer__brand img{
  width:56px;
  height:56px;
  object-fit:contain;
  display:block;
  margin:0 auto 12px;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.rr-footer__brand p{
  font-size:14px;
  line-height:1.6;
  color:rgba(255,255,255,.65);
  max-width:260px;
  margin:0 auto;
}

.rr-footer h4{
  text-align:center;
  font-size:13px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin:0 0 18px;
}

.rr-footer__nav{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}

.rr-footer__nav a{
  color:rgba(255,255,255,.85);
  font-size:15px;
  text-decoration:none;
}

.rr-footer__contact{
  text-align:center;
}

.rr-footer__contact p{
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.75);
  margin:0;
}

.rr-footer__contact a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
}

.rr-footer__social{
  display:flex;
  gap:16px;
  justify-content:center;
}

.rr-footer__social a{
  color:rgba(255,255,255,.85);
  transition:color .2s;
}

.rr-footer__social a:hover{
  color:#25D366;
}

.rr-footer__grid > div:has(> .rr-footer__dev){
  display:flex;
  flex-direction:column;
}

.rr-footer__dev{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin-top:auto;
  padding-top:28px;
}

.rr-footer__dev span{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:12px;
  letter-spacing:.06em;
  color:rgba(255,255,255,.45);
}

.rr-footer__dev img{
  height:40px;
  width:auto;
  max-width:150px;
  object-fit:contain;
  display:block;
  opacity:.8;
}

.rr-footer__bottom{
  max-width:1440px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding-top:22px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}

.rr-wa-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1000;
  display:flex;
  align-items:center;
  background:#25D366;
  color:#fff;
  border-radius:999px;
  height:72px;
  padding:0 20px;
  box-shadow:0 12px 34px rgba(37,211,102,.5),0 4px 14px rgba(18,26,58,.32);
  text-decoration:none;
  transition:transform .2s;
  animation:rrWaPulse 2.4s ease-out infinite;
}

.rr-wa-float:hover{
  transform:scale(1.08);
}

.rr-wa-float span{
  max-width:0;
  opacity:0;
  margin-left:0;
  white-space:nowrap;
  overflow:hidden;
  font-weight:700;
  font-size:16px;
  transition:max-width .25s,opacity .2s,margin .25s;
  font-family:'IBM Plex Sans',sans-serif;
}

.rr-wa-float:hover span{
  max-width:120px;
  opacity:1;
  margin-left:12px;
}

.rr-btn{
  display:block;
  text-align:center;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  text-decoration:none;
  border-radius:999px;
  transition:transform .2s;
}

.rr-btn:hover{
  transform:scale(1.06);
}

.rr-di{
  position:relative;
  min-height:0;
  display:block;
  box-sizing:border-box;
  padding:clamp(70px,9vw,100px) clamp(20px,5vw,64px) clamp(60px,8vw,90px);
  background:linear-gradient(120deg,#ffffff 0%,#EAF6FC 25%,#ffffff 50%,#DCEFFB 75%,#ffffff 100%);
  background-size:300% 300%;
  background-attachment:fixed;
  animation:rrUnifyGradient 16s ease-in-out infinite;
  overflow:hidden;
}

.rr-di__grid{
  position:relative;
  z-index:1;
  max-width:1440px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
}

.rr-di-card{
  background:#fff;
  border:1px solid rgba(101,197,232,.28);
  border-radius:26px;
  padding:clamp(44px,5vw,64px) clamp(38px,4.4vw,54px);
  box-shadow:0 24px 56px -28px rgba(37,54,119,.28);
  opacity:0;
  transform:translateY(34px);
  transition:opacity .75s cubic-bezier(.16,.8,.32,1),transform .75s cubic-bezier(.16,.8,.32,1),box-shadow .3s ease,border-color .3s ease;
  display:flex;
  flex-direction:column;
}

.rr-di-card.is-in{
  opacity:1;
  transform:translateY(0);
}

.rr-di-card:hover{
  box-shadow:0 30px 66px -26px rgba(37,54,119,.36);
  border-color:rgba(101,197,232,.5);
}

.rr-di-card__tag{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#2C8FB8;
  margin:0 0 16px;
}

.rr-di-card__dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#1E9E6B;
  animation:rrDiDotPulse 2s ease-in-out infinite;
  flex-shrink:0;
}

.rr-di-card__tag-sep{
  color:#B8C4D6;
  font-weight:400;
}

.rr-di-card h3{
  font-family:Chillax,sans-serif;
  font-weight:600;
  font-size:45px;
  color:#253677;
  margin:0 0 12px;
}

.rr-di-card__line{
  display:block;
  width:40px;
  height:3px;
  border-radius:2px;
  background:linear-gradient(90deg,#2C4A94,#65C5E8);
  margin:0 0 22px;
}

.rr-di-card__lead{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:25px;
  line-height:1.55;
  color:#253677;
  margin:0 0 30px;
}

.rr-di-card ul{
  list-style:none;
  margin:0 0 34px;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.rr-di-card li{
  position:relative;
  padding-left:26px;
  font-family:'IBM Plex Sans',sans-serif;
  font-size:25px;
  line-height:1.5;
  color:#253677;
}

.rr-di-card li::before{
  content:'';
  position:absolute;
  left:0;
  top:9px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:linear-gradient(135deg,#2C4A94,#65C5E8);
}

.rr-di-card__cta{
  display:inline-flex;
  align-self:flex-start;
  margin-top:auto;
  align-items:center;
  gap:10px;
  border:none;
  cursor:pointer;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:15px;
  border-radius:999px;
  padding:17px 30px;
  background:linear-gradient(90deg,#2C4A94 0%,#65C5E8 50%,#2C4A94 100%);
  background-size:200% 100%;
  background-position:left center;
  color:#fff;
  transition:transform .25s cubic-bezier(.34,1.4,.4,1),box-shadow .25s ease,background-position .4s ease;
}

.rr-di-card__cta svg{
  width:14px;
  height:14px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.4;
  transition:transform .3s ease;
}

.rr-di-card__cta:hover{
  transform:scale(1.04);
  box-shadow:0 10px 24px -8px rgba(37,54,119,.4);
  background-position:right center;
}

.rr-di-card__cta:hover svg{
  transform:translateX(4px);
}

.rr-dif-hp{
  position:absolute!important;
  left:-9999px!important;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.rr-dif{
  position:relative;
  background:linear-gradient(120deg,#ffffff 0%,#EAF6FC 25%,#ffffff 50%,#DCEFFB 75%,#ffffff 100%);
  background-size:300% 300%;
  background-attachment:fixed;
  animation:rrUnifyGradient 16s ease-in-out infinite;
  overflow:hidden;
  padding:clamp(50px,7vw,90px) clamp(20px,5vw,40px) clamp(80px,10vw,130px);
}

.rr-dif__wrap{
  position:relative;
  z-index:1;
  max-width:1620px;
  margin:0 auto;
}

.rr-dif-card{
  position:relative;
  width:100%;
  height:730px;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 70px -20px rgba(37,54,119,.32),0 4px 18px rgba(37,54,119,.1);
  border:1px solid rgba(101,197,232,.25);
}

.rr-dif-panel{
  position:absolute;
  top:0;
  left:0;
  width:50%;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:20px 44px;
  box-sizing:border-box;
  transition:transform .75s cubic-bezier(.65,0,.35,1),opacity .6s ease;
}

.rr-dif-panel--docencia{
  z-index:2;
}

.rr-dif-panel--ensayo{
  opacity:0;
  z-index:1;
}

.rr-dif-card.is-right .rr-dif-panel--docencia{
  transform:translateX(100%);
  opacity:0;
  z-index:1;
}

.rr-dif-card.is-right .rr-dif-panel--ensayo{
  transform:translateX(100%);
  opacity:1;
  z-index:5;
}

.rr-dif-panel h3{
  font-family:Chillax,sans-serif;
  font-weight:600;
  font-size:45px;
  white-space:nowrap;
  color:#253677;
  margin:0 0 6px;
}

.rr-dif-panel .rr-dif-sub{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:25px;
  color:#8A93A6;
  margin:0 0 18px;
}

.rr-dif-field{
  margin-bottom:11px;
}

.rr-dif-field label{
  display:block;
  font-family:'IBM Plex Sans',sans-serif;
  font-size:20px;
  font-weight:600;
  color:#8A93A6;
  margin-bottom:5px;
}

.rr-dif-input-wrap{
  position:relative;
}

.rr-dif-field input,
.rr-dif-field textarea{
  width:100%;
  border:1.5px solid rgba(101,197,232,.4);
  border-radius:11px;
  padding:11px 36px 11px 13px;
  font-size:13.5px;
  color:#3E4759;
  background:#fff;
  font-family:'IBM Plex Sans',sans-serif;
  box-sizing:border-box;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.rr-dif-field textarea{
  resize:none;
  height:52px;
  padding-right:13px;
}

.rr-dif-field input:focus,
.rr-dif-field textarea:focus{
  outline:none;
  border-color:#65C5E8;
  box-shadow:0 0 0 3px rgba(101,197,232,.18);
}

.rr-dif-field.is-valid input{
  border-color:#1E9E6B;
}

.rr-dif-field.is-invalid input{
  border-color:#D2453C;
}

.rr-dif-check{
  position:absolute;
  right:11px;
  top:50%;
  transform:translateY(-50%) scale(.5);
  width:16px;
  height:16px;
  opacity:0;
  transition:opacity .2s ease,transform .2s ease;
}

.rr-dif-field.is-valid .rr-dif-check{
  opacity:1;
  transform:translateY(-50%) scale(1);
}

.rr-dif-check svg{
  width:100%;
  height:100%;
  stroke:#1E9E6B;
  fill:none;
  stroke-width:3;
}

.rr-dif-errtext{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:11px;
  color:#D2453C;
  margin-top:4px;
  min-height:13px;
  opacity:0;
  transform:translateY(-3px);
  transition:opacity .2s ease,transform .2s ease;
}

.rr-dif-field.is-invalid .rr-dif-errtext{
  opacity:1;
  transform:translateY(0);
}

.rr-dif-row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.rr-dif-file{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.rr-dif-file input{
  position:absolute;
  width:.1px;
  height:.1px;
  opacity:0;
  overflow:hidden;
  z-index:-1;
}

.rr-dif-file__btn{
  flex:none;
  background:rgba(101,197,232,.15);
  border:1.5px solid rgba(101,197,232,.4);
  color:#253677;
  border-radius:11px;
  padding:9px 16px;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:13.5px;
  transition:border-color .25s ease,background .25s ease;
}

.rr-dif-file:hover .rr-dif-file__btn{
  border-color:#65C5E8;
  background:rgba(101,197,232,.25);
}

.rr-dif-file__name{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:12.5px;
  color:#8A93A6;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  min-width:0;
}

.rr-dif-field.is-invalid .rr-dif-file__btn{
  border-color:#D2453C;
  color:#D2453C;
}

.rr-dif-field.is-valid .rr-dif-file__btn{
  border-color:#1E9E6B;
  color:#1E9E6B;
}

.rr-dif-submit{
  margin-top:8px;
  border:none;
  border-radius:999px;
  padding:13px 20px;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:20px;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(90deg,#2C4A94,#65C5E8,#2C4A94);
  background-size:200% 100%;
  transition:transform .2s ease,background-position .4s ease;
}

.rr-dif-submit:hover{
  transform:scale(1.015);
  background-position:100% 0;
}

.rr-dif-submit__tick{
  vertical-align:-3px;
  margin-left:4px;
}

.rr-dif-submit--ensayo{
  background:linear-gradient(90deg,#2C4A94,#65C5E8,#2C4A94);
  background-size:200% 100%;
}

.rr-dif-card.shake{
  animation:rrDifShake .45s;
}

.rr-dif-overlay-container{
  position:absolute;
  top:0;
  left:50%;
  width:50%;
  height:100%;
  overflow:hidden;
  transition:transform .75s cubic-bezier(.65,0,.35,1),border-radius .75s cubic-bezier(.65,0,.35,1);
  z-index:100;
  border-radius:50% 0 0 50%;
}

.rr-dif-card.is-right .rr-dif-overlay-container{
  transform:translateX(-100%);
  border-radius:0 50% 50% 0;
}

.rr-dif-overlay{
  position:relative;
  left:-100%;
  height:100%;
  width:200%;
  background:linear-gradient(135deg,#0F1A38 0%,#253677 45%,#65C5E8 100%);
  box-shadow:inset 0 0 60px rgba(0,0,0,.18);
  transition:transform .75s cubic-bezier(.65,0,.35,1);
}

.rr-dif-card.is-right .rr-dif-overlay{
  transform:translateX(50%);
}

.rr-dif-overlay-panel{
  position:absolute;
  top:0;
  width:50%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 40px;
  color:#fff;
  box-sizing:border-box;
  transition:transform .75s cubic-bezier(.65,0,.35,1);
}

.rr-dif-overlay-panel h4{
  font-family:Chillax,sans-serif;
  font-weight:600;
  font-size:30px;
  margin:0 0 10px;
}

.rr-dif-overlay-panel p{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:25px;
  line-height:1.6;
  color:#EAF6FC;
  margin:0 0 22px;
  opacity:.92;
}

.rr-dif-ghost-btn{
  border:1.5px solid rgba(255,255,255,.75);
  background:transparent;
  color:#fff;
  padding:11px 26px;
  border-radius:999px;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:background .25s ease,transform .2s ease;
}

.rr-dif-ghost-btn:hover{
  background:rgba(255,255,255,.16);
  transform:scale(1.03);
}

.rr-dif-overlay-left{
  left:0;
  transform:translateX(-22%);
}

.rr-dif-card.is-right .rr-dif-overlay-left{
  transform:translateX(0);
}

.rr-dif-overlay-right{
  right:0;
  transform:translateX(0);
}

.rr-dif-card.is-right .rr-dif-overlay-right{
  transform:translateX(22%);
}

.rr-dif-submit.is-sent{
  background:linear-gradient(90deg,#1E9E6B 0%,#25D366 100%) !important;
  color:#fff !important;
  cursor:default;
}

.rr-dif-submit:disabled{
  opacity:.9;
  cursor:default;
}

.rr-dif-hp{
  position:absolute!important;
  left:-9999px!important;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.rr-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:transparent;
  padding:16px clamp(14px,3vw,32px) 0;
  box-sizing:border-box;
  transition:padding .3s;
}

.rr-header__inner{
  max-width:1320px;
  margin:0 auto;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 34px 15px 40px;
}

.rr-header__pill-bg{
  position:absolute;
  inset:0;
  z-index:-1;
  border-radius:999px;
  background:rgba(15,22,50,.42);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 30px rgba(10,15,35,.28);
  pointer-events:none;
  transition:background .3s ease,box-shadow .3s ease;
  transform:translateZ(0);
  will-change:transform;
  isolation:isolate;
}

.rr-header.is-scrolled .rr-header__pill-bg{
  background:rgba(12,18,42,.62);
  box-shadow:0 14px 34px rgba(5,8,25,.4);
}

.rr-header__logo{
  display:flex;
  align-items:center;
  line-height:1;
}

.rr-header__logo img{
  width:38px;
  height:38px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.rr-header__right{
  display:flex;
  align-items:center;
  gap:44px;
}

.rr-header__nav{
  display:flex;
  align-items:center;
  gap:32px;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

.rr-header__nav a{
  color:#fff;
  font-family:Chillax,sans-serif;
  font-weight:500;
  font-size:19.5px;
  text-decoration:none;
  border-bottom:2px solid transparent;
  padding-top:10px;
  padding-bottom:10px;
  text-transform:lowercase;
}

.rr-header__nav a.is-active{
  font-weight:600;
  border-bottom-color:#ADDADB;
}

.rr-header__nav a:hover{
  border-bottom-color:#ADDADB;
}

.rr-nav-item{
  position:relative;
  -webkit-tap-highlight-color:transparent;
}

.rr-nav-item *{
  -webkit-tap-highlight-color:transparent;
}

.rr-nav-item__toggle{
  outline:none;
}

.rr-nav-item__toggle:focus,
.rr-nav-item__link:focus,
.rr-nav-item__dropdown a:focus{
  outline:none;
}

.rr-nav-item__row{
  display:flex;
  align-items:center;
  gap:2px;
}

.rr-nav-item__toggle{
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  padding:4px;
  display:none;
  align-items:center;
  line-height:0;
}

.rr-nav-item__toggle svg{
  transition:transform .2s ease;
}

.rr-nav-item.is-open .rr-nav-item__toggle svg{
  transform:rotate(180deg);
}

.rr-nav-item__dropdown{
  position:absolute;
  top:100%;
  left:0;
  padding-top:16px;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
  z-index:1010;
}

.rr-nav-item:hover .rr-nav-item__dropdown,
.rr-nav-item.is-open .rr-nav-item__dropdown{
  opacity:1;
  pointer-events:auto;
}

.rr-nav-item__dropdown-inner{
  background:rgba(15,22,50,.62);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:12px;
  min-width:220px;
  box-shadow:0 18px 36px rgba(10,15,35,.32);
  display:flex;
  flex-direction:column;
  gap:6px;
  transform:translateY(-6px);
  transition:transform .2s ease;
}

.rr-nav-item:hover .rr-nav-item__dropdown-inner,
.rr-nav-item.is-open .rr-nav-item__dropdown-inner{
  transform:translateY(0);
}

.rr-nav-item__dropdown a{
  color:#fff;
  font-size:14.5px;
  font-weight:500;
  padding:12px 16px;
  border-radius:8px;
  white-space:nowrap;
  border-bottom:none;
}

.rr-nav-item__dropdown a:hover{
  background:rgba(255,255,255,.12);
}

.rr-header__actions{
  display:flex;
  align-items:center;
  gap:18px;
}

.rr-header__socials{
  display:flex;
  align-items:center;
  gap:18px;
}

.rr-social{
  color:#fff;
  display:flex;
  transition:color .2s;
}

.rr-social:hover{
  color:#25D366;
}

.rr-btn--lime{
  display:block;
  background:#ADDADB;
  color:#253677;
  padding:21px 28px;
  font-size:17px;
  line-height:0;
  border:2px solid #65C5E8;
  font-family:Chillax,sans-serif;
  text-transform:lowercase;
  transition:background .3s ease,color .3s ease,border-color .3s ease;
}

#rrHeader .rr-btn--lime:hover{
  transform:scale(1.03);
}

#rrHeader .rr-btn--lime{
  font-family:Chillax,sans-serif;
  text-transform:lowercase;
}

.rr-header__burger{
  position:relative;
  z-index:1002;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px;
  height:32px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}

.rr-header__burger span{
  display:block;
  width:100%;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s ease,opacity .2s ease;
}

.rr-header__burger.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.rr-header__burger.is-open span:nth-child(2){
  opacity:0;
}

.rr-header__burger.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.rr-header__overlay{
  position:fixed;
  inset:0;
  background:rgba(15,22,50,.55);
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:1000;
}

.rr-header__overlay.is-open{
  opacity:1;
  pointer-events:auto;
}

body.rr-menu-open .rr-wa-float{
  display:none;
}

.elementor-widget-html:has(> #rrHeader){
  font-size:0;
  line-height:0;
}

.elementor-column:has(#rrHeader),
.elementor-container:has(#rrHeader),
.elementor-top-section:has(#rrHeader),
.elementor-widget-wrap:has(#rrHeader){
  min-height:0 !important;
  height:0 !important;
}

#rrPageLoader{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#1B3A78;
  opacity:1;
  visibility:visible;
  transition:opacity .45s ease,visibility .45s ease;
}

#rrPageLoader::before{
  content:'';
  position:absolute;
  inset:-25%;
  background:radial-gradient(circle at 14% 18%,#0A1730 0%,transparent 40%),radial-gradient(circle at 58% 42%,#8FE3FB 0%,transparent 36%),radial-gradient(circle at 88% 85%,#0A1730 0%,transparent 42%),radial-gradient(circle at 20% 85%,#2C4A94 0%,transparent 45%),linear-gradient(135deg,#1B3A78 0%,#2C4A94 55%,#1B3A78 100%);
  filter:blur(70px);
  z-index:0;
}

.rr-loader__wrap{
  position:relative;
  z-index:1;
}

#rrPageLoader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.rr-loader__wrap{
  position:relative;
  width:150px;
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rr-loader__logo{
  width:120px;
  height:120px;
  object-fit:contain;
  animation:rrLoaderBreathe 1.4s ease-in-out infinite;
  animation-play-state:paused;
}

@media (max-width:600px){
  .rr-di-hero{
    align-items:center;
  }

  .rr-di-hero__bridge-logo{
    bottom:-110px;
    width:220px;
    height:220px;
  }
}

@media (max-width:900px){
  .rr-di-hero__bridge-logo{
    bottom:-150px;
    width:300px;
    height:300px;
  }

  .rr-dif-panel h3{
    white-space:normal;
    font-size:30px;
  }

  .rr-dif-panel .rr-dif-sub{
    font-size:20px;
  }

  .rr-dif-submit{
    font-size:16px;
  }
}

@media (max-width:640px){
  .rr-di-hero__content h1{
    font-size:40px;
    white-space:normal;
  }

  .rr-di-card h3{
    font-size:30px;
  }

  .rr-di-card__lead{
    font-size:20px;
  }

  .rr-di-card li{
    font-size:20px;
  }

  .rr-di-card__cta{
    font-size:16px;
  }
}

@media (max-width:780px){
  .rr-wa-float{
    width:72px;
    padding:0;
    justify-content:center;
  }

  .rr-wa-float:hover{
    transform:none;
  }

  .rr-wa-float span,
  .rr-wa-float:hover span{
    display:none;
    max-width:0;
    opacity:0;
    margin-left:0;
  }

  .rr-btn:hover,
  .rr-btn--lime:hover,
  #rrHeader .rr-btn--lime:hover,
  .rr-btn--lime-lg:hover,
  .rr-btn--outline-white:hover,
  .rr-fdprev__btn:hover,
  .rr-fdprev__btn--fill:hover,
  .rr-fdprev__btn--outline:hover,
  .rr-svc-stack__cta:hover,
  .rr-svc-video__cta:hover,
  .rr-eo-btn:hover,
  .rr-tc-btn:hover,
  .rr-di-card__cta:hover,
  .rr-nv-ig__btn:hover,
  .rr-dif-submit:hover,
  .rr-intro__text a:hover{
    transform:none !important;
    background-position:left center !important;
    box-shadow:none !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .rr-di-card,
  .rr-di-card__cta{
    transition:none !important;
  }

  .rr-dif-panel,
  .rr-dif-overlay-container,
  .rr-dif-overlay,
  .rr-dif-overlay-panel,
  .rr-dif-card.shake{
    transition:none !important;
    animation:none !important;
  }
}

@media (max-width:820px){
  .rr-di__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:680px){
  .rr-dif-card{
    height:auto;
  }

  .rr-dif-panel,
  .rr-dif-overlay-container,
  .rr-dif-overlay,
  .rr-dif-overlay-panel{
    position:static;
    width:100%;
    transform:none !important;
    height:auto;
    padding:28px 22px;
  }

  .rr-dif-panel--ensayo{
    display:none;
  }

  .rr-dif-card.is-right .rr-dif-panel--docencia{
    display:none;
  }

  .rr-dif-card.is-right .rr-dif-panel--ensayo{
    display:flex;
    opacity:1;
  }

  .rr-dif-overlay{
    background:linear-gradient(135deg,#0F1A38,#253677,#65C5E8);
    border-radius:0;
    width:100%;
    box-shadow:none;
    padding:0;
  }

  .rr-dif-overlay-container{
    border-radius:0 0 28px 28px;
    overflow:hidden;
    padding:0;
  }

  .rr-dif-card.is-right .rr-dif-overlay-container{
    border-radius:0 0 28px 28px;
  }

  .rr-dif-overlay-left{
    display:none;
  }

  .rr-dif-overlay-right{
    display:flex;
  }

  .rr-dif-card.is-right .rr-dif-overlay-left{
    display:flex;
  }

  .rr-dif-card.is-right .rr-dif-overlay-right{
    display:none;
  }

  .rr-dif-overlay-panel h4{
    font-size:25px;
  }

  .rr-dif-overlay-panel p{
    font-size:20px;
  }

  .rr-dif-row2{
    grid-template-columns:1fr;
  }
}

@media (max-width:1024px){
  .rr-header__inner{
    padding:10px 20px 10px 18px;
  }

  .rr-header__burger{
    display:flex;
  }

  .rr-header__right{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(78vw,320px);
    background:radial-gradient(circle at 90% -8%, rgba(101,197,232,.5), transparent 55%),radial-gradient(circle at -10% 105%, rgba(44,74,148,.6), transparent 60%),linear-gradient(165deg,#0F1A38 0%,#1B2C63 45%,#2C4A94 100%);
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    gap:36px;
    padding:32px;
    transform:translateX(100%);
    transition:transform .3s;
    z-index:1001;
    box-shadow:-10px 0 40px rgba(0,0,0,.35);
    overflow:hidden;
  }

  .rr-header__right::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cpath d='M30 0L60 17.3V52L30 69.3L0 52V17.3Z' fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E");
    background-size:52px 90px;
    pointer-events:none;
    z-index:0;
  }

  .rr-header__right>*{
    position:relative;
    z-index:1;
  }

  .rr-header__right.is-open{
    transform:translateX(0);
  }

  .rr-header__nav{
    position:static;
    transform:none;
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
    width:100%;
  }

  .rr-nav-item{
    width:100%;
  }

  .rr-nav-item__link{
    flex:0 1 auto;
  }

  .rr-nav-item__row{
    justify-content:space-between;
    width:100%;
  }

  .rr-nav-item__toggle{
    padding:4px 4px 4px 16px;
    display:flex;
  }

  .rr-nav-item__dropdown{
    position:static;
    opacity:1;
    pointer-events:auto;
    padding-top:6px;
    display:none;
  }

  .rr-nav-item.is-open .rr-nav-item__dropdown{
    display:flex;
  }

  .rr-nav-item__dropdown-inner{
    background:rgba(255,255,255,.06) !important;
    box-shadow:none !important;
    border-radius:12px !important;
    padding:14px 16px 14px 18px !important;
    min-width:0 !important;
    gap:14px !important;
    transform:none !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    border:none !important;
    border-left:2px solid rgba(101,197,232,.55) !important;
    margin-left:16px;
  }

  .rr-nav-item__dropdown a{
    padding:6px 0;
    font-size:16px;
    font-weight:500;
    color:rgba(255,255,255,.85);
    transition:color .2s ease;
  }

  .rr-nav-item__dropdown a:active,
  .rr-nav-item__dropdown a:hover{
    color:#65C5E8;
  }

  .rr-header__actions{
    flex-direction:column;
    align-items:center;
    gap:18px;
    width:100%;
  }

  .rr-header__socials{
    display:flex;
    align-items:center;
    gap:22px;
  }

  .rr-header__actions .rr-social svg{
    width:24px;
    height:24px;
  }

  .rr-header__actions .rr-btn--lime{
    padding:14px 32px;
    font-size:15.5px;
    width:100%;
    box-sizing:border-box;
    text-align:center;
  }
}

@media (prefers-reduced-motion:reduce){
  #rrPageLoader{
    transition:opacity .2s ease,visibility .2s ease;
  }

  .rr-loader__logo{
    animation:none;
  }
}
