:root{
  --navy:#003d71;
  --navy-dark:#00305f;
  --gold:#b9985a;
  --gold-dark:#a8874b;
  --text:#12345a;
  --muted:#52677e;
  --light:#f6f7f8;
  --white:#fff;
  --line:#d7dde5;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:120px;
}

body{
  font-family:var(--sans);
  color:var(--text);
  background:#fff;
  margin:0;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
}

.container{
  max-width:1130px;
}

/* WordPress admin bar compatibility */
body.admin-bar .site-header{
  top:32px;
}

@media (max-width:782px){
  body.admin-bar .site-header{
    top:46px;
  }
}

/* Header */
.site-header{
  border-bottom:1px solid #edf0f3;
  position:sticky;
  top:0;
  z-index:1030;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  transition:box-shadow .25s ease;
}

.site-header.is-scrolled{
  box-shadow:0 4px 18px rgba(0,0,0,.1);
}

.top-strip{
  height:50px;
  font-size:10px;
  font-weight:700;
  color:var(--navy);
  text-transform:uppercase;
}

.top-strip .container,
.top-strip .row{
  height:100%;
}

.top-link{
  padding:0 14px;
  border-right:1px solid #dbe1e8;
  line-height:30px;
}

.top-link .ico{
  font-size:14px;
  margin-right:6px;
  color:var(--navy);
}

.social-dot{
  display:inline-flex;
  width:22px;
  height:22px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background:var(--gold);
  color:#fff;
  font-size:11px;
  font-weight:700;
  margin-left:7px;
  transition:background .2s ease, transform .2s ease;
}

.social-dot:hover{
  background:var(--navy);
  color:#fff;
  transform:translateY(-1px);
}

.main-nav{
  height:62px;
  padding:0;
}

.navbar-brand{
  position:relative;
  z-index:2;
}

.brand-logo,
.custom-logo{
  height:72px;
  width:auto;
  display:block;
  margin-top:-24px;
}

.navbar-nav .nav-link{
  font-size:12px;
  line-height:1;
  font-weight:800;
  text-transform:uppercase;
  color:var(--navy);
  padding:8px 20px!important;
  border-left:0;
  border-right:1px solid #dce2ea;
  transition:color .2s ease, background .2s ease;
}

.navbar-nav .nav-item:last-child .nav-link{
  border-right:0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current_page_item > .nav-link,
.navbar-nav .current-menu-ancestor > .nav-link,
.navbar-nav .current_page_ancestor > .nav-link{
  color:var(--gold);
}

.navbar-nav .nav-link:focus-visible,
.navbar-nav .sub-menu a:focus-visible,
.submenu-toggle:focus-visible{
  outline:2px solid rgba(185,152,90,.7);
  outline-offset:3px;
}

.submenu-toggle{
  display:none;
}

.navbar-toggler{
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:10px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--navy);
  background:var(--white);
  transition:border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.navbar-toggler .navbar-toggler-icon{
  width:18px;
  height:14px;
  background-image:none;
  position:relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after,
.navbar-toggler .navbar-toggler-icon{
  background-color:currentColor;
  border-radius:999px;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
}

.navbar-toggler .navbar-toggler-icon{
  height:2px;
}

.navbar-toggler .navbar-toggler-icon::before{
  top:-6px;
}

.navbar-toggler .navbar-toggler-icon::after{
  top:6px;
}

.navbar-toggler:focus{
  box-shadow:0 0 0 4px rgba(185,152,90,.14);
  border-color:rgba(185,152,90,.9);
}

@media (min-width:992px){
  .navbar-collapse{
    overflow:visible;
  }

  .navbar-nav{
    gap:0;
  }

  .navbar-nav .nav-link{
    font-size:11px;
    letter-spacing:.02em;
    padding:8px 18px!important;
  }

  .navbar-nav .menu-item-has-children{
    position:relative;
    z-index:30;
  }

  .navbar-nav .menu-item-has-children > .nav-link{
    display:flex;
    align-items:center;
    gap:6px;
    padding-right:18px!important;
  }

  .navbar-nav .menu-item-has-children > .nav-link::after{
    content:"";
    width:7px;
    height:7px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg) translateY(-2px);
    margin-left:4px;
    flex:0 0 auto;
    transition:transform .18s ease;
  }

  .navbar-nav .menu-item-has-children:hover > .nav-link::after,
  .navbar-nav .menu-item-has-children:focus-within > .nav-link::after{
    transform:rotate(225deg) translateY(-1px);
  }

  .navbar-nav .menu-item-has-children::after{
    content:"";
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:8px;
    background:transparent;
    z-index:1999;
    opacity:0;
    pointer-events:none;
  }

  .navbar-nav .menu-item-has-children:hover::after,
  .navbar-nav .menu-item-has-children:focus-within::after{
    opacity:1;
    pointer-events:auto;
  }

  .navbar-nav .sub-menu{
    position:absolute;
    top:calc(100% + 4px);
    left:0;
    min-width:245px;
    list-style:none;
    margin:0;
    padding:8px 0;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(215,221,229,.85);
    border-radius:8px;
    box-shadow:0 14px 28px rgba(0,48,95,.10);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(5px);
    transition:opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index:2000;
  }

  .navbar-nav .menu-item-has-children:hover > .sub-menu,
  .navbar-nav .menu-item-has-children:focus-within > .sub-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .navbar-nav .sub-menu li{
    margin:0;
    padding:0;
  }

  .navbar-nav .sub-menu a{
    display:block;
    padding:10px 22px;
    color:var(--navy);
    font-size:13px;
    font-weight:800;
    line-height:1.25;
    text-transform:uppercase;
    letter-spacing:.025em;
    white-space:nowrap;
    border-left:3px solid transparent;
    transition:color .16s ease, background .16s ease, border-color .16s ease;
  }

  .navbar-nav .sub-menu a:hover,
  .navbar-nav .sub-menu a:focus,
  .navbar-nav .sub-menu .current-menu-item > a{
    background:rgba(185,152,90,.055);
    color:var(--gold);
    border-left-color:var(--gold);
  }
}

/* Slider Revolution wrapper */
.home-slider,
.rev-slider-wrap{
  position:relative;
  overflow:hidden;
}

.home-slider .rev_slider_wrapper,
.rev-slider-wrap .rev_slider_wrapper{
  z-index:1;
}

/* Fallback hero */
.hero-section{
  height:426px;
  background-size:cover;
  background-position:center top;
  position:relative;
  overflow:hidden;
}

.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 31%, rgba(255,255,255,.28) 54%, rgba(255,255,255,0) 100%);
}

.hero-section .container{
  position:relative;
  z-index:1;
}

.hero-copy{
  padding-top:8px;
  max-width:430px;
}

.hero-copy h1{
  font-family:var(--serif);
  font-size:54px;
  line-height:.92;
  letter-spacing:-1px;
  color:var(--navy-dark);
  margin-bottom:20px;
}

.hero-copy h1 em{
  display:inline-block;
  color:var(--gold);
  font-weight:400;
  font-style:italic;
  font-size:.9em;
}

.hero-copy p{
  font-family:var(--serif);
  color:#173b63;
  font-size:17px;
  line-height:1.25;
  margin-bottom:22px;
}

/* Buttons */
.btn{
  border-radius:0;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.2px;
  padding:13px 24px;
}

.btn span{
  font-size:16px;
  line-height:0;
  margin-left:10px;
}

.btn-primary-site{
  background:var(--navy);
  color:#fff;
  border:2px solid var(--navy);
}

.btn-primary-site:hover{
  background:var(--navy-dark);
  border-color:var(--navy-dark);
  color:#fff;
}

.btn-outline-site{
  background:#fff;
  color:var(--navy);
  border:2px solid var(--navy);
}

.btn-outline-site:hover{
  background:var(--navy);
  color:#fff;
}

.btn-outline-site.dark{
  background:transparent;
}

.btn-gold{
  background:var(--gold);
  color:#fff;
  border:2px solid var(--gold);
}

.btn-gold:hover{
  background:var(--gold-dark);
  border-color:var(--gold-dark);
  color:#fff;
}

