.vf-header-pro{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:#fff;
  box-shadow:0 18px 45px rgba(20,20,40,.10);
}

.vf-header-pro-top{
  background:linear-gradient(90deg,#52286f,#e6007e,#00a9b7);
  color:#fff;
  font-size:.78rem;
  font-weight:700;
}

.vf-header-pro-top-inner{
  width:min(92%,1380px);
  margin:auto;
  padding:8px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.vf-header-pro-main{
  width:min(94%,1380px);
  margin:auto;
  min-height:96px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:34px;
}

.vf-header-pro-logo{
  padding:15px 2px;
  align-self:start;
}

.vf-header-pro-logo img {
    height: 49px;
    width: auto;
    width: 200px;
    margin-top: 10px;
}

.vf-header-pro-nav-wrap{
  display:flex;
  justify-content:center;
}

.vf-header-pro-nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:8px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(82,40,111,.08),rgba(230,0,126,.08),rgba(0,169,183,.08));
}

.vf-header-pro-nav a{
  position:relative;
  padding:13px 17px;
  border-radius:999px;
  color:#52286f;
  font-size:.86rem;
  font-weight:600;
  transition:.3s ease;
}

.vf-header-pro-nav a:nth-child(1):hover{background:#52286f;color:#fff;}
.vf-header-pro-nav a:nth-child(2):hover{background:#e6007e;color:#fff;}
.vf-header-pro-nav a:nth-child(3):hover{background:#00a9b7;color:#fff;}
.vf-header-pro-nav a:nth-child(4):hover{background:#c6d300;color:#1c1c1c;}
.vf-header-pro-nav a:nth-child(5):hover{background:#52286f;color:#fff;}
.vf-header-pro-nav a:nth-child(6):hover{background:#e6007e;color:#fff;}

.vf-header-pro-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.vf-header-pro-lang{
  display:flex;
  gap:7px;
}

.vf-header-pro-lang span{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#f4f4f7;
  color:#52286f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.65rem;
  font-weight:900;
}

.vf-header-pro-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:999px;
  background:linear-gradient(135deg,#e6007e,#52286f);
  color:#fff;
  font-size:.84rem;
  font-weight:900;
  box-shadow:0 14px 30px rgba(230,0,126,.24);
  transition:.3s ease;
}

.vf-header-pro-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(230,0,126,.32);
}

.vf-header-pro-toggle{
  display:none;
  width:48px;
  height:48px;
  border:0;
  border-radius:16px;
  background:#52286f;
  color:#fff;
  font-size:1.45rem;
  font-weight:900;
}

.vf-color-line{
  height:6px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1fr;
}

.vf-color-line span:nth-child(1){background:#52286f;}
.vf-color-line span:nth-child(2){background:#e6007e;}
.vf-color-line span:nth-child(3){background:#00a9b7;}
.vf-color-line span:nth-child(4){background:#c6d300;}

:root{
  --vf-purple:#52286f;
  --vf-pink:#e6007e;
  --vf-lime:#c6d300;
  --vf-cyan:#00a9b7;
  --vf-blue:#2d54ad;
  --vf-dark:#171721;
  --vf-text:#343442;
  --vf-muted:#737382;
  --vf-soft:#f7f7fb;
  --vf-shadow:0 22px 55px rgba(33,28,60,.15);
  --vf-header-height:133px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--vf-text);
  background:#fff;
  padding-top:var(--vf-header-height);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.vf-container{width:min(88%,1180px);margin:auto}

.vf-pdf-home{overflow:hidden;background:#fff}

/* HERO */
.vf-pdf-hero{
  position:relative;
  min-height:510px;
  padding:48px 0 28px;
  background:#fff;
}
.vf-pdf-hero:before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:120px;
  background:linear-gradient(180deg,rgba(255,255,255,0),#fff);
  pointer-events:none;
}
.vf-pdf-hero-grid{
  display:grid;
  grid-template-columns:.96fr 1.04fr;
  gap:48px;
  align-items:center;
}
.vf-pdf-hero-copy h1{
  max-width:590px;
  margin:0 0 18px;
  color:#2a2a33;
  font-size:clamp(2.2rem,4.7vw,4.9rem);
  line-height:.98;
  letter-spacing:-.065em;
  font-weight:500;
}
.vf-pdf-hero-copy p{
  max-width:430px;
  margin:0 0 24px;
  color:#5b5b67;
  font-size:1rem;
  line-height:1.55;
}
.vf-pdf-actions{display:flex;flex-wrap:wrap;gap:18px;align-items:center}
.vf-pdf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:12px 26px;
  border-radius:999px;
  font-size:.88rem;
  font-weight:800;
  line-height:1;
  transition:.25s ease;
}
.vf-pdf-btn:hover{transform:translateY(-2px)}
.vf-pdf-btn-primary{background:linear-gradient(135deg,var(--vf-purple),var(--vf-blue));color:#fff;box-shadow:0 16px 32px rgba(82,40,111,.22)}
.vf-pdf-btn-outline{border:2px solid var(--vf-pink);color:var(--vf-pink);background:#fff}
.vf-pdf-hero-media{position:relative;min-height:430px}
.vf-pdf-story{
  position:absolute;
  overflow:hidden;
  background:#ddd;
  box-shadow:0 18px 45px rgba(20,20,40,.18);
}
.vf-pdf-story img{width:100%;height:100%;object-fit:cover}
.vf-pdf-story-main{
  width:285px;
  height:360px;
  left:50%;
  top:18px;
  transform:translateX(-50%);
  border-radius:34px;
  z-index:3;
  border:0px solid #202026;
}
.vf-pdf-story-left{
  width:210px;
  height:285px;
  left:20px;
  top:100px;
  border-radius:30px;
  transform:rotate(-9deg);
  z-index:2;
}
.vf-pdf-story-right{
  width:215px;
  height:300px;
  right:16px;
  top:82px;
  border-radius:30px;
  transform:rotate(10deg);
  z-index:1;
}
.vf-pdf-story-main:after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:inset 0 -100px 90px rgba(0,0,0,.42);
  pointer-events:none;
}
.vf-pdf-story-caption{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:4;
  white-space:nowrap;
  padding:9px 18px;
  border-radius:999px;
  background:#15151d;
  color:#fff;
  font-size:.75rem;
  font-weight:800;
}
.vf-pdf-logo-badge{
  position:absolute;
  left:0px;
  bottom:72px;
  z-index:5;
  width:70px;
  height:70px;
  border-radius:50%;
  background:conic-gradient(var(--vf-purple) 0 25%, var(--vf-cyan) 0 50%, var(--vf-lime) 0 75%, var(--vf-pink) 0 100%);
  color:#fff;
  border:0px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.35rem;
  font-weight:900;
  box-shadow:0 12px 28px rgba(20,20,40,.2);
}
.vf-pdf-hearts{display:flex;gap:5px;align-items:center}
.vf-pdf-hearts span{width:13px;height:13px;border-radius:50%;display:block}
.vf-pdf-hearts span:nth-child(1){background:var(--vf-pink)}
.vf-pdf-hearts span:nth-child(2){background:var(--vf-lime)}
.vf-pdf-hearts span:nth-child(3){background:var(--vf-purple)}
.vf-pdf-hearts span:nth-child(4){background:var(--vf-cyan)}
.vf-pdf-story-main .vf-pdf-hearts{position:absolute;right:18px;top:12px;z-index:4}

/* FEATURE CARDS */
.vf-pdf-feature-wrap{padding:0 0 72px;background:#fff;position:relative;z-index:2}
.vf-pdf-feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
.vf-pdf-feature-card{
  position:relative;
  min-height:155px;
  padding:27px 24px 24px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 18px 35px rgba(20,20,40,.18);
}
.vf-pdf-feature-card:before{content:"";position:absolute;inset:0 0 auto 0;height:7px;border-radius:10px 10px 0 0}
.vf-pdf-feature-card:nth-child(1):before{background:var(--vf-purple)}
.vf-pdf-feature-card:nth-child(2):before{background:var(--vf-pink)}
.vf-pdf-feature-card:nth-child(3):before{background:var(--vf-cyan)}
.vf-pdf-feature-card:nth-child(4):before{background:var(--vf-lime)}

.vf-pdf-feature-card h3 {
    margin: 0 0 7px;
    color: #15151d;
    font-size: 18px;
    line-height: 1.18;
    font-weight: 400;
    text-align: center;
}


.vf-pdf-feature-card b{font-weight: 600}
.vf-pdf-feature-card p{margin:0;color:#656574;font-size:.78rem;line-height:1.45}

/* ADMISSION */
.vf-pdf-admission{padding:70px 0;background:linear-gradient(135deg,#e6007e 0%,#b02095 48%,#52286f 100%);color:#fff}
.vf-pdf-admission-grid{display:grid;grid-template-columns:1fr 1.08fr;gap:70px;align-items:center}
.vf-pdf-admission-copy h2{margin:0 0 14px;font-size:clamp(2rem,4vw,4.4rem);font-weight:400;line-height:.98;letter-spacing:-.05em}
.vf-pdf-admission-copy h2 span{display:block;font-weight:400}
.vf-pdf-admission-copy p{max-width:540px;margin:0;font-size:1.05rem;line-height:1.65;color:rgba(255,255,255,.9)}
.vf-pdf-form-card{background:#fff;color:#333;border-radius:28px;padding:34px;box-shadow:0 24px 60px rgba(30,10,40,.25)}

/* HEADINGS */
.vf-pdf-section{padding:74px 0}
.vf-pdf-heading{margin:0 0 34px}.vf-pdf-heading-center{text-align:center}.vf-pdf-heading h2{margin:0;color:#262630;font-size:clamp(2rem,3.8vw,3.4rem);line-height:1;font-weight:400;letter-spacing:-.05em}.vf-pdf-heading p{margin:7px 0 0;color:#6d6d78}.vf-pdf-heading-light h2,.vf-pdf-heading-light p{color:#fff}

/* CAMPUSES */
.vf-pdf-campuses{background:#fff;padding-top:44px}.vf-pdf-campus-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:stretch}.vf-pdf-campus-card{position:relative;min-height:345px;border-radius:18px;overflow:visible;box-shadow:0 16px 35px rgba(20,20,40,.16);background:#111}.vf-pdf-campus-card>img{width:100%;height:100%;object-fit:cover;border-radius:18px;filter:saturate(1.05)}.vf-pdf-campus-card:after{content:"";position:absolute;inset:0;border-radius:18px;background:linear-gradient(to top,rgba(0,0,0,.88),rgba(0,0,0,.18) 58%,rgba(0,0,0,.04));pointer-events:none}.vf-pdf-campus-overlay{position:absolute;z-index:2;left:0;right:0;bottom:0;padding:28px 22px 28px;color:#fff}

.vf-pdf-campus-overlay span{display:block;margin-bottom:5px;text-transform:uppercase;font-size:11px;font-weight:800;color:rgba(255,255,255,.78)}
.vf-pdf-campus-overlay h3{margin:0 0 8px;font-size:20px;line-height:1.1}.vf-pdf-campus-overlay p{margin:0 0 16px;font-size:12px;line-height:1.4;color:rgba(255,255,255,.82)}

.vf-pdf-campus-overlay a{
    display:flex;
    width:fit-content;

    align-items:center;
    justify-content:center;

    padding:9px 15px;
    border-radius:999px;
    background:#fff;
    color:#171721;
    font-size:14px;
    font-weight:500;

    margin:0 auto;
}
.vf-pdf-pin {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: -135px;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111;
    background: #fff;
    font-size: 1.45rem;
    box-shadow: 0 7px 16px rgba(20, 20, 40, .12);
}
/* PROFILE */
.vf-pdf-profile{padding-top:20px}.vf-pdf-profile-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:70px;align-items:center}.vf-pdf-profile h2{margin:0 0 35px;color:#30303a;font-weight:400;letter-spacing:-.05em;font-size:clamp(2.4rem,4vw,3rem)}.vf-pdf-k-mark{width:min(360px,100%);aspect-ratio:1;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13rem;line-height:1;font-weight:900;color:#fff;background:conic-gradient(from 90deg,var(--vf-cyan) 0 25%,var(--vf-pink) 0 50%,var(--vf-lime) 0 75%,var(--vf-purple) 0 100%)}.vf-pdf-profile-list{display:grid;gap:17px}

.vf-pdf-profile-list article h3 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
}


.vf-pdf-profile-list article:nth-child(1) h3{color:var(--vf-cyan)}.vf-pdf-profile-list article:nth-child(2) h3{color:var(--vf-pink)}.vf-pdf-profile-list article:nth-child(3) h3{color:#9daa00}.vf-pdf-profile-list article:nth-child(4) h3{color:var(--vf-purple)}

.vf-pdf-profile-list p {
    margin: 0;
    color: #53535f;
    line-height: 1.46;
    font-size: 18px;
}

/* SLIDERS */
.vf-pdf-testimonials{margin-top:100px;padding:70px 0;background:linear-gradient(105deg,#3049a8,#08b9c7);color:#fff}.vf-pdf-slider{position:relative}.vf-pdf-slider-viewport{overflow:hidden;width:100%}.vf-pdf-slider-track{display:flex;gap:28px;transition:transform .35s ease;will-change:transform}.vf-pdf-slider-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:38px;height:38px;border:0;border-radius:50%;background:#fff;color:#4560aa;font-size:2rem;line-height:1;display:flex;align-items:normal; justify-content:center;box-shadow:0 12px 26px rgba(10,10,20,.18);cursor:pointer}.vf-pdf-prev{left:-54px; padding-left: 5px;}.vf-pdf-next{right:-54px; padding-right: 5px;}
.vf-pdf-testimonial-card{flex:0 0 calc((100% - 56px)/3);background:#f8f2f8;color:#343442;border-radius:9px;padding:21px;box-shadow:0 14px 28px rgba(20,20,40,.13)}

.vf-pdf-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--vf-pink);
    font-size: 16px;
    
}

.vf-pdf-person strong {
    font-weight: 400;
}

.vf-pdf-person img{width:46px;height:46px;border-radius:50%;object-fit:cover}.vf-pdf-testimonial-card p{margin:0;color:#545462;font-size:.82rem;line-height:1.45}
.vf-pdf-news{background:#fff}.vf-pdf-news-slider .vf-pdf-slider-track{gap:34px; padding: 20px}
.vf-pdf-news-card{flex:0 0 calc((100% - 68px)/3);background:#fff;box-shadow:0 5px 14px rgba(20,20,40,.16)}.vf-pdf-news-card img{width:100%;height:190px;object-fit:cover}.vf-pdf-news-content{padding:20px}.vf-pdf-news-content span{display:block;color:var(--vf-lime);font-weight:700;font-size:15px;text-transform:uppercase;margin-bottom:4px}

.vf-pdf-news-content h3{margin:0 0 10px;color:#fff;font-size:20px;line-height:1.15;text-shadow:0 2px 8px rgba(0,0,0,.6);margin-top:-74px;position:relative}

.vf-pdf-news-content p{margin:58px 0 16px;color:#555563;font-size:.85rem;line-height:1.55}.vf-pdf-news-content time{font-size:.78rem;color:#8a8a96}.vf-pdf-news .vf-pdf-slider-btn{color:#858592;background:#fff}.vf-pdf-news .vf-pdf-prev{left:-48px}.vf-pdf-news .vf-pdf-next{right:-48px}

/* FRANKY */
.vf-pdf-franky{padding-top:88px}.vf-pdf-franky-grid{display:grid;grid-template-columns:1fr .82fr;gap:70px;align-items:center}.vf-pdf-franky-copy h2{margin:0 0 22px;font-weight:400;letter-spacing:-.05em;font-size:clamp(2.4rem,4vw,4rem)}.vf-pdf-franky-copy p{margin:0 0 10px;color:#4f4f5b;line-height:1.55}.vf-pdf-franky-copy strong{display:block;margin-top:16px;color:#20202a}.vf-pdf-franky-art{min-height:380px;position:relative}.vf-pdf-franky-tile{position:absolute;border-radius:28px;overflow:hidden;background:#eee;box-shadow:0 18px 35px rgba(20,20,40,.14)}.vf-pdf-franky-tile img{width:100%;height:100%;object-fit:cover}.vf-pdf-franky-one{width:230px;height:210px;left:40px;top:0;background:var(--vf-cyan)}.vf-pdf-franky-two{width:205px;height:240px;right:30px;top:64px;background:var(--vf-lime)}
.vf-pdf-franky-three{width:255px;height:200px;border:10px #fff solid; left:0;bottom:0;background:var(--vf-pink)}.vf-pdf-heart-bubble,.vf-pdf-plus-bubble{position:absolute;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;box-shadow:0 10px 20px rgba(20,20,40,.15)}.vf-pdf-heart-bubble{left:-18px;top:170px;width:54px;height:54px;border-radius:50%;background:var(--vf-pink);font-size:1.6rem}

.vf-pdf-plus-bubble{right:-4px;top:218px;width:68px;height:34px;border-radius:999px;background:transparent;font-size:1.1rem}

/* PURPOSE */
.vf-pdf-purpose{position:relative;padding:92px 0;text-align:center;color:#fff;background:linear-gradient(rgba(0,0,0,.74),rgba(0,0,0,.78)),url('/assets/slide2026/slide-02.webp?v=1') center/cover}

.vf-pdf-purpose h2{max-width:980px;margin:0 auto 14px;font-size:50px;font-weight:400;line-height:1.05;letter-spacing:-.055em}

.vf-pdf-purpose p{max-width:880px;margin:0 auto 13px;color:rgba(255,255,255,.82);line-height:1.55, font-size:18px}

.vf-pdf-hearts-center{justify-content:center;margin-top:25px}

/* ALLIANCES AND FOOTER */
.vf-pdf-alliances{background:#fff;padding-bottom:70px}.vf-pdf-alliances-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:22px}.vf-pdf-alliance{min-height:88px;border:1px solid #e9e9ef;border-radius:15px;display:flex;align-items:center;justify-content:center;padding:18px;background:#fff;box-shadow:0 10px 22px rgba(20,20,40,.05);transition:.25s ease}.vf-pdf-alliance:hover{transform:translateY(-4px);box-shadow:0 16px 32px rgba(20,20,40,.1)}.vf-pdf-alliance img{max-height:48px;object-fit:contain}.vf-pdf-footer{background:#101014;color:#fff;padding:19px 0;font-size:.8rem}.vf-pdf-footer .vf-container{display:flex;align-items:center;justify-content:space-between;gap:20px}.vf-pdf-footer a{color:#fff;text-decoration:underline;text-underline-offset:4px}

@media(max-width:1180px){
  .vf-header-pro-main{grid-template-columns:auto auto;justify-content:space-between}.vf-header-pro-nav-wrap{display:none}.vf-header-pro-toggle{display:block}.vf-header-pro.vf-menu-open .vf-header-pro-nav-wrap{display:block;position:absolute;left:4%;right:4%;top:100%;background:#fff;border-radius:0 0 26px 26px;box-shadow:0 25px 55px rgba(20,20,40,.18);padding:18px}.vf-header-pro.vf-menu-open .vf-header-pro-nav{display:grid;border-radius:20px;background:#f7f7fb}.vf-header-pro.vf-menu-open .vf-header-pro-nav a{text-align:center}.vf-pdf-feature-grid,.vf-pdf-campus-grid{grid-template-columns:repeat(2,1fr)}.vf-pdf-alliances-grid{grid-template-columns:repeat(3,1fr)}.vf-pdf-slider-btn{display:none}.vf-pdf-testimonial-card,.vf-pdf-news-card{flex-basis:calc((100% - 28px)/2)}
}
@media(max-width:980px){
  :root{--vf-header-height:118px}.vf-pdf-hero-grid,.vf-pdf-admission-grid,.vf-pdf-profile-grid,.vf-pdf-franky-grid{grid-template-columns:1fr;gap:42px}.vf-pdf-hero-media{min-height:430px;max-width:660px;margin:auto}.vf-pdf-admission{text-align:center}.vf-pdf-admission-copy p{margin:auto}.vf-pdf-k-mark{max-width:300px}.vf-pdf-profile{text-align:left}.vf-pdf-franky-art{max-width:560px;margin:auto;width:100%}
}
@media(max-width:760px){
  :root{--vf-header-height:108px}.vf-header-pro-top-inner{justify-content:center;text-align:center}.vf-header-pro-top-inner span:first-child,.vf-header-pro-top-inner span:last-child{display:none}.vf-header-pro-main{min-height:78px}.vf-header-pro-logo{padding:10px 0;border-radius:0}.vf-header-pro-logo img{height:auto;width:170px;margin-top:6px}.vf-header-pro-lang,.vf-header-pro-btn{display:none}.vf-container{width:min(90%,520px)}.vf-pdf-hero{padding-top:38px}.vf-pdf-hero-copy h1{font-size:2.55rem}.vf-pdf-actions{flex-direction:column;align-items:stretch}.vf-pdf-btn{width:100%}.vf-pdf-hero-media{min-height:360px}.vf-pdf-story-main{width:220px;height:290px}.vf-pdf-story-left{width:160px;height:220px;left:0;top:85px}.vf-pdf-story-right{width:160px;height:220px;right:0;top:80px}.vf-pdf-logo-badge{left:8px;bottom:36px;width:56px;height:56px;font-size:1.8rem}.vf-pdf-feature-grid,.vf-pdf-campus-grid,.vf-pdf-alliances-grid{grid-template-columns:1fr}.vf-pdf-campus-card{min-height:390px}.vf-pdf-admission{padding:62px 0}.vf-pdf-form-card{padding:22px;border-radius:22px}.vf-pdf-profile{padding-top:72px}.vf-pdf-k-mark{font-size:9rem}.vf-pdf-testimonial-card,.vf-pdf-news-card{flex-basis:100%}.vf-pdf-franky-art{min-height:500px}.vf-pdf-franky-one{left:15px}.vf-pdf-franky-two{right:5px;top:170px}.vf-pdf-franky-three{left:25px;bottom:0}.vf-pdf-purpose{padding:72px 0}.vf-pdf-footer .vf-container{flex-direction:column;text-align:center}
}
@media(max-width:460px){
  .vf-pdf-story-left,.vf-pdf-story-right{opacity:.8}.vf-pdf-story-main{left:52%}.vf-pdf-franky-one,.vf-pdf-franky-two,.vf-pdf-franky-three{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:100%;height:220px;margin:14px 0}.vf-pdf-franky-art{min-height:auto}.vf-pdf-heart-bubble,.vf-pdf-plus-bubble{display:none}
}


/* ==============================
   Ajustes 2026: header, accesos, imágenes y mobile real
   ============================== */

.vf-header-pro-flags{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
}

.vf-header-pro-flags img{
  width:28px;
  height:28px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.85);
  box-shadow:0 4px 10px rgba(0,0,0,.14);
}

.vf-header-pro-access{
  position:relative;
}

.vf-header-pro-btn-access{
  border:0;
  cursor:pointer;
  font-family:inherit;
  background:linear-gradient(135deg,var(--vf-cyan),var(--vf-blue));
  box-shadow:0 14px 30px rgba(0,169,183,.22);
}

.vf-header-pro-btn-access:hover,
.vf-header-pro-access.vf-access-open .vf-header-pro-btn-access{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(0,169,183,.32);
}

.vf-header-pro-access-menu{
  position:absolute;
  top:calc(100% + 14px);
  right:0;
  z-index:10010;
  width:310px;
  margin:0;
  padding:10px;
  list-style:none;
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 60px rgba(20,20,40,.18);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.22s ease;
}

.vf-header-pro-access:hover .vf-header-pro-access-menu,
.vf-header-pro-access.vf-access-open .vf-header-pro-access-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.vf-header-pro-access-menu:before{
  content:"";
  position:absolute;
  top:-8px;
  right:32px;
  width:18px;
  height:18px;
  background:#fff;
  transform:rotate(45deg);
}

.vf-header-pro-access-menu a{
  position:relative;
  z-index:1;
  display:block;
  padding:12px 14px;
  border-radius:14px;
  color:var(--vf-purple);
  font-size:.82rem;
  line-height:1.22;
  font-weight:850;
  transition:.2s ease;
}

.vf-header-pro-access-menu a:hover{
  background:linear-gradient(90deg,rgba(82,40,111,.08),rgba(0,169,183,.08));
  color:var(--vf-blue);
}

.vf-header-pro-access-menu .divider{
  border:0;
  border-top:1px solid #ececf4;
  margin:8px 6px;
}

.vf-pdf-story img[data-hero-slide]{
  transition:opacity .35s ease;
}

.vf-pdf-story img[data-hero-slide].vf-slide-fading{
  opacity:.08;
}

.vf-pdf-logo-badge{
  padding:0;
  background:#fff;
}

.vf-pdf-logo-badge img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:contain;
  padding:0px;
}

.vf-pdf-pin{
  overflow:hidden;
  font-size:0;
}

.vf-pdf-pin img{
  width:80%;
  height:80%;
  object-fit:contain;
  margin-top: -7px;
}

.vf-pdf-k-mark{
  background:#fff;
  box-shadow:0 18px 45px rgba(20,20,40,.12);
  overflow:hidden;
  padding:24px;
}

.vf-pdf-k-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.vf-pdf-hero-copy h1{
  font-size:clamp(2.15rem,4vw,3.2rem);
  line-height:1.03;
}

@media(max-width:1180px){
  .vf-header-pro-main{
    gap:18px;
  }

  .vf-header-pro-actions{
    margin-left:auto;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav-wrap{
    top:calc(100% + 6px);
  }
}

@media(max-width:980px){
  body{
    font-size:17px;
  }

  .vf-pdf-hero{
    min-height:auto;
    padding:42px 0 38px;
  }

  .vf-pdf-hero-copy{
    text-align:center;
  }

  .vf-pdf-hero-copy h1,
  .vf-pdf-hero-copy p{
    margin-left:auto;
    margin-right:auto;
  }

  .vf-pdf-hero-copy p,
  .vf-pdf-admission-copy p,
  .vf-pdf-franky-copy p,
  .vf-pdf-purpose p,
  .vf-pdf-profile-list p{
    font-size:1.06rem;
    line-height:1.68;
  }

  .vf-pdf-feature-card p,
  .vf-pdf-campus-overlay p,
  .vf-pdf-testimonial-card p,
  .vf-pdf-news-content p{
    font-size:.95rem;
    line-height:1.58;
  }
}

@media(max-width:760px){
  :root{
    --vf-header-height:103px;
  }

  body{
    padding-top:var(--vf-header-height);
    font-size:18px;
  }

  .vf-header-pro{
    box-shadow:0 10px 28px rgba(20,20,40,.12);
  }

  .vf-header-pro-top{
    font-size:.72rem;
  }

  .vf-header-pro-top-inner{
    width:min(94%,540px);
    min-height:30px;
    padding:5px 0;
    justify-content:space-between;
    gap:12px;
    text-align:left;
  }

  .vf-header-pro-top-inner span:first-child{
    display:block;
  }

  .vf-header-pro-top-inner span:nth-child(2){
    display:none;
  }

  .vf-header-pro-flags{
    flex:0 0 auto;
  }

  .vf-header-pro-flags img{
    width:26px;
    height:26px;
  }

  .vf-header-pro-main{
    width:min(94%,540px);
    min-height:67px;
    grid-template-columns:auto auto;
    gap:10px;
  }

  .vf-header-pro-logo img{
    width:150px;
    margin-top:4px;
  }

  .vf-header-pro-actions{
    gap:8px;
  }

  .vf-header-pro-actions > .vf-header-pro-btn{
    display:none;
  }

  .vf-header-pro-btn-access{
    display:inline-flex;
    min-height:42px;
    padding:12px 16px;
    font-size:.78rem;
  }

  .vf-header-pro-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    border-radius:14px;
    font-size:1.25rem;
  }

  .vf-header-pro-access-menu{
    position:fixed;
    top:101px;
    left:4%;
    right:4%;
    width:auto;
    max-height:calc(100vh - 118px);
    overflow:auto;
    border-radius:20px;
  }

  .vf-header-pro-access-menu:before{
    display:none;
  }

  .vf-header-pro-access-menu a{
    padding:14px 15px;
    font-size:.92rem;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav-wrap{
    left:3%;
    right:3%;
    padding:14px;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav{
    gap:5px;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav a{
    padding:14px;
    font-size:1rem;
  }

  .vf-container{
    width:min(92%,560px);
  }

  .vf-pdf-hero{
    padding:34px 0 30px;
  }

  .vf-pdf-hero-grid{
    gap:28px;
  }

  .vf-pdf-hero-copy h1{
    max-width:420px;
    font-size:clamp(2.15rem,10vw,3rem);
    line-height:1.05;
    letter-spacing:-.045em;
  }

  .vf-pdf-hero-copy p{
    max-width:390px;
    font-size:1.08rem;
    line-height:1.62;
  }

  .vf-pdf-actions{
    max-width:390px;
    margin:auto;
    gap:12px;
  }

  .vf-pdf-btn{
    min-height:50px;
    padding:15px 20px;
    font-size:.96rem;
    line-height:1.25;
    text-align:center;
  }

  .vf-pdf-hero-media{
    width:min(100%,390px);
    min-height:330px;
    margin:0 auto;
  }

  .vf-pdf-story-main{
    width:205px;
    height:270px;
    top:18px;
    border-width:6px;
    border-radius:28px;
  }

  .vf-pdf-story-left,
  .vf-pdf-story-right{
    width:145px;
    height:205px;
    border-radius:24px;
    top:88px;
  }

  .vf-pdf-story-left{
    left:4px;
  }

  .vf-pdf-story-right{
    right:4px;
  }

  .vf-pdf-story-caption{
    bottom:14px;
    padding:8px 14px;
    font-size:.78rem;
  }

  .vf-pdf-logo-badge{
    left:14px;
    bottom:34px;
    width:58px;
    height:58px;
    border-width:5px;
  }

  .vf-pdf-feature-wrap{
    padding:10px 0 54px;
  }

  .vf-pdf-feature-grid{
    gap:16px;
  }

  .vf-pdf-feature-card{
    min-height:auto;
    padding:24px 21px 22px;
    border-radius:16px;
  }

  .vf-pdf-feature-card h3{
    font-size:1.12rem;
    line-height:1.22;
  }

  .vf-pdf-feature-card p{
    font-size:1rem;
  }

  .vf-pdf-section{
    padding:58px 0;
  }

  .vf-pdf-heading{
    margin-bottom:26px;
  }

  .vf-pdf-heading h2,
  .vf-pdf-admission-copy h2,
  .vf-pdf-profile h2,
  .vf-pdf-franky-copy h2,
  .vf-pdf-purpose h2{
    font-size:clamp(2.05rem,9vw,2.8rem);
    line-height:1.08;
    letter-spacing:-.04em;
  }

  .vf-pdf-heading p{
    font-size:1.04rem;
    line-height:1.45;
  }

  .vf-pdf-campus-grid{
    gap:56px;
  }

  .vf-pdf-campus-card{
    min-height:430px;
    border-radius:24px;
  }

  .vf-pdf-campus-card > img,
  .vf-pdf-campus-card:after{
    border-radius:24px;
  }

  .vf-pdf-campus-overlay{
    padding:30px 24px 34px;
  }

  .vf-pdf-campus-overlay span{
    font-size:.78rem;
  }

  .vf-pdf-campus-overlay h3{
    font-size:1.42rem;
  }

  .vf-pdf-campus-overlay p{
    font-size:1rem;
  }

  .vf-pdf-campus-overlay a{
    min-height:42px;
    align-items:center;
    padding:10px 18px;
    font-size:.86rem;
  }

  .vf-pdf-pin{
    width:58px;
    height:58px;
    bottom:-35px;
  }

  .vf-pdf-admission{
    padding:58px 0;
  }

  .vf-pdf-admission-grid{
    gap:28px;
  }

  .vf-pdf-form-card{
    padding:18px;
  }

  .vf-pdf-profile{
    padding-top:68px;
  }

  .vf-pdf-profile-grid{
    gap:28px;
  }

  .vf-pdf-profile h2{
    margin-bottom:22px;
    text-align:center;
  }

  .vf-pdf-k-mark{
    width:min(230px,72vw);
    margin:0 auto;
    padding:18px;
  }

  .vf-pdf-profile-list{
    gap:20px;
  }

  .vf-pdf-profile-list article{
    padding:0 0 18px;
    border-bottom:1px solid #ececf4;
  }

  .vf-pdf-profile-list article h3{
    font-size:1.22rem;
    line-height:1.22;
  }

  .vf-pdf-profile-list p{
    font-size:1.02rem;
  }

  .vf-pdf-testimonials{
    padding:58px 0;
  }

  .vf-pdf-testimonial-card,
  .vf-pdf-news-card{
    border-radius:18px;
  }

  .vf-pdf-testimonial-card{
    padding:22px;
  }

  .vf-pdf-person{
    font-size:.95rem;
  }

  .vf-pdf-news-content h3{
    font-size:1.12rem;
  }

  .vf-pdf-news-content p{
    font-size:1rem;
  }

  .vf-pdf-franky{
    padding-top:62px;
  }

  .vf-pdf-franky-copy{
    text-align:left;
  }

  .vf-pdf-franky-copy p{
    font-size:1.04rem;
  }

  .vf-pdf-purpose{
    padding:64px 0;
  }

  .vf-pdf-purpose p{
    font-size:1.05rem;
  }

  .vf-pdf-alliances-grid{
    gap:14px;
  }

  .vf-pdf-alliance{
    min-height:96px;
  }

  .vf-pdf-footer{
    font-size:.92rem;
    line-height:1.45;
  }
}

@media(max-width:460px){
  :root{
    --vf-header-height:101px;
  }

  .vf-header-pro-logo img{
    width:136px;
  }

  .vf-header-pro-btn-access{
    padding:11px 13px;
  }

  .vf-pdf-hero-copy h1{
    font-size:2.24rem;
  }

  .vf-pdf-hero-copy p{
    font-size:1.03rem;
  }

  .vf-pdf-hero-media{
    min-height:300px;
  }

  .vf-pdf-story-main{
    width:188px;
    height:250px;
    left:50%;
  }

  .vf-pdf-story-left,
  .vf-pdf-story-right{
    width:126px;
    height:185px;
    top:82px;
    opacity:.92;
  }

  .vf-pdf-story-left{
    left:-2px;
  }

  .vf-pdf-story-right{
    right:-2px;
  }

  .vf-pdf-logo-badge{
    left:8px;
    bottom:24px;
    width:52px;
    height:52px;
  }

  .vf-pdf-campus-card{
    min-height:410px;
  }

  .vf-pdf-franky-copy h2{
    text-align:center;
  }
}

@media(max-width:370px){
  .vf-header-pro-btn-access{
    font-size:.72rem;
    padding:10px 11px;
  }

  .vf-header-pro-toggle{
    width:39px;
    height:39px;
  }

  .vf-pdf-hero-copy h1{
    font-size:2.02rem;
  }

  .vf-pdf-story-left,
  .vf-pdf-story-right{
    opacity:.65;
  }
}

/* =========================================================
   RESPONSIVE FIX 2026 - mobile real, no escritorio reducido
   ========================================================= */

/* Base más legible en todos los tamaños */
html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  font-size:16px;
  line-height:1.55;
}

.vf-pdf-home p,
.vf-pdf-home li,
.vf-pdf-home a,
.vf-pdf-home span{
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.vf-pdf-heading p {
    font-size: 18px;
}

/* Tablets verticales y celulares grandes */
@media(max-width:900px){
  :root{
    --vf-header-height:104px;
  }

  body{
    padding-top:var(--vf-header-height);
    font-size:18px;
  }

  .vf-container{
    width:min(92%,620px);
  }

  .vf-header-pro-main{
    min-height:68px;
  }

  .vf-pdf-hero-grid,
  .vf-pdf-admission-grid,
  .vf-pdf-profile-grid,
  .vf-pdf-franky-grid{
    grid-template-columns:1fr !important;
    gap:34px;
  }

  .vf-pdf-feature-grid,
  .vf-pdf-campus-grid,
  .vf-pdf-alliances-grid{
    grid-template-columns:1fr !important;
  }

  .vf-pdf-feature-grid{
    gap:18px;
  }

  .vf-pdf-feature-card{
    min-height:auto;
    padding:26px 24px 24px;
    border-radius:18px;
  }

  .vf-pdf-feature-card h3{
    font-size:1.28rem;
    line-height:1.2;
    margin-bottom:9px;
  }

  .vf-pdf-feature-card p{
    font-size:1.06rem;
    line-height:1.58;
  }

  .vf-pdf-heading h2,
  .vf-pdf-admission-copy h2,
  .vf-pdf-profile h2,
  .vf-pdf-franky-copy h2,
  .vf-pdf-purpose h2{
    font-size:clamp(2.05rem,8vw,3rem);
    line-height:1.08;
    letter-spacing:-.035em;
  }

  .vf-pdf-heading p,
  .vf-pdf-hero-copy p,
  .vf-pdf-admission-copy p,
  .vf-pdf-profile-list p,
  .vf-pdf-franky-copy p,
  .vf-pdf-purpose p,
  .vf-pdf-testimonial-card p,
  .vf-pdf-news-content p,
  .vf-pdf-campus-overlay p{
    font-size:1.08rem;
    line-height:1.65;
  }

  .vf-pdf-profile-list article h3,
  .vf-pdf-campus-overlay h3,
  .vf-pdf-news-content h3{
    font-size:1.34rem;
    line-height:1.2;
  }

  .vf-pdf-btn,
  .vf-pdf-campus-overlay a,
  .vf-header-pro-nav a,
  .vf-header-pro-access-menu a{
    font-size:1rem;
  }

  .vf-pdf-testimonial-card,
  .vf-pdf-news-card{
    flex:0 0 100% !important;
  }
}

/* Celular: versión pensada para lectura */
@media(max-width:640px){
  :root{
    --vf-header-height:101px;
  }

  body{
    font-size:18px;
  }

  .vf-container{
    width:min(91%,480px);
  }

  .vf-header-pro-top-inner{
    width:min(94%,480px);
  }

  .vf-header-pro-top-inner span:first-child{
    font-size:.78rem;
    line-height:1.2;
  }

  .vf-header-pro-flags img{
    width:26px;
    height:26px;
  }

  .vf-header-pro-main{
    width:min(94%,480px);
    min-height:65px;
    grid-template-columns:auto auto;
    gap:8px;
  }

  .vf-header-pro-logo{
    padding:8px 0;
  }

  .vf-header-pro-logo img{
    width:138px;
    margin-top:3px;
  }

  .vf-header-pro-actions{
    gap:7px;
  }

  .vf-header-pro-btn-access{
    min-height:40px;
    padding:10px 13px;
    font-size:.78rem;
  }

  .vf-header-pro-toggle{
    width:40px;
    height:40px;
    border-radius:13px;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav-wrap{
    left:3%;
    right:3%;
    padding:12px;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav{
    grid-template-columns:1fr;
    gap:6px;
  }

  .vf-header-pro.vf-menu-open .vf-header-pro-nav a{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1rem;
  }

  .vf-header-pro-access-menu{
    top:98px;
    left:4%;
    right:4%;
    max-height:calc(100vh - 112px);
  }

  .vf-header-pro-access-menu a{
    padding:15px 14px;
    font-size:1rem;
    line-height:1.25;
  }

  .vf-pdf-hero{
    padding:32px 0 28px;
    min-height:auto;
  }

  .vf-pdf-hero-copy{
    text-align:left;
  }

  .vf-pdf-hero-copy h1{
    max-width:100%;
    margin-bottom:16px;
    font-size:clamp(2.28rem,11vw,3rem);
    line-height:1.04;
    letter-spacing:-.04em;
  }

  .vf-pdf-hero-copy p{
    max-width:100%;
    font-size:1.12rem;
    line-height:1.62;
    margin-bottom:22px;
  }

  .vf-pdf-actions{
    align-items:stretch;
    gap:12px;
    max-width:none;
  }

  .vf-pdf-btn{
    width:100%;
    min-height:52px;
    padding:16px 20px;
    font-size:1rem;
    line-height:1.22;
    text-align:center;
  }

  .vf-pdf-hero-media{
    width:100%;
    min-height:320px;
    max-width:430px;
    margin:0 auto;
  }

  .vf-pdf-story-main{
    width:200px;
    height:265px;
    top:18px;
    border-width:6px;
    border-radius:28px;
  }

  .vf-pdf-story-left,
  .vf-pdf-story-right{
    width:136px;
    height:198px;
    top:88px;
    border-radius:24px;
    opacity:.9;
  }

  .vf-pdf-story-left{left:0;}
  .vf-pdf-story-right{right:0;}

  .vf-pdf-story-caption{
    bottom:14px;
    padding:8px 12px;
    font-size:.78rem;
  }

  .vf-pdf-logo-badge{
    left:6px;
    bottom:28px;
    width:54px;
    height:54px;
    border-width:5px;
  }

  .vf-pdf-feature-wrap{
    padding:18px 0 56px;
  }

  .vf-pdf-feature-card{
    padding:25px 22px 23px;
    box-shadow:0 14px 28px rgba(20,20,40,.13);
  }

  .vf-pdf-feature-card h3{
    font-size:1.3rem;
  }

  .vf-pdf-feature-card p{
    font-size:1.08rem;
    line-height:1.62;
  }

  .vf-pdf-section{
    padding:60px 0;
  }

  .vf-pdf-heading{
    margin-bottom:28px;
  }

  .vf-pdf-heading h2,
  .vf-pdf-admission-copy h2,
  .vf-pdf-profile h2,
  .vf-pdf-franky-copy h2,
  .vf-pdf-purpose h2{
    font-size:clamp(2.1rem,10vw,2.75rem);
  }

  .vf-pdf-campus-grid{
    gap:58px;
  }

  .vf-pdf-campus-card{
    min-height:420px;
    border-radius:24px;
  }

  .vf-pdf-campus-card > img,
  .vf-pdf-campus-card:after{
    border-radius:24px;
  }

  .vf-pdf-campus-overlay{
    padding:30px 24px 34px;
  }

  .vf-pdf-campus-overlay span{
    font-size:.82rem;
  }

  .vf-pdf-campus-overlay h3{
    font-size:1.46rem;
    margin-bottom:10px;
  }

  .vf-pdf-campus-overlay p{
    font-size:1.06rem;
    line-height:1.5;
  }

  .vf-pdf-campus-overlay a{
    min-height:44px;
    align-items:center;
    padding:11px 18px;
    font-size:.96rem;
  }

  .vf-pdf-pin{
    width:58px;
    height:58px;
    bottom:-36px;
  }

  .vf-pdf-admission{
    padding:60px 0;
  }

  .vf-pdf-form-card{
    padding:20px;
    border-radius:22px;
  }

  .vf-pdf-profile{
    padding-top:72px;
  }

  .vf-pdf-profile h2{
    text-align:center;
    margin-bottom:22px;
  }

  .vf-pdf-k-mark{
    width:min(230px,72vw);
    margin:0 auto;
  }

  .vf-pdf-profile-list{
    gap:22px;
  }

  .vf-pdf-profile-list article{
    padding-bottom:20px;
    border-bottom:1px solid #ececf4;
  }

  .vf-pdf-profile-list article h3{
    font-size:1.34rem;
    margin-bottom:7px;
  }

  .vf-pdf-profile-list p{
    font-size:1.08rem;
    line-height:1.62;
  }

  .vf-pdf-testimonials{
    padding:60px 0;
  }

  .vf-pdf-slider-track{
    gap:18px;
  }

  .vf-pdf-testimonial-card{
    padding:23px;
    border-radius:18px;
  }

  .vf-pdf-person{
    font-size:.98rem;
    line-height:1.25;
  }

  .vf-pdf-person img{
    width:54px;
    height:54px;
  }

  .vf-pdf-testimonial-card p{
    font-size:1.06rem;
    line-height:1.62;
  }

  .vf-pdf-news-card{
    border-radius:18px;
    overflow:hidden;
  }

  .vf-pdf-news-card img{
    height:220px;
  }

  .vf-pdf-news-content{
    padding:22px;
  }

  .vf-pdf-news-content span{
    font-size:.82rem;
  }

  .vf-pdf-news-content h3{
    font-size:1.32rem;
    line-height:1.2;
  }

  .vf-pdf-news-content p{
    font-size:1.06rem;
    line-height:1.62;
  }

  .vf-pdf-franky{
    padding-top:60px;
  }

  .vf-pdf-franky-copy p{
    font-size:1.08rem;
    line-height:1.62;
  }

  .vf-pdf-franky-copy strong{
    font-size:1.08rem;
    line-height:1.35;
  }

  .vf-pdf-franky-art{
    min-height:auto;
    display:grid;
    gap:14px;
  }

  .vf-pdf-franky-one,
  .vf-pdf-franky-two,
  .vf-pdf-franky-three{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    height:220px;
    margin:0;
    border-radius:22px;
  }

  .vf-pdf-heart-bubble,
  .vf-pdf-plus-bubble{
    display:none;
  }

  .vf-pdf-purpose{
    padding:66px 0;
  }

  .vf-pdf-purpose p{
    font-size:1.08rem;
    line-height:1.62;
  }

  .vf-pdf-alliances-grid{
    gap:14px;
  }

  .vf-pdf-alliance{
    min-height:98px;
  }

  .vf-pdf-footer{
    padding:24px 0;
    font-size:.98rem;
    line-height:1.45;
  }

  .vf-pdf-footer .vf-container{
    gap:12px;
  }
}

/* Celulares angostos */
@media(max-width:390px){
  .vf-container{
    width:min(92%,350px);
  }

  .vf-header-pro-logo img{
    width:126px;
  }

  .vf-header-pro-btn-access{
    padding:9px 11px;
    font-size:.74rem;
  }

  .vf-header-pro-toggle{
    width:39px;
    height:39px;
  }

  .vf-pdf-hero-copy h1{
    font-size:2.16rem;
  }

  .vf-pdf-hero-copy p,
  .vf-pdf-feature-card p,
  .vf-pdf-campus-overlay p,
  .vf-pdf-profile-list p,
  .vf-pdf-franky-copy p,
  .vf-pdf-purpose p,
  .vf-pdf-testimonial-card p,
  .vf-pdf-news-content p{
    font-size:1.04rem;
  }

  .vf-pdf-feature-card h3,
  .vf-pdf-profile-list article h3,
  .vf-pdf-campus-overlay h3,
  .vf-pdf-news-content h3{
    font-size:1.24rem;
  }

  .vf-pdf-hero-media{
    min-height:295px;
  }

  .vf-pdf-story-main{
    width:180px;
    height:240px;
  }

  .vf-pdf-story-left,
  .vf-pdf-story-right{
    width:118px;
    height:176px;
    opacity:.78;
  }
}


@media(max-width:760px){
  .vf-pdf-slider,
  .vf-pdf-slider-viewport,
  .vf-pdf-slider-track{
    touch-action: pan-y;
  }

  .vf-pdf-slider-viewport{
    cursor: grab;
  }
}


/* ==============================
   FAQ Padres - SEO / AEO
   ============================== */

.vf-pdf-faq{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(230,0,126,.10), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,169,183,.12), transparent 36%),
    #f8f8fc;
  overflow:hidden;
}

.vf-pdf-faq:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.74),rgba(255,255,255,.28));
  pointer-events:none;
}

.vf-pdf-faq .vf-container{
  position:relative;
  z-index:2;
}

.vf-pdf-faq-heading{
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
}

.vf-pdf-faq-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0 0 12px;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(82,40,111,.09);
  color:var(--vf-purple);
  font-size:.78rem;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.vf-pdf-faq-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:34px;
  align-items:start;
}

.vf-pdf-faq-intro{
  position:sticky;
  top:calc(var(--vf-header-height) + 28px);
}

.vf-pdf-faq-card-main{
  position:relative;
  overflow:hidden;
  padding:34px 30px;
  border-radius:28px;
  color:#fff;
  background:linear-gradient(135deg,var(--vf-purple),var(--vf-pink));
  box-shadow:0 24px 55px rgba(82,40,111,.22);
}

.vf-pdf-faq-card-main:after{
  content:"?";
  position:absolute;
  right:-18px;
  bottom:-62px;
  color:rgba(255,255,255,.13);
  font-size:12rem;
  line-height:1;
  font-weight:900;
}

.vf-pdf-faq-card-main span{
  position:relative;
  z-index:1;
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.vf-pdf-faq-card-main h3{
  position:relative;
  z-index:1;
  margin:0 0 12px;
  font-size:1.85rem;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:600;
}

.vf-pdf-faq-card-main p{
  position:relative;
  z-index:1;
  margin:0 0 22px;
  color:rgba(255,255,255,.88);
  font-size:1rem;
  line-height:1.62;
}

.vf-pdf-faq-card-main .vf-pdf-btn{
  position:relative;
  z-index:1;
  background:#fff;
  color:var(--vf-purple);
  box-shadow:0 16px 30px rgba(0,0,0,.14);
}

.vf-pdf-faq-list{
  display:grid;
  gap:14px;
}

.vf-pdf-faq-item{
  border-radius:20px;
  background:#fff;
  box-shadow:0 14px 34px rgba(20,20,40,.10);
  border:1px solid rgba(82,40,111,.08);
  overflow:hidden;
}

.vf-pdf-faq-item summary{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px 58px 22px 24px;
  color:var(--vf-purple);
  font-size:1.04rem;
  line-height:1.28;
  font-weight:800;
  cursor:pointer;
  list-style:none;
}

.vf-pdf-faq-item summary::-webkit-details-marker{
  display:none;
}

.vf-pdf-faq-item summary:after{
  content:"+";
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--vf-cyan),var(--vf-blue));
  color:#fff;
  font-size:1.2rem;
  line-height:1;
  font-weight:800;
  transition:.22s ease;
}

.vf-pdf-faq-item[open] summary:after{
  content:"–";
  background:linear-gradient(135deg,var(--vf-pink),var(--vf-purple));
}

.vf-pdf-faq-answer{
  padding:0 24px 24px;
}

.vf-pdf-faq-answer p{
  margin:0;
  color:#555563;
  font-size:.98rem;
  line-height:1.68;
}

.vf-pdf-faq-item[open]{
  border-color:rgba(230,0,126,.22);
}

.vf-pdf-faq-item[open] summary{
  color:var(--vf-pink);
}

@media(max-width:980px){
  .vf-pdf-faq-layout{
    grid-template-columns:1fr;
    gap:24px;
  }

  .vf-pdf-faq-intro{
    position:relative;
    top:auto;
  }

  .vf-pdf-faq-card-main{
    text-align:center;
  }

  .vf-pdf-faq-card-main .vf-pdf-btn{
    width:auto;
  }
}

@media(max-width:760px){
  .vf-pdf-faq{
    padding-top:62px;
    padding-bottom:62px;
  }

  .vf-pdf-faq-eyebrow{
    font-size:.76rem;
    line-height:1.25;
    text-align:center;
  }

  .vf-pdf-faq-heading p{
    font-size:1.05rem;
    line-height:1.6;
  }

  .vf-pdf-faq-card-main{
    padding:28px 22px;
    border-radius:24px;
    text-align:left;
  }

  .vf-pdf-faq-card-main h3{
    font-size:1.65rem;
    line-height:1.1;
  }

  .vf-pdf-faq-card-main p{
    font-size:1.04rem;
    line-height:1.62;
  }

  .vf-pdf-faq-card-main .vf-pdf-btn{
    width:100%;
  }

  .vf-pdf-faq-list{
    gap:13px;
  }

  .vf-pdf-faq-item{
    border-radius:18px;
  }

  .vf-pdf-faq-item summary{
    padding:20px 54px 20px 20px;
    font-size:1.08rem;
    line-height:1.32;
  }

  .vf-pdf-faq-item summary:after{
    right:18px;
    width:30px;
    height:30px;
  }

  .vf-pdf-faq-answer{
    padding:0 20px 22px;
  }

  .vf-pdf-faq-answer p{
    font-size:1.04rem;
    line-height:1.66;
  }
}

@media(max-width:390px){
  .vf-pdf-faq-card-main{
    padding:25px 20px;
  }

  .vf-pdf-faq-card-main h3{
    font-size:1.5rem;
  }

  .vf-pdf-faq-item summary{
    font-size:1.02rem;
  }

  .vf-pdf-faq-answer p{
    font-size:1rem;
  }
}


.vf-header-pro-dropdown{
  position:relative;
}

.vf-header-pro-dropbtn{
  display:flex;
  align-items:center;
  gap:6px;
  padding:13px 17px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:#52286f;
  font-family:inherit;
  font-size:.86rem;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.vf-header-pro-dropdown:hover .vf-header-pro-dropbtn,
.vf-header-pro-dropdown.vf-submenu-open .vf-header-pro-dropbtn{
  background:#e6007e;
  color:#fff;
}

.vf-header-pro-dropbtn span{
  font-size:.9rem;
  line-height:1;
}

.vf-header-pro-submenu{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  width:300px;
  padding:10px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 60px rgba(20,20,40,.18);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,8px);
  transition:.22s ease;
  z-index:10020;
}

.vf-header-pro-submenu:before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  width:18px;
  height:18px;
  background:#fff;
  transform:translateX(-50%) rotate(45deg);
}

.vf-header-pro-dropdown:hover .vf-header-pro-submenu,
.vf-header-pro-dropdown.vf-submenu-open .vf-header-pro-submenu{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}

.vf-header-pro-submenu a{
  position:relative;
  z-index:1;
  display:block;
  padding:14px 15px;
  border-radius:16px;
  color:var(--vf-purple);
  transition:.2s ease;
}

.vf-header-pro-submenu a:hover{
  background:linear-gradient(90deg,rgba(82,40,111,.08),rgba(230,0,126,.08));
  color:var(--vf-pink);
}

.vf-header-pro-submenu strong{
  display:block;
  font-size:.92rem;
  line-height:1.15;
}

.vf-header-pro-submenu small{
  display:block;
  margin-top:3px;
  color:#737382;
  font-size:.72rem;
  line-height:1.25;
}

.vf-header-pro-submenu a:hover small{
    color:#fff;
}


@media(max-width:1180px){

  .vf-header-pro-dropdown{
    width:100%;
  }

  .vf-header-pro-dropbtn{
    width:100%;
    justify-content:center;
    padding:14px;
    font-size:1rem;
    background:#fff;
  }

  .vf-header-pro-submenu{
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    margin-top:6px;
    padding:8px;
    border-radius:18px;
    box-shadow:none;
    background:#fff;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
  }

  .vf-header-pro-submenu:before{
    display:none;
  }

  .vf-header-pro-dropdown.vf-submenu-open .vf-header-pro-submenu{
    display:block;
    transform:none;
  }

  .vf-header-pro-submenu a{
    text-align:center;
    padding:13px 12px;
    background:#f7f7fb;
    margin-bottom:6px;
  }

  .vf-header-pro-submenu a:last-child{
    margin-bottom:0;
  }

}


.vf-footer-2026{
  background:#101014;
  color:#fff;
}

.vf-footer-main{
  padding:64px 0 42px;
}

.vf-footer-grid{
  display:grid;
  grid-template-columns:1.3fr repeat(4,1fr);
  gap:34px;
}

.vf-footer-brand img{
  width:210px;
  margin-bottom:18px;
  /*filter:brightness(0) invert(1);*/
}

.vf-footer-brand p{
  margin:0 0 14px;
  color:rgba(255,255,255,.72);
  font-size:.95rem;
  line-height:1.62;
}

.vf-footer-brand strong{
  color:#fff;
  font-size:1rem;
}

.vf-footer-col h3,
.vf-footer-locations h3{
  margin:0 0 14px;
  color:#fff;
  font-size:1rem;
}

.vf-footer-col a{
  display:block;
  margin-bottom:9px;
  color:rgba(255,255,255,.68);
  font-size:.88rem;
  line-height:1.35;
}

.vf-footer-col a:hover{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}

.vf-footer-locations{
  padding:36px 0;
  background:#171721;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.vf-footer-location-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.vf-footer-location-grid article{
  padding:22px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
}

.vf-footer-location-grid p{
  margin:0 0 8px;
  color:rgba(255,255,255,.68);
  font-size:.86rem;
  line-height:1.5;
}

.vf-footer-bottom{
  padding:18px 0;
}

.vf-footer-bottom .vf-container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.72);
  font-size:.82rem;
}

@media(max-width:980px){
  .vf-footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .vf-footer-brand{
    grid-column:1 / -1;
  }

  .vf-footer-location-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .vf-footer-main{
    padding:48px 0 30px;
  }

  .vf-footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .vf-footer-brand img{
    width:190px;
  }

  .vf-footer-brand p,
  .vf-footer-col a,
  .vf-footer-location-grid p{
    font-size:1rem;
  }

  .vf-footer-col h3,
  .vf-footer-locations h3{
    font-size:1.15rem;
  }

  .vf-footer-bottom .vf-container{
    flex-direction:column;
    text-align:center;
    gap:8px;
  }
}


/* ==============================
   Botón FrankyStore Header
   ============================== */

.vf-header-pro-store-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:11px 17px 11px 13px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--vf-pink),var(--vf-purple));
  font-size:.82rem;
  line-height:1;
  font-weight:900;
  box-shadow:0 14px 30px rgba(230,0,126,.22);
  transition:.25s ease;
  white-space:nowrap;
}

.vf-header-pro-store-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(230,0,126,.32);
}

.vf-header-pro-store-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--vf-pink);
  flex:0 0 28px;
}

.vf-header-pro-store-icon svg{
  width:21px;
  height:21px;
  display:block;
}

/* Ajuste para evitar saturación en pantallas medianas */
@media(max-width:1280px){
  .vf-header-pro-store-btn{
    padding:10px 14px 10px 11px;
    font-size:.78rem;
  }

  .vf-header-pro-store-icon{
    width:26px;
    height:26px;
    flex-basis:26px;
  }

  .vf-header-pro-store-icon svg{
    width:20px;
    height:20px;
  }
}

/* En tablet, mantenemos el botón visible pero compacto */
@media(max-width:1180px){
  .vf-header-pro-store-btn{
    min-height:42px;
    padding:10px 14px 10px 11px;
  }
}

/* En celular: mostrar solo ícono para que no se sature el header */
@media(max-width:760px){
  .vf-header-pro-store-btn{
    width:42px;
    height:42px;
    min-height:42px;
    padding:0;
    border-radius:14px;
    gap:0;
  }

  .vf-header-pro-store-btn > span:last-child{
    display:none;
  }

  .vf-header-pro-store-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--vf-pink),var(--vf-purple));
    color:#fff;
    flex:0 0 42px;
  }

  .vf-header-pro-store-icon svg{
    width:24px;
    height:24px;
  }
}

@media(max-width:390px){
  .vf-header-pro-store-btn,
  .vf-header-pro-store-icon{
    width:39px;
    height:39px;
    min-height:39px;
    flex-basis:39px;
  }

  .vf-header-pro-store-icon svg{
    width:22px;
    height:22px;
  }
}


/* ==============================
   Experiencia Viktor Frankl
   Copiado desde Conócenos 2026
   Seguro para Index
================================= */

.vf-con-eyebrow{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--vf-pink);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.vf-con-experience{
  background:#fff;
}

.vf-con-experience-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:64px;
  align-items:center;
}

.vf-con-experience-img img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:60px 18px 60px 18px;
  box-shadow:0 18px 40px rgba(20,20,40,.13);
}

.vf-con-experience-copy h2{
  margin:0 0 16px;
  color:#292933;
  font-size:clamp(2.4rem,4.8vw,3rem);
  line-height:1;
  letter-spacing:-.055em;
  font-weight:400;
}

.vf-con-experience-copy p{
  max-width:760px;
  margin:0 0 13px;
  color:#555563;
  font-size:1.02rem;
  line-height:1.65;
}

.vf-con-checks{
  margin:20px 0;
}

.vf-con-checks ul{
  margin:8px 0 16px;
  padding:0;
  list-style:none;
}

.vf-con-checks li{
  position:relative;
  margin:8px 0;
  padding-left:24px;
  color:#555563;
  line-height:1.48;
}

.vf-con-checks li:before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--vf-pink);
}

@media(max-width:900px){
  .vf-con-experience-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .vf-con-experience-img{
    max-width:520px;
    margin:auto;
  }

  .vf-con-experience-copy h2{
    font-size:clamp(2.05rem,8vw,3rem);
  }
}

@media(max-width:640px){
  .vf-con-experience-copy h2{
    font-size:clamp(2.15rem,10vw,2.75rem);
    line-height:1.06;
  }

  .vf-con-experience-copy p,
  .vf-con-checks li{
    font-size:1.06rem;
    line-height:1.62;
  }

  .vf-con-experience-img img{
    height:300px;
    border-radius:34px 16px 34px 16px;
  }

  .vf-con-checks ul{
    margin-bottom:18px;
  }
}



.vf-con-sedes{padding:48px 0 64px;background:#fff;text-align:center}
.vf-con-sedes h2{margin:0 0 18px;color:#292933;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:400;letter-spacing:-.04em}
.vf-con-sedes-actions{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}
.vf-con-sedes-actions a{display:inline-flex;min-width:145px;align-items:center;justify-content:center;padding:12px 24px;border-radius:999px;background:var(--vf-pink);color:#fff;font-weight:900;box-shadow:0 12px 24px rgba(230,0,126,.18)}
.vf-con-sedes-actions a:nth-child(1){background:var(--vf-blue)}
.vf-con-sedes-actions a:nth-child(2){background:var(--vf-purple)}




/*FLIP SEDES*/
.vf-sede-schedule-flip{
  width:100%;
  min-height:280px;
  perspective:1000px;
  cursor:pointer;
}

.vf-sede-schedule-card{
  position:relative;
  width:100%;
  height:100%;
  min-height:280px;
  transform-style:preserve-3d;
  transition:transform .6s ease;
}

.vf-sede-schedule-flip:hover .vf-sede-schedule-card,
.vf-sede-schedule-flip:focus-within .vf-sede-schedule-card,
.vf-sede-schedule-flip.is-flipped .vf-sede-schedule-card{
  transform:rotateY(180deg);
}

.vf-sede-schedule-face{
  position:absolute;
  inset:0;
  backface-visibility:hidden;
  border-radius:24px;
  overflow:hidden;
}

.vf-sede-schedule-front img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.vf-sede-schedule-back{
  transform:rotateY(180deg);
}

.vf-sede-schedule-back .vf-sede-schedule{
  width:100%;
  height:100%;
  min-height:280px;
}

.vf-head-school{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    margin-top:32px;
}

.vf-head-school img{
    width:134px;
    height:134px;

    border-radius:50%;
    object-fit:cover;

    border:4px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

    flex-shrink:0;
}

.vf-head-school-info{
    display:flex;
    flex-direction:column;
    text-align:left;
}

.vf-head-school-info span{
    font-size:.82rem;
    color:rgba(255,255,255,.85);
    text-transform:uppercase;
    letter-spacing:.08em;
}

.vf-head-school-info strong{
    margin-top:4px;
    font-size:1.28rem;
    font-weight:700;
    color:#fff;
}

@media (max-width:640px){

    .vf-head-school{
        flex-direction:column;
        text-align:center;
        gap:14px;
    }

    .vf-head-school-info{
        text-align:center;
    }

}



/* ==============================
   Preview Blog Home 2026
   Seguro para portada
============================== */

.vf-home-blog{
  background:
    radial-gradient(circle at top left, rgba(230,0,126,.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,169,183,.10), transparent 36%),
    #fff;
  overflow:hidden;
}

.vf-home-blog-slider .vf-pdf-slider-viewport{
  overflow:hidden;
  padding:8px 0 24px;
}

.vf-home-blog-slider .vf-pdf-slider-track{
  gap:34px;
  padding:18px 20px 28px;
  align-items:stretch;
}

.vf-home-blog-card{
  flex:0 0 calc((100% - 68px)/3);
  background:#fff;
  box-shadow:0 18px 38px rgba(20,20,40,.13);
  transition:.25s ease;
  display:flex;
  min-height:100%;
}

.vf-home-blog-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 48px rgba(20,20,40,.17);
}

.vf-home-blog-card a{
  display:flex;
  flex-direction:column;
  width:100%;
  height:100%;
}

.vf-home-blog-img{
  height:210px;
  background:#ddd;
  overflow:hidden;
  flex:0 0 auto;
}

.vf-home-blog-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s ease;
}

.vf-home-blog-card:hover .vf-home-blog-img img{
  transform:scale(1.04);
}

.vf-home-blog-content{
  position:relative;
  flex:1;
  display:flex;
  flex-direction:column;
  padding:20px 22px 28px;
  color:#fff;
}

.vf-home-blog-content span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.86);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.vf-home-blog-content h3{
  margin:0 0 12px;
  color:#fff;
  font-size:1.25rem;
  line-height:1.12;
  font-weight:500;
  letter-spacing:-.035em;
}

.vf-home-blog-content p{
  margin:0 0 22px;
  color:rgba(255,255,255,.86);
  font-size:.9rem;
  line-height:1.55;
}

.vf-home-blog-content small {
    margin-top: auto;
    align-self: center;
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: #fff;
    color: #262630;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.vf-home-blog-pink .vf-home-blog-content{
  background:linear-gradient(135deg,#e6007e,#aa3ca0);
}

.vf-home-blog-blue .vf-home-blog-content{
  background:linear-gradient(135deg,#2d54ad,#c23a9d);
}

.vf-home-blog-red .vf-home-blog-content{
  background:linear-gradient(135deg,#ef1551,#52286f);
}

.vf-home-blog-aqua .vf-home-blog-content{
  background:linear-gradient(135deg,#2d54ad,#00a9b7);
}

.vf-home-blog-green .vf-home-blog-content{
  background:linear-gradient(135deg,#7bb925,#00a9b7);
}

.vf-home-blog-purple .vf-home-blog-content{
  background:linear-gradient(135deg,#e6007e,#52286f);
}

.vf-home-blog-action{
  display:flex;
  justify-content:center;
  margin-top:18px;
}

.vf-home-blog .vf-pdf-slider-btn{
  color:#858592;
  background:#fff;
}

.vf-home-blog .vf-pdf-prev{
  left:-48px;
}

.vf-home-blog .vf-pdf-next{
  right:-48px;
}

@media(max-width:1180px){
  .vf-home-blog-card{
    flex-basis:calc((100% - 34px)/2);
  }
}

@media(max-width:760px){
  .vf-home-blog-slider .vf-pdf-slider-viewport{
    padding:6px 0 20px;
  }

  .vf-home-blog-slider .vf-pdf-slider-track{
    gap:18px;
    padding:10px 4px 24px;
  }

  .vf-home-blog-card{
    flex-basis:100%;
    border-radius:22px;
    overflow:hidden;
  }

  .vf-home-blog-img{
    height:240px;
  }

  .vf-home-blog-content{
    min-height:230px;
    padding:22px;
  }

  .vf-home-blog-content h3{
    font-size:1.42rem;
    line-height:1.18;
  }

  .vf-home-blog-content p{
    font-size:1.04rem;
    line-height:1.62;
  }

  .vf-home-blog-content small{
    font-size:.9rem;
    padding:10px 20px;
  }

  .vf-home-blog-action .vf-pdf-btn{
    width:100%;
  }
}



/* ==============================
   LinkedIn Header 2026
   ============================== */

.vf-header-pro-linkedin{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  transition:transform .25s ease, box-shadow .25s ease;
}

.vf-header-pro-linkedin img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

/* LinkedIn junto a Agenda una visita */
.vf-header-pro-linkedin-desktop {
    width: 38px;
    height: 46px;
    /* padding: 8px; */
    /* border-radius: 50%; */
    /* background: #fff; */
    /* box-shadow: 0 12px 28px rgba(10, 102, 194, .20); */
}

.vf-header-pro-linkedin-desktop:hover{
  transform:translateY(-2px);
  box-shadow:0 17px 34px rgba(10,102,194,.30);
}

/* La versión móvil permanece oculta en escritorio */
.vf-header-pro-linkedin-mobile{
  display:none;
}


/* Pantallas medianas */
@media(max-width:1280px){
  .vf-header-pro-linkedin-desktop{
    width:42px;
    height:42px;
    padding:7px;
  }
}


/* Tablet y celular */
@media(max-width:760px){

  /* Quitamos la versión de la fila principal */
  .vf-header-pro-linkedin-desktop{
    display:none;
  }

  /* La mostramos junto a las banderas */
  .vf-header-pro-linkedin-mobile{
    display:inline-flex;
    width:26px;
    height:26px;
    padding:3px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,.14);
  }

  /*
   Evita que la regla general de las banderas
   aplique borde y object-fit cover al icono.
  */
  .vf-header-pro-flags .vf-header-pro-linkedin-mobile img{
    width:100%;
    height:100%;
    border:0;
    border-radius:0;
    box-shadow:none;
    object-fit:contain;
  }
}


/* Celulares angostos */
@media(max-width:390px){
  .vf-header-pro-flags{
    gap:5px;
  }

  .vf-header-pro-flags img{
    width:24px;
    height:24px;
  }

  .vf-header-pro-flags .vf-header-pro-linkedin-mobile{
    width:24px;
    height:24px;
  }

  .vf-header-pro-flags .vf-header-pro-linkedin-mobile img{
    width:100%;
    height:100%;
  }
}


/* ==============================
   Asesor Pedagógico
   ============================== */

.vf-pdf-advisor{
    margin-top:22px;
    text-align:center;
}

.vf-pdf-advisor p{
    margin:0;
    color:#555563;
    font-size:1rem;
    line-height:1.55;
}

.vf-pdf-advisor strong{
    display:block;
    margin:6px 0 4px;
    color:var(--vf-purple);
    font-size:1.18rem;
    font-weight:700;
}

.vf-pdf-advisor span{
    display:block;
    color:var(--vf-cyan);
    font-weight:600;
}

@media(max-width:640px){

    .vf-pdf-advisor{
        margin-top:18px;
    }

    .vf-pdf-advisor p{
        font-size:1.05rem;
    }

    .vf-pdf-advisor strong{
        font-size:1.24rem;
    }
}


.pink{
  color: var(--vf-pink);
}


.textovercard {
    color: #fff;
    position: absolute;
    float: left;
    width: 100%;
    height: 100%;
    display: block;
    padding: 142px 0px 0px 0px;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.2;
}

.textovercard span{
  font-weight: 500;
}

.textovercard span.small{
  font-size: 16px;
}





.vf-blog-note-subscribe{
  display: none;
}