/* Highlights */
.highlights-bar{
  background:var(--navy);
  color:#fff;
  padding:30px 0;
}

.highlights-bar .container{
  max-width:1200px;
}

.highlight-item{
  min-height:96px;
  display:flex;
  align-items:center;
  gap:18px;
  padding:10px 32px;
  border-right:1px solid rgba(255,255,255,.55);
}

.highlight-icon{
  font-size:44px;
  line-height:1;
  color:#fff;
  font-family:var(--serif);
  width:48px;
  flex:0 0 48px;
  text-align:center;
  opacity:.95;
}

.highlight-item h3{
  font-size:12px;
  line-height:1.05;
  font-weight:800;
  margin:0 0 6px;
  color:#fff;
  text-transform:uppercase;
}

.highlight-item p{
  font-size:12px;
  line-height:1.25;
  margin:0;
  color:#fff;
  opacity:.92;
}

/* Sections */
.section{
  padding:72px 0;
}

.rector-section{
  background:#fff;
}

.rector-card{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,.18);
  max-width:590px;
  margin:auto;
  background:#eef3f7;
  min-height:320px;
}

.rector-card img{
  width:100%;
  display:block;
  min-height:320px;
  object-fit:cover;
}

.rector-placeholder{
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:linear-gradient(180deg, #eef3f7 0%, #e4ebf2 100%);
  text-align:center;
}

.rector-placeholder-inner{
  max-width:280px;
}

.rector-placeholder p{
  margin:0 0 8px;
  color:var(--navy-dark);
  font-family:var(--serif);
  font-size:24px;
  line-height:1.1;
}

.rector-placeholder small{
  display:block;
  color:rgba(18,52,90,.72);
  font-size:12px;
  line-height:1.45;
}

.play-button{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:var(--navy);
  font-size:26px;
  box-shadow:0 5px 20px rgba(0,0,0,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left:4px;
  transition:background .2s ease, color .2s ease;
}

.play-button:hover{
  background:var(--gold);
  color:#fff;
}

.mission-box{
  max-width:395px;
  margin-left:auto;
}

h1,
h2,
h3,
h4,
h5,
h6{
  color:var(--navy-dark);
}

h2{
  font-family:var(--serif);
  text-transform:uppercase;
  color:var(--navy-dark);
  font-size:34px;
  line-height:1.05;
  margin-bottom:20px;
}

.title-line{
  width:52px;
  height:2px;
  background:var(--gold);
  margin:0 0 22px;
}

.title-line.light{
  background:rgba(255,255,255,.8);
}

.mission-box p,
.news-heading p{
  font-family:var(--serif);
  font-size:14px;
  line-height:1.45;
  color:#25496c;
  margin-bottom:28px;
}

/* Admission */
.admission-section{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
  padding:62px 0 64px;
  color:#fff;
}

.admission-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,55,105,.3);
}

.admission-section .container{
  position:relative;
  z-index:1;
}

.admission-copy h2{
  color:#fff;
  font-size:32px;
  margin-bottom:18px;
}

.admission-copy p{
  font-family:var(--serif);
  font-size:14px;
  line-height:1.45;
  margin-bottom:25px;
  max-width:330px;
  color:#fff;
}

.admission-steps{
  position:relative;
}

.step-card{
  color:#fff;
  position:relative;
  padding:0 10px;
}

.step-icon{
  width:76px;
  height:76px;
  background:var(--gold);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
  font-size:34px;
  font-weight:700;
  font-family:var(--serif);
}

.step-number{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border:2px solid rgba(255,255,255,.85);
  border-radius:50%;
  margin:0 auto 10px;
  font-size:12px;
  font-weight:800;
}

.step-card h3{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:8px;
  color:#fff;
}

.step-card p{
  font-size:12px;
  line-height:1.25;
  margin:0;
  color:rgba(255,255,255,.9);
}

/* News */
.news-section{
  background:#f7f7f7;
  padding-top:76px;
  padding-bottom:82px;
}

.news-heading h2{
  font-size:31px;
}

.news-card{
  background:#fff;
  border-radius:4px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  height:100%;
  transition:transform .2s ease, box-shadow .2s ease;
}

.news-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.news-image{
  height:128px;
  position:relative;
  overflow:hidden;
  display:block;
  background:#edf2f7;
}

.news-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.news-image span{
  position:absolute;
  left:10px;
  top:10px;
  background:#fff;
  color:var(--navy);
  text-transform:uppercase;
  font-size:10px;
  font-weight:800;
  padding:7px 9px;
}

.news-image-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, #f3f6f9 0%, #e9eef4 100%);
  border-bottom:1px solid rgba(0,61,113,.08);
}

.news-image-placeholder span{
  position:static;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:96px;
  min-height:34px;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(0,61,113,.10);
  border-radius:999px;
  color:var(--navy);
  font-size:11px;
  letter-spacing:.05em;
}

.news-body{
  padding:17px 16px 20px;
}

.news-body h3{
  font-family:var(--serif);
  font-size:15px;
  line-height:1.2;
  color:var(--navy-dark);
  font-weight:700;
  margin-bottom:8px;
}

.news-body p{
  font-size:12px;
  line-height:1.3;
  color:#425b73;
  margin-bottom:14px;
}

.news-category{
  color:var(--gold);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.news-body a{
  text-transform:uppercase;
  color:var(--navy);
  font-size:11px;
  font-weight:800;
}

.news-body a:hover{
  color:var(--gold);
}

/* WordPress content */
.entry-content{
  font-size:16px;
  line-height:1.65;
}

.entry-content img{
  max-width:100%;
  height:auto;
}

.entry-content p{
  margin-bottom:1.2rem;
}

.entry-content ul,
.entry-content ol{
  margin-bottom:1.2rem;
}

.home-main{
  overflow:hidden;
}

.elementor-page-main{
  overflow:hidden;
}

.home-content{
  width:100%;
}

.elementor-page-main{
  width:100%;
}

.home-content > section{
  width:100%;
}

.home-content > p:empty{
  display:none;
}

.home-content .alignfull{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}

.elementor-page-main .elementor-section,
.elementor-page-main .e-con,
.home-content .elementor-section,
.home-content .e-con{
  position:relative;
}

.elementor-widget-text-editor p:last-child{
  margin-bottom:0;
}

.entry-title{
  font-family:var(--serif);
  color:var(--navy-dark);
}

.post-meta a{
  color:var(--navy);
}

.post-meta a:hover{
  color:var(--gold);
}

.wp-caption{
  max-width:100%;
}

.wp-caption-text{
  font-size:13px;
  color:var(--muted);
  margin-top:6px;
}

/* Contact Form 7 */
.wpcf7 form{
  margin:0;
}

.wpcf7 label{
  display:block;
  color:var(--navy-dark);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  margin-bottom:8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:12px 14px;
  border-radius:0;
  font-size:15px;
  outline:none;
}

.wpcf7 textarea{
  min-height:130px;
  resize:vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(185,152,90,.16);
}

.wpcf7 input[type="submit"]{
  background:var(--navy);
  color:#fff;
  border:2px solid var(--navy);
  border-radius:0;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
  letter-spacing:.2px;
  padding:13px 24px;
  cursor:pointer;
}

.wpcf7 input[type="submit"]:hover{
  background:var(--navy-dark);
  border-color:var(--navy-dark);
}

.wpcf7-not-valid-tip{
  font-size:12px;
  margin-top:5px;
}

.wpcf7 form .wpcf7-response-output{
  margin:18px 0 0;
  padding:12px 14px;
  border-radius:0;
}

/* Footer */
.site-footer{
  background-size:cover;
  background-position:center;
  position:relative;
  color:#fff;
  padding:72px 0 18px;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,55,105,.1);
}

.site-footer .container{
  position:relative;
  z-index:1;
}

.footer-main{
  min-height:178px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:30px;
  min-height:158px;
  padding-right:34px;
  border-right:1px solid rgba(255,255,255,.36);
}

.footer-emblem{
  width:110px;
  max-width:34%;
  height:auto;
  flex:0 0 auto;
}

.footer-quote-wrap{
  min-width:0;
}

.footer-brand blockquote{
  font-family:var(--serif);
  color:#fff;
  font-style:italic;
  font-size:22px;
  line-height:1.25;
  margin:0;
  letter-spacing:.01em;
}

.site-footer a{
  color:rgba(255,255,255,.92);
}

.site-footer a:hover,
.site-footer a:focus{
  color:var(--gold);
}

.footer-address a,
.footer-email a{
  color:rgba(255,255,255,.92);
}

.footer-address a:hover,
.footer-email a:hover{
  color:var(--gold);
}

.recent-news-empty{
  margin:0;
  color:var(--muted);
}

.italian-line{
  display:flex;
  gap:8px;
  margin-top:18px;
}

.italian-line span{
  display:block;
  width:44px;
  height:4px;
  border-radius:999px;
}

.italian-line span:nth-child(1){
  background:#199c5b;
}

.italian-line span:nth-child(2){
  background:#fff;
}

.italian-line span:nth-child(3){
  background:#c9242f;
}

.footer-address{
  min-height:158px;
  padding:8px 34px 0 34px;
  margin:0;
  font-style:normal;
  border-right:1px solid rgba(255,255,255,.32);
}

.footer-address-last{
  border-right:0;
  padding-right:0;
}

.footer-address h3{
  font-size:14px;
  line-height:1.2;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:14px;
  color:#fff;
  letter-spacing:.02em;
}

.pin-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin-right:8px;
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  font-size:13px;
  line-height:1;
}

.footer-address p{
  font-size:13px;
  line-height:1.48;
  color:#fff;
  margin-bottom:13px;
}

.footer-address strong{
  font-weight:800;
}

.footer-email{
  word-break:break-word;
  margin-bottom:0!important;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.28);
  margin-top:46px;
  padding-top:18px;
  font-size:12px;
  color:#fff;
}

/* Bootstrap Icons integration */
.top-link .bi{
  font-size:14px;
  margin-right:7px;
  color:var(--navy);
  vertical-align:-1px;
}

.social-dot .bi{
  font-size:12px;
  line-height:1;
}

.btn .bi{
  font-size:13px;
  margin-left:9px;
  vertical-align:-1px;
}

.highlight-icon .bi{
  font-size:42px;
  line-height:1;
}

.play-button .bi{
  font-size:34px;
  line-height:1;
}

.step-icon .bi{
  font-size:34px;
  line-height:1;
}

.pin-icon .bi{
  font-size:13px;
  line-height:1;
}

.footer-bottom .social-dot{
  margin-left:8px;
}

/* AOS small correction */
[data-aos]{
  pointer-events:auto;
}

/* Responsive */
@media (max-width:991.98px){
  html{
    scroll-padding-top:82px;
  }

  .main-nav{
    height:auto;
    padding:8px 0;
  }

  .brand-logo,
  .custom-logo{
    height:58px;
    margin-top:0;
  }

  .navbar-collapse{
    margin-top:16px;
    padding:16px 0 10px;
    border-top:1px solid #edf0f3;
    background:#fff;
  }

  .navbar-nav{
    align-items:stretch!important;
    padding:0 4px;
  }

  .navbar-nav .nav-item{
    position:relative;
    border-bottom:1px solid #edf0f3;
  }

  .navbar-nav .nav-item:last-child{
    border-bottom:0;
  }

  .navbar-nav .nav-link{
    border:0;
    padding:18px 58px 18px 2px!important;
    min-height:58px;
    display:flex;
    align-items:center;
    letter-spacing:.045em;
  }

  .navbar-nav > .menu-item-has-children > .nav-link::after{
    display:none;
  }

  .submenu-toggle{
    position:absolute;
    top:8px;
    right:2px;
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(185,152,90,.55);
    border-radius:12px;
    background:#fff;
    color:var(--navy);
    transition:border-color .2s ease, color .2s ease, background .2s ease;
  }

  .submenu-toggle span{
    width:10px;
    height:10px;
    border-right:1.6px solid currentColor;
    border-bottom:1.6px solid currentColor;
    transform:rotate(45deg) translateY(-1px);
    transition:transform .2s ease;
  }

  .navbar-nav .menu-item-has-children.submenu-open > .nav-link,
  .navbar-nav .menu-item-has-children > .nav-link:hover,
  .navbar-nav .menu-item-has-children > .nav-link:focus{
    color:var(--gold);
  }

  .submenu-open > .submenu-toggle{
    color:var(--gold);
    border-color:rgba(185,152,90,.58);
    background:rgba(185,152,90,.10);
  }

  .submenu-open > .submenu-toggle span{
    transform:rotate(225deg) translateY(-1px);
  }

  .navbar-nav .sub-menu{
    display:none;
    position:static;
    min-width:0;
    margin:12px 0 16px;
    padding:6px 0;
    border-radius:12px;
    box-shadow:none;
    background:#f8f9fb;
    border:1px solid var(--line);
    overflow:hidden;
  }

  .navbar-nav .submenu-open > .sub-menu{
    display:block;
  }

  .navbar-nav .sub-menu li{
    border-bottom:1px solid rgba(215,221,229,.7);
  }

  .navbar-nav .sub-menu li:last-child{
    border-bottom:0;
  }

  .navbar-nav .sub-menu a{
    min-height:0;
    padding:14px 18px 14px 20px;
    color:var(--navy);
    font-size:14px;
    line-height:1.2;
    letter-spacing:.02em;
    display:flex;
    align-items:center;
  }

  .navbar-nav .sub-menu a:hover,
  .navbar-nav .sub-menu a:focus{
    color:var(--gold);
    background:rgba(255,255,255,.72);
  }

  .hero-section{
    height:auto;
    padding:70px 0;
    background-position:center;
  }

  .hero-copy h1{
    font-size:44px;
  }

  .highlights-bar{
    padding:14px 0;
  }

  .highlight-item{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.3);
    min-height:0;
    padding:20px 8px;
  }

  .mission-box{
    margin:0 auto;
    max-width:590px;
  }

  .footer-brand{
    border-right:0;
    padding-right:0;
    justify-content:center;
    min-height:auto;
  }

  .footer-address{
    border-right:0;
    padding:0;
    min-height:auto;
    text-align:center;
  }
}

@media (max-width:575.98px){
  .container{
    padding-left:24px;
    padding-right:24px;
  }

  .hero-copy h1{
    font-size:37px;
  }

  .hero-copy p{
    font-size:15px;
  }

  .section{
    padding:56px 0;
  }

  h2,
  .admission-copy h2{
    font-size:28px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

  .footer-brand{
    display:block;
    text-align:center;
  }

  .footer-emblem{
    max-width:none;
    width:96px;
  }

  .footer-brand blockquote{
    margin-top:18px;
    font-size:19px;
  }

  .italian-line{
    justify-content:center;
  }
}
/* =========================================================
   TEMPLATE WIDE
   ========================================================= */


.page-template-page-wide {
  overflow-x: hidden;
}

.page-template-page-wide .site,
.page-template-page-wide .site-content,
.page-template-page-wide .site-main,
.page-template-page-wide .content-area,
.page-template-page-wide .entry-content,
.page-template-page-wide .wide-page-editor-content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-template-page-wide .content-wrapper,
.page-template-page-wide .page-content {
  max-width: none;
}

.page-template-page-wide article,
.page-template-page-wide .entry-content > *:first-child {
  margin-top: 0;
}

.page-template-page-wide .entry-content > *:last-child {
  margin-bottom: 0;
}

/* Título superior de página */
.page-template-page-wide .wide-page-header {
  padding: 24px 0 0;
  background: #fff;
  border-top: 1px solid #f1f1f1;
}

.page-template-page-wide .wide-page-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.page-template-page-wide .entry-title {
  display: inline-block;
  position: relative;
  font-family: var(--serif);
  color: #12345c;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
}

.page-template-page-wide .entry-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: #c8a45d;
  margin-top: 12px;
}

/* =========================================================
   PARITÀ SCOLASTICA - ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.parita-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f4;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.parita-page * {
  box-sizing: border-box;
}

.parita-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.parita-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.parita-section {
  padding: 78px 0;
}

.parita-page > section:first-child {
  padding-top: 48px;
  padding-bottom: 82px;
}

.parita-section-soft {
  background: #f7f7f7;
}

.parita-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.parita-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.parita-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.parita-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.parita-title,
.parita-title-small,
.parita-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.parita-title {
  max-width: 520px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.parita-title-small {
  max-width: 640px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.parita-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.parita-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.parita-section-blue .parita-title-small,
.parita-section-blue .parita-text,
.parita-section-blue .parita-lead,
.parita-section-blue .parita-eyebrow {
  color: #fff;
}

.parita-section-blue .parita-text,
.parita-section-blue .parita-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.parita-intro-card {
  position: relative;
  max-width: 520px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.parita-intro-card::after {
  content: "Italia";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Fotos placeholder */

.parita-photo {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px;
}

.parita-photo span {
  max-width: 250px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

/* Reconocimiento */

.parita-stat {
  padding-top: 16px;
  border-top: 1px solid #d7dde5;
}

.parita-stat-number {
  display: block;
  color: var(--siv-gold);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.parita-stat-label {
  display: block;
  color: var(--siv-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.parita-benefit {
  position: relative;
  height: 100%;
  min-height: 210px;
  background: #fff;
  padding: 28px 26px 28px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.parita-benefit::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.parita-benefit h3 {
  position: relative;
  max-width: 210px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.parita-benefit p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.parita-blue-panel {
  background: var(--siv-blue);
}

.parita-photo-blue {
  min-height: 520px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
}

.parita-photo-blue span {
  color: rgba(255,255,255,.76);
}

.parita-blue-content {
  max-width: 590px;
  padding: 72px 64px;
}

.parita-title-line {
  position: relative;
  padding-left: 20px;
  margin: 26px 0;
}

.parita-title-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2px;
  height: calc(100% - 6px);
  background: var(--siv-gold);
}

.parita-italian-name {
  display: block;
  color: var(--siv-gold);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 6px;
}

.parita-badge {
  display: inline-block;
  background: #fff;
  color: var(--siv-blue);
  padding: 7px 10px;
  margin: 0 6px 8px 0;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
}

/* Scienze Umane */

.parita-subject {
  height: 72px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-red);
  color: var(--siv-blue);
  display: flex;
  align-items: center;
  padding: 18px 20px;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

/* Exámenes */

.parita-exam {
  position: relative;
  padding: 28px 0 28px 78px;
  border-bottom: 1px solid #dfe5ec;
}

.parita-exam:first-child {
  padding-top: 0;
}

.parita-exam:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.parita-exam-number {
  position: absolute;
  left: 0;
  top: 28px;
  width: 48px;
  height: 48px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.parita-exam:first-child .parita-exam-number {
  top: 0;
}

.parita-exam h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}

.parita-exam p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Universidades */

.parita-university {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  color: var(--siv-blue);
  padding: 18px 18px 18px 24px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.parita-university::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--siv-gold);
}

/* Cierre */

.parita-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.parita-final h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.parita-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Imágenes reales */

.parita-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #e0d8ca;
}

.parita-img-blue {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .parita-section {
    padding: 62px 0;
  }

  .parita-page > section:first-child {
    padding-top: 36px;
    padding-bottom: 62px;
  }

  .parita-title {
    font-size: 44px;
  }

  .parita-title-small {
    font-size: 34px;
  }

  .parita-intro-card {
    max-width: none;
  }

  .parita-photo,
  .parita-photo-blue,
  .parita-img,
  .parita-img-blue {
    min-height: 300px;
    height: 300px;
  }

  .parita-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .parita-benefit {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .parita-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .parita-section {
    padding: 52px 0;
  }

  .parita-title {
    font-size: 38px;
  }

  .parita-title-small {
    font-size: 30px;
  }

  .parita-lead {
    font-size: 15px;
  }

  .parita-text {
    font-size: 13.5px;
  }

  .parita-intro-card {
    padding: 28px 24px;
  }

  .parita-intro-card::after {
    font-size: 54px;
  }

  .parita-exam {
    padding: 78px 0 26px;
  }

  .parita-exam-number,
  .parita-exam:first-child .parita-exam-number {
    top: 18px;
  }

  .parita-final {
    padding: 58px 0;
  }
}
.parita-side-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.parita-side-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.parita-side-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 575.98px) {
  .parita-exam {
    padding: 28px 0;
  }

  .parita-exam:first-child {
    padding-top: 0;
  }

  .parita-exam:last-child {
    padding-bottom: 0;
  }

  .parita-exam-number {
    position: static;
    width: 42px;
    height: 34px;
    margin-bottom: 16px;
    background: var(--siv-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  .parita-exam:first-child .parita-exam-number {
    top: auto;
  }

  .parita-exam h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .parita-exam p {
    font-size: 16px;
    line-height: 1.65;
  }
}
/* =========================================================
   VIAJE DE ESTUDIOS - ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.viaje-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f4;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.viaje-page * {
  box-sizing: border-box;
}

.viaje-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.viaje-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.viaje-section {
  padding: 78px 0;
}

.viaje-section-soft {
  background: #f7f7f7;
}

.viaje-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.viaje-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.viaje-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.viaje-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.viaje-title,
.viaje-title-small,
.viaje-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.viaje-title {
  max-width: 560px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.viaje-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.viaje-title-small {
  max-width: 680px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.viaje-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.viaje-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.viaje-section-blue .viaje-title-small,
.viaje-section-blue .viaje-text,
.viaje-section-blue .viaje-lead,
.viaje-section-blue .viaje-eyebrow {
  color: #fff;
}

.viaje-section-blue .viaje-text,
.viaje-section-blue .viaje-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.viaje-intro-card {
  position: relative;
  max-width: 540px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.viaje-intro-card::after {
  content: "Italia";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Fotos placeholder */

.viaje-photo {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px;
}

.viaje-photo span {
  max-width: 250px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.viaje-photo-blue {
  min-height: 500px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
}

.viaje-photo-blue span {
  color: rgba(255,255,255,.76);
}

/* Objetivos */

.viaje-objective {
  position: relative;
  height: 100%;
  min-height: 190px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.viaje-objective::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.viaje-objective h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.viaje-objective p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Ruta */

.viaje-route-panel {
  background: var(--siv-blue);
}

.viaje-route-content {
  max-width: 600px;
  padding: 72px 64px;
}

.viaje-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.viaje-city {
  display: inline-block;
  background: #fff;
  color: var(--siv-blue);
  padding: 8px 12px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

/* Testimonios */

.viaje-testimonial {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  padding: 30px 28px;
  position: relative;
}

.viaje-testimonial::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 12px;
  color: rgba(185,152,90,.18);
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
}

.viaje-testimonial blockquote {
  position: relative;
  color: #25496c;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.viaje-testimonial cite {
  display: block;
  color: var(--siv-blue-dark);
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 800;
}

.viaje-testimonial span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Galería */

.viaje-gallery-item {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 18px;
}

/* Normativa */

.viaje-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.viaje-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.viaje-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 18px;
}

.viaje-button {
  display: inline-block;
  border: 2px solid var(--siv-blue);
  color: var(--siv-blue);
  background: transparent;
  padding: 12px 22px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.viaje-button:hover {
  background: var(--siv-blue);
  color: #fff;
}

/* Cierre */

.viaje-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.viaje-final h2 {
  max-width: 760px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.viaje-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Imágenes reales */

.viaje-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #e0d8ca;
}

.viaje-img-blue {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.viaje-gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media (max-width: 991.98px) {
  .viaje-section {
    padding: 62px 0;
  }

  .viaje-title {
    font-size: 44px;
  }

  .viaje-title-small {
    font-size: 34px;
  }

  .viaje-intro-card {
    max-width: none;
  }

  .viaje-photo,
  .viaje-photo-blue,
  .viaje-img,
  .viaje-img-blue {
    min-height: 300px;
    height: 300px;
  }

  .viaje-route-content {
    max-width: none;
    padding: 52px 34px;
  }

  .viaje-objective {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .viaje-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .viaje-section {
    padding: 52px 0;
  }

  .viaje-title {
    font-size: 38px;
  }

  .viaje-title-small {
    font-size: 30px;
  }

  .viaje-lead {
    font-size: 15px;
  }

  .viaje-text {
    font-size: 13.5px;
  }

  .viaje-intro-card {
    padding: 28px 24px;
  }

  .viaje-intro-card::after {
    font-size: 54px;
  }

  .viaje-testimonial {
    padding: 26px 24px;
  }

  .viaje-final {
    padding: 58px 0;
  }
}



/* =========================================================
   INTERCAMBIOS - ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.inter-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f4;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.inter-page * {
  box-sizing: border-box;
}

.inter-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.inter-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.inter-section {
  padding: 78px 0;
}

.inter-section-soft {
  background: #f7f7f7;
}

.inter-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.inter-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.inter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.inter-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.inter-title,
.inter-title-small,
.inter-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.inter-title {
  max-width: 580px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.inter-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.inter-title-small {
  max-width: 680px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.inter-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.inter-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.inter-section-blue .inter-title-small,
.inter-section-blue .inter-text,
.inter-section-blue .inter-lead,
.inter-section-blue .inter-eyebrow {
  color: #fff;
}

.inter-section-blue .inter-text,
.inter-section-blue .inter-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.inter-intro-card {
  position: relative;
  max-width: 540px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.inter-intro-card::after {
  content: "Scambio";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Fotos placeholder */

.inter-photo {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px;
}

.inter-photo span {
  max-width: 250px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.inter-photo-blue {
  min-height: 500px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
}

.inter-photo-blue span {
  color: rgba(255,255,255,.76);
}

/* Cards */

.inter-card {
  position: relative;
  height: 100%;
  min-height: 190px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.inter-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.inter-card h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.inter-card p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.inter-blue-panel {
  background: var(--siv-blue);
}

.inter-blue-content {
  max-width: 610px;
  padding: 72px 64px;
}

.inter-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.inter-badge {
  display: inline-block;
  background: #fff;
  color: var(--siv-blue);
  padding: 8px 12px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

/* Nota lateral */

.inter-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.inter-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.inter-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Testimonio */

.inter-quote {
  background: #fff;
  border: 1px solid #e4e9ef;
  padding: 38px 40px;
  position: relative;
}

.inter-quote::before {
  content: "“";
  position: absolute;
  right: 28px;
  top: 6px;
  color: rgba(185,152,90,.18);
  font-family: var(--serif);
  font-size: 100px;
  line-height: 1;
}

.inter-quote blockquote {
  position: relative;
  color: #25496c;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 22px;
}

.inter-quote cite {
  display: block;
  color: var(--siv-blue-dark);
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 800;
}

.inter-quote span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Experiencias */

.inter-experience {
  position: relative;
  padding: 26px 0 26px 76px;
  border-bottom: 1px solid #dfe5ec;
}

.inter-experience:first-child {
  padding-top: 0;
}

.inter-experience:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.inter-experience-number {
  position: absolute;
  left: 0;
  top: 26px;
  width: 46px;
  height: 46px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.inter-experience:first-child .inter-experience-number {
  top: 0;
}

.inter-experience h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}

.inter-experience p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Galería */

.inter-gallery-item {
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 18px;
}

/* Cierre */

.inter-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.inter-final h2 {
  max-width: 760px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.inter-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Imágenes reales */

.inter-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #e0d8ca;
}

.inter-img-blue {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.inter-gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media (max-width: 991.98px) {
  .inter-section {
    padding: 62px 0;
  }

  .inter-title {
    font-size: 44px;
  }

  .inter-title-small {
    font-size: 34px;
  }

  .inter-intro-card {
    max-width: none;
  }

  .inter-photo,
  .inter-photo-blue,
  .inter-img,
  .inter-img-blue {
    min-height: 300px;
    height: 300px;
  }

  .inter-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .inter-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .inter-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .inter-section {
    padding: 52px 0;
  }

  .inter-title {
    font-size: 38px;
  }

  .inter-title-small {
    font-size: 30px;
  }

  .inter-lead {
    font-size: 15px;
  }

  .inter-text {
    font-size: 13.5px;
  }

  .inter-intro-card {
    padding: 28px 24px;
  }

  .inter-intro-card::after {
    font-size: 52px;
  }

  .inter-quote {
    padding: 30px 26px;
  }

  .inter-experience {
    padding: 28px 0;
  }

  .inter-experience-number {
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
    background: transparent;
    color: var(--siv-gold);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .inter-experience:first-child .inter-experience-number {
    top: auto;
  }

  .inter-final {
    padding: 58px 0;
  }
}
/* =========================================================
   CONVENIOS Y BENEFICIOS - ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.conv-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f4;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.conv-page * {
  box-sizing: border-box;
}

.conv-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.conv-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.conv-section {
  padding: 78px 0;
}

.conv-section-soft {
  background: #f7f7f7;
}

.conv-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.conv-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.conv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.conv-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.conv-title,
.conv-title-small,
.conv-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.conv-title {
  max-width: 620px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.conv-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.conv-title-small {
  max-width: 700px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.conv-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.conv-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.conv-section-blue .conv-title-small,
.conv-section-blue .conv-text,
.conv-section-blue .conv-lead,
.conv-section-blue .conv-eyebrow {
  color: #fff;
}

.conv-section-blue .conv-text,
.conv-section-blue .conv-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.conv-intro-card {
  position: relative;
  max-width: 560px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.conv-intro-card::after {
  content: "Esame";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 68px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Foto placeholder */

.conv-photo {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px;
}

.conv-photo span {
  max-width: 250px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.conv-photo-blue {
  min-height: 500px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
}

.conv-photo-blue span {
  color: rgba(255,255,255,.76);
}

/* Beneficios */

.conv-card {
  position: relative;
  height: 100%;
  min-height: 190px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.conv-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.conv-card h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.conv-card p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.conv-blue-panel {
  background: var(--siv-blue);
}

.conv-blue-content {
  max-width: 610px;
  padding: 72px 64px;
}

.conv-condition {
  position: relative;
  padding-left: 20px;
  margin: 24px 0;
}

.conv-condition::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 2px;
  height: calc(100% - 6px);
  background: var(--siv-gold);
}

.conv-condition strong {
  display: block;
  color: var(--siv-gold);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Nota lateral */

.conv-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.conv-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.conv-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Universidades */

.conv-university {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  color: var(--siv-blue);
  padding: 28px 26px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.conv-university::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--siv-gold);
}

.conv-university h3 {
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 12px;
}

.conv-university p {
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 18px;
}

.conv-button {
  display: inline-block;
  border: 2px solid var(--siv-blue);
  color: var(--siv-blue);
  background: transparent;
  padding: 11px 18px;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.conv-button:hover {
  background: var(--siv-blue);
  color: #fff;
}

/* Importante */

.conv-disclaimer {
  background: #fff;
  border: 1px solid #e4e9ef;
  padding: 32px 34px;
  border-left: 3px solid var(--siv-red);
}

.conv-disclaimer h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 14px;
}

.conv-disclaimer p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Cierre */

.conv-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.conv-final h2 {
  max-width: 780px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.conv-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Imágenes reales */

.conv-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #e0d8ca;
}

.conv-img-blue {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .conv-section {
    padding: 62px 0;
  }

  .conv-title {
    font-size: 44px;
  }

  .conv-title-small {
    font-size: 34px;
  }

  .conv-intro-card {
    max-width: none;
  }

  .conv-photo,
  .conv-photo-blue,
  .conv-img,
  .conv-img-blue {
    min-height: 300px;
    height: 300px;
  }

  .conv-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .conv-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .conv-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .conv-section {
    padding: 52px 0;
  }

  .conv-title {
    font-size: 38px;
  }

  .conv-title-small {
    font-size: 30px;
  }

  .conv-lead {
    font-size: 15px;
  }

  .conv-text {
    font-size: 13.5px;
  }

  .conv-intro-card {
    padding: 28px 24px;
  }

  .conv-intro-card::after {
    font-size: 54px;
  }

  .conv-disclaimer {
    padding: 28px 24px;
  }

  .conv-final {
    padding: 58px 0;
  }
}
/* =========================================================
   PROYECTO EDUCATIVO / PROGRAMAS DE ESTUDIO
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.proy-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f7;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.proy-page * {
  box-sizing: border-box;
}

.proy-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.proy-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.proy-section {
  padding: 78px 0;
}

.proy-section-soft {
  background: #f7f7f7;
}

.proy-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.proy-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.proy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.proy-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.proy-title,
.proy-title-small,
.proy-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.proy-title {
  max-width: 640px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.proy-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.proy-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.proy-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.proy-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.proy-section-blue .proy-title-small,
.proy-section-blue .proy-text,
.proy-section-blue .proy-lead,
.proy-section-blue .proy-eyebrow {
  color: #fff;
}

.proy-section-blue .proy-text,
.proy-section-blue .proy-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.proy-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.proy-intro-card::after {
  content: "Curricula";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Placeholder foto */

.proy-photo {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 24px;
}

.proy-photo span {
  max-width: 250px;
  margin-top: 7px;
  color: #6b7280;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

/* Bloques de enfoque */

.proy-card {
  position: relative;
  height: 100%;
  min-height: 190px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.proy-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.proy-card h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.proy-card p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.proy-blue-panel {
  background: var(--siv-blue);
}

.proy-blue-content {
  max-width: 650px;
  padding: 72px 64px;
}

.proy-photo-blue {
  min-height: 500px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
}

.proy-photo-blue span {
  color: rgba(255,255,255,.76);
}

/* Competencias */

.proy-competence {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-gold);
  color: var(--siv-blue);
  padding: 20px 20px 20px 24px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

/* Proceso */

.proy-step {
  position: relative;
  padding: 26px 0 26px 76px;
  border-bottom: 1px solid #dfe5ec;
}

.proy-step:first-child {
  padding-top: 0;
}

.proy-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proy-step-number {
  position: absolute;
  left: 0;
  top: 26px;
  width: 46px;
  height: 46px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.proy-step:first-child .proy-step-number {
  top: 0;
}

.proy-step h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}

.proy-step p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Documentos */

.proy-doc-group {
  background: #fff;
  border: 1px solid #e4e9ef;
  padding: 30px 28px;
  height: 100%;
}

.proy-doc-group h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe5ec;
}

.proy-doc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.proy-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e4e9ef;
  padding: 13px 14px;
  color: var(--siv-blue);
  background: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.proy-doc span {
  display: block;
}

.proy-doc::after {
  content: "›";
  color: var(--siv-gold);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 auto;
}

.proy-doc:hover {
  background: var(--siv-blue);
  color: #fff;
}

.proy-doc:hover::after {
  color: #fff;
}

/* Nota */

.proy-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.proy-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.proy-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Cierre */

.proy-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.proy-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.proy-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Imágenes reales */

.proy-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid #e0d8ca;
}

.proy-img-blue {
  width: 100%;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .proy-section {
    padding: 62px 0;
  }

  .proy-title {
    font-size: 44px;
  }

  .proy-title-small {
    font-size: 34px;
  }

  .proy-intro-card {
    max-width: none;
  }

  .proy-photo,
  .proy-photo-blue,
  .proy-img,
  .proy-img-blue {
    min-height: 300px;
    height: 300px;
  }

  .proy-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .proy-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .proy-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .proy-section {
    padding: 52px 0;
  }

  .proy-title {
    font-size: 38px;
  }

  .proy-title-small {
    font-size: 30px;
  }

  .proy-lead {
    font-size: 15px;
  }

  .proy-text {
    font-size: 13.5px;
  }

  .proy-intro-card {
    padding: 28px 24px;
  }

  .proy-intro-card::after {
    font-size: 46px;
  }

  .proy-step {
    padding: 28px 0;
  }

  .proy-step-number {
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
    background: transparent;
    color: var(--siv-gold);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .proy-step:first-child .proy-step-number {
    top: auto;
  }

  .proy-doc-group {
    padding: 26px 22px;
  }

  .proy-final {
    padding: 58px 0;
  }
}
/* =========================================================
   COLEGIO / LA NOSTRA STORIA
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.colegio-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f7;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.colegio-page * {
  box-sizing: border-box;
}

.colegio-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.colegio-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.colegio-section {
  padding: 78px 0;
}

.colegio-section-soft {
  background: #f7f7f7;
}

.colegio-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.colegio-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.colegio-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.colegio-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.colegio-title,
.colegio-title-small,
.colegio-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.colegio-title {
  max-width: 620px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.colegio-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.colegio-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.colegio-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.colegio-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.colegio-section-blue .colegio-title-small,
.colegio-section-blue .colegio-text,
.colegio-section-blue .colegio-lead,
.colegio-section-blue .colegio-eyebrow {
  color: #fff;
}

.colegio-section-blue .colegio-text,
.colegio-section-blue .colegio-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.colegio-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.colegio-intro-card::after {
  content: "Storia";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 68px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Nota lateral */

.colegio-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.colegio-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.colegio-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Misión / Visión */

.colegio-statement {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-gold);
  padding: 34px 32px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.colegio-statement h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 16px;
}

.colegio-statement p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/* Valores */

.colegio-value {
  position: relative;
  height: 100%;
  min-height: 170px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.colegio-value::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.colegio-value h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.colegio-value p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.colegio-blue-panel {
  background: var(--siv-blue);
}

.colegio-blue-content {
  max-width: 650px;
  padding: 72px 64px;
}

.colegio-photo-blue {
  min-height: 520px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.colegio-photo-blue span {
  max-width: 260px;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

/* Hitos */

.colegio-timeline {
  position: relative;
}

.colegio-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d7dde5;
}

.colegio-milestone {
  position: relative;
  padding: 0 0 30px 78px;
}

.colegio-milestone:last-child {
  padding-bottom: 0;
}

.colegio-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.colegio-milestone h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}

.colegio-milestone p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Cifras */

.colegio-stat {
  border-top: 1px solid #d7dde5;
  padding-top: 18px;
}

.colegio-stat strong {
  display: block;
  color: var(--siv-gold);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.colegio-stat span {
  display: block;
  color: var(--siv-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Botón */

.colegio-button {
  display: inline-block;
  border: 2px solid var(--siv-blue);
  color: var(--siv-blue);
  background: transparent;
  padding: 12px 22px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.colegio-button:hover {
  background: var(--siv-blue);
  color: #fff;
}

/* Cierre */

.colegio-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.colegio-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.colegio-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .colegio-section {
    padding: 62px 0;
  }

  .colegio-title {
    font-size: 44px;
  }

  .colegio-title-small {
    font-size: 34px;
  }

  .colegio-intro-card {
    max-width: none;
  }

  .colegio-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .colegio-photo-blue {
    min-height: 300px;
  }

  .colegio-value {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .colegio-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .colegio-section {
    padding: 52px 0;
  }

  .colegio-title {
    font-size: 38px;
  }

  .colegio-title-small {
    font-size: 30px;
  }

  .colegio-lead {
    font-size: 15px;
  }

  .colegio-text {
    font-size: 13.5px;
  }

  .colegio-intro-card {
    padding: 28px 24px;
  }

  .colegio-intro-card::after {
    font-size: 54px;
  }

  .colegio-timeline::before {
    display: none;
  }

  .colegio-milestone {
    padding: 28px 0;
    border-bottom: 1px solid #dfe5ec;
  }

  .colegio-milestone:last-child {
    border-bottom: 0;
  }

  .colegio-year {
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
    background: transparent;
    color: var(--siv-gold);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .colegio-final {
    padding: 58px 0;
  }
}
/* =========================================================
   INFRAESTRUCTURA
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.infra-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f7;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.infra-page * {
  box-sizing: border-box;
}

.infra-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.infra-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.infra-section {
  padding: 78px 0;
}

.infra-section-soft {
  background: #f7f7f7;
}

.infra-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.infra-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Tipografía */

.infra-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.infra-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
}

.infra-title,
.infra-title-small,
.infra-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.infra-title {
  max-width: 620px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.infra-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.infra-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.infra-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.infra-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.infra-section-blue .infra-title-small,
.infra-section-blue .infra-text,
.infra-section-blue .infra-lead,
.infra-section-blue .infra-eyebrow {
  color: #fff;
}

.infra-section-blue .infra-text,
.infra-section-blue .infra-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.infra-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
}

.infra-intro-card::after {
  content: "Sedi";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Nota */

.infra-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.infra-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.infra-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Tarjetas */

.infra-card {
  position: relative;
  height: 100%;
  min-height: 175px;
  background: #fff;
  padding: 28px 26px;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.infra-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 20px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.infra-card h3 {
  position: relative;
  max-width: 230px;
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 14px;
}

.infra-card p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul sede */

.infra-blue-panel {
  background: var(--siv-blue);
}

.infra-blue-content {
  max-width: 650px;
  padding: 72px 64px;
}

.infra-photo-blue {
  min-height: 520px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.infra-photo-blue span {
  max-width: 280px;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

/* Lista de instalaciones */

.infra-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.infra-feature {
  background: rgba(255,255,255,.96);
  color: var(--siv-blue);
  padding: 12px 14px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

/* Sede Viña */

.infra-campus-box {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-gold);
  padding: 34px 32px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.infra-campus-box h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 16px;
}

.infra-campus-box p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 16px;
}

.infra-campus-box p:last-child {
  margin-bottom: 0;
}

/* Videos */

.infra-video-card {
  background: #fff;
  border: 1px solid #e4e9ef;
  padding: 18px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.infra-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f2f55;
  overflow: hidden;
}

.infra-video iframe,
.infra-video video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.infra-video-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.06) 0,
      rgba(255,255,255,.06) 9px,
      rgba(255,255,255,.02) 9px,
      rgba(255,255,255,.02) 18px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.infra-video-placeholder span {
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.infra-video-card h3 {
  color: var(--siv-blue-dark);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  margin: 18px 0 8px;
}

.infra-video-card p {
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Galería */

.infra-gallery-item {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(0,61,113,.045), rgba(185,152,90,.06)),
    repeating-linear-gradient(
      45deg,
      #f5f1ea 0,
      #f5f1ea 9px,
      #eae2d5 9px,
      #eae2d5 18px
    );
  border: 1px solid #e0d8ca;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--siv-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 18px;
}

.infra-gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 1px solid #e0d8ca;
}

/* Contacto sedes */

.infra-contact {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-gold);
  padding: 30px 28px;
}

.infra-contact h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 18px;
}

.infra-contact p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}

.infra-contact p:last-child {
  margin-bottom: 0;
}

.infra-contact strong {
  color: var(--siv-blue-dark);
}

/* Cierre */

.infra-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.infra-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.infra-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .infra-section {
    padding: 62px 0;
  }

  .infra-title {
    font-size: 44px;
  }

  .infra-title-small {
    font-size: 34px;
  }

  .infra-intro-card {
    max-width: none;
  }

  .infra-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .infra-photo-blue {
    min-height: 300px;
  }

  .infra-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .infra-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .infra-section {
    padding: 52px 0;
  }

  .infra-title {
    font-size: 38px;
  }

  .infra-title-small {
    font-size: 30px;
  }

  .infra-lead {
    font-size: 15px;
  }

  .infra-text {
    font-size: 13.5px;
  }

  .infra-intro-card {
    padding: 28px 24px;
  }

  .infra-intro-card::after {
    font-size: 56px;
  }

  .infra-feature-list {
    grid-template-columns: 1fr;
  }

  .infra-final {
    padding: 58px 0;
  }
}
/* =========================================================
   DOCUMENTOS INSTITUCIONALES
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.docs-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-cream: #f7f7f7;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;
  --siv-muted: #52677e;

  width: 100%;
  max-width: 100%;
  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.docs-page * {
  box-sizing: border-box;
}

.docs-page a {
  text-decoration: none;
}

.docs-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.docs-inner {
  width: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  overflow-x: hidden;
}

.docs-section {
  width: 100%;
  max-width: 100%;
  padding: 78px 0;
  overflow-x: hidden;
}

.docs-section-soft {
  background: #f7f7f7;
}

.docs-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.docs-page [class*="col-"] {
  min-width: 0;
}

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

.docs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.docs-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
  flex: 0 0 auto;
}

.docs-title,
.docs-title-small,
.docs-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.docs-title {
  max-width: 650px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.docs-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.docs-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.docs-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.docs-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* =========================================================
   INTRO
   ========================================================= */

.docs-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
  overflow: hidden;
}

.docs-intro-card::after {
  content: "Docs";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* =========================================================
   NOTA LATERAL
   ========================================================= */

.docs-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.docs-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.docs-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* =========================================================
   GRILLA DOCUMENTOS
   ========================================================= */

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Tarjeta documento */

.docs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 220px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  padding: 30px 28px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
  color: var(--siv-blue);
  text-decoration: none;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: break-word;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.docs-card:hover {
  transform: translateY(-3px);
  border-color: var(--siv-gold);
  background: #fbfbfb;
  color: var(--siv-blue);
  text-decoration: none;
}

.docs-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}

.docs-card-icon {
  width: 42px;
  height: 42px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 22px;
  flex: 0 0 auto;
}

.docs-card h3 {
  position: relative;
  max-width: 100%;
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
  margin: 0 0 12px;
  padding-right: 52px;
  overflow-wrap: break-word;
}

.docs-card p {
  position: relative;
  max-width: 100%;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 22px;
  overflow-wrap: break-word;
}

.docs-card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--siv-gold);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.docs-card-action::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

/* =========================================================
   BLOQUE ACCESO
   ========================================================= */

.docs-access {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-red);
  padding: 34px 36px;
  overflow: hidden;
}

.docs-access h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 14px;
}

.docs-access p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   CIERRE
   ========================================================= */

.docs-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.docs-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.docs-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .docs-section {
    padding: 62px 0;
  }

  .docs-title {
    font-size: 44px;
  }

  .docs-title-small {
    font-size: 34px;
  }

  .docs-intro-card {
    max-width: none;
  }

  .docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 575.98px) {
  .docs-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .docs-section {
    padding: 52px 0;
  }

  .docs-title {
    font-size: 38px;
  }

  .docs-title-small {
    font-size: 30px;
  }

  .docs-lead {
    font-size: 15px;
  }

  .docs-text {
    font-size: 13.5px;
  }

  .docs-intro-card {
    padding: 28px 24px;
  }

  .docs-intro-card::after {
    font-size: 56px;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .docs-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .docs-card h3 {
    padding-right: 38px;
  }

  .docs-card::before {
    font-size: 42px;
    right: 18px;
  }

  .docs-access {
    padding: 28px 24px;
  }

  .docs-final {
    padding: 58px 0;
  }
}
/* =========================================================
   SOCIETÀ / EQUIPO RECTORÍA
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.inst-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;

  width: 100%;
  max-width: 100%;
  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.inst-page * {
  box-sizing: border-box;
}

.inst-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.inst-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.inst-section {
  padding: 78px 0;
}

.inst-section-soft {
  background: #f7f7f7;
}

.inst-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.inst-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.inst-page [class*="col-"] {
  min-width: 0;
}

/* Tipografía */

.inst-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.inst-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
  flex: 0 0 auto;
}

.inst-title,
.inst-title-small,
.inst-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.inst-title {
  max-width: 680px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.inst-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.inst-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.inst-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.inst-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.inst-section-blue .inst-title-small,
.inst-section-blue .inst-text,
.inst-section-blue .inst-lead,
.inst-section-blue .inst-eyebrow {
  color: #fff;
}

.inst-section-blue .inst-text,
.inst-section-blue .inst-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.inst-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
  overflow: hidden;
}

.inst-intro-card::after {
  content: "Scuola";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 66px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Nota lateral */

.inst-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.inst-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.inst-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Directorio Società */

.inst-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.inst-board-card {
  position: relative;
  height: 100%;
  min-height: 170px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  padding: 28px 26px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
  overflow: hidden;
}

.inst-board-card::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.inst-board-card span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-right: 44px;
}

.inst-board-card h3 {
  position: relative;
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
  padding-right: 40px;
}

/* Equipo */

.inst-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.inst-team-card {
  position: relative;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  padding: 28px 24px;
  min-height: 230px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
  overflow: hidden;
}

.inst-team-card::before {
  content: attr(data-number);
  position: absolute;
  right: 20px;
  top: 18px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
}

.inst-team-initial {
  width: 54px;
  height: 54px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 22px;
}

.inst-team-card h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 10px;
  padding-right: 34px;
}

.inst-team-card p {
  color: #25496c;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Panel azul */

.inst-blue-panel {
  background: var(--siv-blue);
}

.inst-blue-content {
  max-width: 650px;
  padding: 72px 64px;
}

.inst-blue-mark {
  min-height: 500px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.inst-blue-mark span {
  max-width: 280px;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

/* Contacto */

.inst-contact {
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-gold);
  padding: 30px 28px;
}

.inst-contact h3 {
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 18px;
}

.inst-contact p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}

.inst-contact p:last-child {
  margin-bottom: 0;
}

.inst-contact strong {
  color: var(--siv-blue-dark);
}

/* Cierre */

.inst-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.inst-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.inst-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .inst-section {
    padding: 62px 0;
  }

  .inst-title {
    font-size: 44px;
  }

  .inst-title-small {
    font-size: 34px;
  }

  .inst-intro-card {
    max-width: none;
  }

  .inst-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .inst-blue-mark {
    min-height: 300px;
  }

  .inst-board-grid,
  .inst-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .inst-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .inst-section {
    padding: 52px 0;
  }

  .inst-title {
    font-size: 38px;
  }

  .inst-title-small {
    font-size: 30px;
  }

  .inst-lead {
    font-size: 15px;
  }

  .inst-text {
    font-size: 13.5px;
  }

  .inst-intro-card {
    padding: 28px 24px;
  }

  .inst-intro-card::after {
    font-size: 54px;
  }

  .inst-board-grid,
  .inst-team-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .inst-team-card,
  .inst-board-card {
    min-height: auto;
  }

  .inst-final {
    padding: 58px 0;
  }
}/* =========================================================
   ARTURO DELL'ORO
   ESTILO SCUOLA INSTITUCIONAL
   ========================================================= */

.arturo-page {
  --siv-blue: var(--navy, #003d71);
  --siv-blue-dark: var(--navy-dark, #00305f);
  --siv-gold: var(--gold, #b9985a);
  --siv-red: #b51f2f;
  --siv-border: #dfe5ec;
  --siv-text: #173b63;

  width: 100%;
  max-width: 100%;
  color: var(--siv-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.arturo-page * {
  box-sizing: border-box;
}

.arturo-wide {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

.arturo-inner {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.arturo-section {
  padding: 78px 0;
}

.arturo-section-soft {
  background: #f7f7f7;
}

.arturo-section-blue {
  background: var(--siv-blue);
  color: #fff;
}

.arturo-page .row {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.arturo-page [class*="col-"] {
  min-width: 0;
}

/* Tipografía */

.arturo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.arturo-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--siv-gold);
  display: inline-block;
  flex: 0 0 auto;
}

.arturo-title,
.arturo-title-small,
.arturo-final h2 {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: none;
}

.arturo-title {
  max-width: 680px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .95;
  margin: 0 0 28px;
}

.arturo-title em {
  display: inline-block;
  color: var(--siv-gold);
  font-style: italic;
  font-weight: 400;
}

.arturo-title-small {
  max-width: 720px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.arturo-lead {
  max-width: 760px;
  color: #25496c;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.arturo-text {
  color: #25496c;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.arturo-section-blue .arturo-title-small,
.arturo-section-blue .arturo-text,
.arturo-section-blue .arturo-lead,
.arturo-section-blue .arturo-eyebrow {
  color: #fff;
}

.arturo-section-blue .arturo-text,
.arturo-section-blue .arturo-lead {
  color: rgba(255,255,255,.88);
}

/* Intro */

.arturo-intro-card {
  position: relative;
  max-width: 570px;
  background: #fff;
  padding: 34px 38px;
  border-left: 3px solid var(--siv-red);
  box-shadow: 0 8px 24px rgba(0,48,95,.08);
  overflow: hidden;
}

.arturo-intro-card::after {
  content: "1917";
  position: absolute;
  right: 14px;
  bottom: -5px;
  color: rgba(0,61,113,.045);
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
  pointer-events: none;
}

/* Nota lateral */

.arturo-note {
  border-top: 1px solid #d7dde5;
  padding-top: 20px;
  color: var(--siv-blue);
}

.arturo-note span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.arturo-note p {
  font-family: var(--serif);
  color: var(--siv-blue-dark);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* Datos clave */

.arturo-fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.arturo-fact {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-bottom: 3px solid var(--siv-gold);
  padding: 28px 26px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
  overflow: hidden;
}

.arturo-fact::before {
  content: attr(data-number);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(0,61,113,.055);
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.arturo-fact span {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-right: 42px;
}

.arturo-fact h3 {
  position: relative;
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 10px;
  padding-right: 32px;
}

.arturo-fact p {
  position: relative;
  color: #25496c;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* Panel azul */

.arturo-blue-panel {
  background: var(--siv-blue);
}

.arturo-blue-content {
  max-width: 650px;
  padding: 72px 64px;
}

.arturo-blue-mark {
  min-height: 520px;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,.075) 0,
      rgba(255,255,255,.075) 9px,
      rgba(255,255,255,.025) 9px,
      rgba(255,255,255,.025) 18px
    );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 28px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.arturo-blue-mark span {
  max-width: 280px;
  margin-top: 8px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

/* Línea histórica */

.arturo-timeline {
  position: relative;
}

.arturo-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d7dde5;
}

.arturo-milestone {
  position: relative;
  padding: 0 0 30px 78px;
}

.arturo-milestone:last-child {
  padding-bottom: 0;
}

.arturo-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  background: var(--siv-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.arturo-milestone h3 {
  color: var(--siv-blue-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 0 8px;
}

.arturo-milestone p {
  color: #25496c;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* Frase destacada */

.arturo-quote {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-left: 3px solid var(--siv-red);
  padding: 34px 36px;
  box-shadow: 0 4px 14px rgba(0,48,95,.04);
}

.arturo-quote blockquote {
  color: var(--siv-blue-dark);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
  margin: 0 0 18px;
}

.arturo-quote cite {
  display: block;
  color: var(--siv-gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Botón */

.arturo-button {
  display: inline-block;
  border: 2px solid var(--siv-blue);
  color: var(--siv-blue);
  background: transparent;
  padding: 12px 22px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
}

.arturo-button:hover {
  background: var(--siv-blue);
  color: #fff;
  text-decoration: none;
}

/* Cierre */

.arturo-final {
  background: linear-gradient(135deg, rgba(0,61,113,.96), rgba(0,48,95,.96));
  color: #fff;
  padding: 82px 0;
}

.arturo-final h2 {
  max-width: 800px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.arturo-final p {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */

@media (max-width: 991.98px) {
  .arturo-section {
    padding: 62px 0;
  }

  .arturo-title {
    font-size: 44px;
  }

  .arturo-title-small {
    font-size: 34px;
  }

  .arturo-intro-card {
    max-width: none;
  }

  .arturo-blue-content {
    max-width: none;
    padding: 52px 34px;
  }

  .arturo-blue-mark {
    min-height: 300px;
  }

  .arturo-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .arturo-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .arturo-section {
    padding: 52px 0;
  }

  .arturo-title {
    font-size: 38px;
  }

  .arturo-title-small {
    font-size: 30px;
  }

  .arturo-lead {
    font-size: 15px;
  }

  .arturo-text {
    font-size: 13.5px;
  }

  .arturo-intro-card {
    padding: 28px 24px;
  }

  .arturo-intro-card::after {
    font-size: 56px;
  }

  .arturo-fact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .arturo-timeline::before {
    display: none;
  }

  .arturo-milestone {
    padding: 28px 0;
    border-bottom: 1px solid #dfe5ec;
  }

  .arturo-milestone:last-child {
    border-bottom: 0;
  }

  .arturo-year {
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
    background: transparent;
    color: var(--siv-gold);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .arturo-quote {
    padding: 28px 24px;
  }

  .arturo-quote blockquote {
    font-size: 19px;
  }

  .arturo-final {
    padding: 58px 0;
  }
}