:root{
  --verde-oscuro:#2f3b1c;
  --verde-militar:#4b5320;
  --verde-militar-claro:#5f6b2c;
  --amarillo:#f4c430;
  --amarillo-claro:#ffe27a;
  --dorado:#c9a227;
  --crema:#faf7ee;
  --texto:#26301a;
  --blanco:#ffffff;
  --sombra:0 10px 30px rgba(0,0,0,.15);
}


/* =========================================================
   RESET
   ========================================================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',Arial,sans-serif;
  color:var(--texto);
  background:var(--crema);
  line-height:1.55;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:92%;
  max-width:1180px;
  margin:0 auto;
}

section{
  padding:70px 0;
}


/* =========================================================
   TEXTOS
   ========================================================= */

.eyebrow{
  display:inline-block;
  color:var(--dorado);
  font-weight:700;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:.8rem;
  margin-bottom:10px;
}

h1,
h2,
h3{
  font-family:'Segoe UI',Arial,sans-serif;
  color:var(--verde-oscuro);
}

h2{
  font-size:2rem;
  margin-bottom:14px;
}

.lead{
  max-width:640px;
  color:#4b5340;
  margin-bottom:30px;
}


/* =========================================================
   BOTONES
   ========================================================= */

.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:40px;
  font-weight:700;
  text-align:center;
  transition:.25s;
  cursor:pointer;
  border:2px solid transparent;
}

.btn-amarillo{
  background:var(--amarillo);
  color:var(--verde-oscuro);
}

.btn-amarillo:hover{
  background:var(--amarillo-claro);
  transform:translateY(-2px);
}

.btn-outline{
  border-color:var(--blanco);
  color:var(--blanco);
}

.btn-outline:hover{
  background:rgba(255,255,255,.15);
}


/* =========================================================
   HEADER
   ========================================================= */

header{
  position:sticky;
  top:0;
  z-index:999;
  background:var(--blanco);
  box-shadow:0 2px 12px rgba(0,0,0,.15);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--verde-oscuro);
  font-weight:800;
  font-size:1.15rem;
}

.logo img{
  height:48px;
  width:auto;
  object-fit:contain;
}

.logo span{
  color:var(--dorado);
}


/* =========================================================
   MENU
   ========================================================= */

nav.menu{
  display:flex;
  align-items:center;
  gap:6px;
}

nav.menu > ul{
  display:flex;
  gap:6px;
  align-items:center;
}

nav.menu a{
  color:var(--verde-oscuro);
  padding:10px 14px;
  font-weight:600;
  font-size:.93rem;
  border-radius:6px;
  display:flex;
  align-items:center;
  gap:4px;
  transition:.25s;
}

nav.menu a:hover{
  background:var(--crema);
  color:var(--verde-militar);
}


/* =========================================================
   MENU DESPLEGABLE
   ========================================================= */

.dropdown{
  position:relative;
}

.dropdown-panel{
  position:absolute;
  top:100%;
  left:0;
  background:var(--blanco);
  min-width:230px;
  border-radius:8px;
  box-shadow:var(--sombra);
  padding:8px;
  display:none;
  border-top:3px solid var(--amarillo);
}

.dropdown:hover .dropdown-panel{
  display:block;
}

.dropdown-panel a{
  color:var(--verde-militar);
  padding:10px 12px;
  border-radius:6px;
  font-weight:600;
}

.dropdown-panel a:hover{
  background:var(--crema);
  color:var(--dorado);
}


/* =========================================================
   BOTON CTA
   ========================================================= */

.nav-cta{
  background:var(--amarillo);
  color:var(--verde-oscuro)!important;
  border-radius:30px;
  padding:10px 20px!important;
}

.nav-cta:hover{
  background:var(--amarillo-claro)!important;
  color:var(--verde-oscuro)!important;
}


/* =========================================================
   MENU HAMBURGUESA
   ========================================================= */

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.burger span{
  width:26px;
  height:3px;
  background:var(--verde-oscuro);
  border-radius:2px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  color:var(--blanco);
  overflow:hidden;
}

.hero-slides{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

.hero-slides img.active{
  opacity:1;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(47,59,28,.75),
    rgba(47,59,28,.9)
  );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
}


/* =========================================================
   VACANTES 2027
   ========================================================= */

.badge{
  display:inline-block;
  background:var(--amarillo);
  color:var(--verde-oscuro);
  padding:15px 32px;
  border-radius:40px;
  font-weight:900;
  font-size:1.4rem;
  letter-spacing:1.8px;
  margin-bottom:26px;
  box-shadow:0 6px 18px rgba(0,0,0,.20);
  text-transform:uppercase;
  line-height:1.2;
  animation:badgeEntrada .8s ease both;
}

@keyframes badgeEntrada{
  from{
    opacity:0;
    transform:translateY(-20px) scale(.95);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.hero h1{
  font-size:2.6rem;
  color:var(--blanco);
  line-height:1.25;
  margin-bottom:18px;
}

.hero h1 strong{
  color:var(--amarillo-claro);
}

.hero p{
  max-width:560px;
  color:#e9e6d6;
  margin-bottom:28px;
  font-size:1.05rem;
}

.hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:46px;
}

.hero-stats{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}


/* =========================================================
   ESTADISTICAS ANIMADAS
   ========================================================= */

.hero-stats div{
  opacity:0;
  transform:translateY(35px);
  transition:
    opacity .7s ease,
    transform .7s ease;
}

.hero-stats.animar div{
  opacity:1;
  transform:translateY(0);
}

.hero-stats.animar div:nth-child(1){
  transition-delay:.1s;
}

.hero-stats.animar div:nth-child(2){
  transition-delay:.3s;
}

.hero-stats.animar div:nth-child(3){
  transition-delay:.5s;
}

.hero-stats.animar div:nth-child(4){
  transition-delay:.7s;
}

.hero-stats div strong{
  display:block;
  font-size:2rem;
  color:var(--amarillo);
  font-weight:900;
}

.hero-stats div span{
  font-size:.85rem;
  color:#dcd9c4;
}


/* =========================================================
   STATS BAR
   ========================================================= */

.stats-bar{
  background:var(--verde-oscuro);
  color:var(--blanco);
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  text-align:center;
}

.stats-grid strong{
  font-size:2.4rem;
  color:var(--amarillo);
  display:block;
}

.stats-grid span{
  color:#d9d6bf;
  font-size:.9rem;
}


/* =========================================================
   NOSOTROS
   ========================================================= */

.nosotros{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.nosotros img{
  border-radius:14px;
  box-shadow:var(--sombra);
}

.check-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:20px;
}

.check-list li{
  padding-left:26px;
  position:relative;
  font-weight:600;
  color:var(--verde-militar);
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--dorado);
}


/* =========================================================
   PILARES / BENEFICIOS
   ========================================================= */

.pilares{
  background:var(--blanco);
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:24px;
}

.card{
  background:var(--crema);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
  transition:.25s;
  border-bottom:4px solid var(--amarillo);
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sombra);
}

.card img{
  height:150px;
  width:100%;
  object-fit:cover;
}

.card-body{
  padding:18px;
}

.card-tag{
  color:var(--dorado);
  font-weight:800;
  font-size:.72rem;
  letter-spacing:1px;
}

.card h3{
  font-size:1.05rem;
  margin:6px 0 8px;
}

.card p{
  font-size:.9rem;
  color:#5a604a;
}

.card-docentes{
  grid-column:1 / -1;
}



/* =========================================================
   NIVELES / SEDES
   ========================================================= */

.niveles{
  background:var(--verde-militar);
  color:var(--blanco);
}

.niveles .eyebrow{
  color:var(--amarillo-claro);
}

.niveles h2{
  color:var(--blanco);
}

.niveles .lead{
  color:#e2e0cc;
}

.sede-card{
  background:rgba(255,255,255,.06);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
}

.sede-card img{
  height:190px;
  width:100%;
  object-fit:cover;
}

.sede-card .card-body{
  padding:20px;
}

.sede-card h3{
  color:var(--amarillo-claro);
}

.sede-card p{
  color:#d9d6bf;
  font-size:.9rem;
  margin-bottom:14px;
}

.sede-card a{
  color:var(--amarillo);
  font-weight:700;
  font-size:.85rem;
}


/* =========================================================
   NOTICIAS
   ========================================================= */

.noticias{
  background:var(--crema);
}

.noticias-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:30px;
}

.noticias-head a{
  color:var(--verde-militar);
  font-weight:800;
  border-bottom:2px solid var(--amarillo);
}

.noticia-card{
  background:var(--blanco);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.07);
  transition:.25s;
}

.noticia-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sombra);
}


/* =========================================================
   IMAGEN DE NOTICIA COMPLETA
   ========================================================= */

.noticia-card img{
  display:block;
  width:100%;
  height:auto;
  max-height:320px;
  object-fit:contain;
  object-position:center;
  background:#f1eee3;
}


/* =========================================================
   CONTENIDO DE NOTICIA
   ========================================================= */

.noticia-card .card-body{
  padding:18px;
}

.noticia-fecha{
  font-size:.75rem;
  color:var(--dorado);
  font-weight:700;
  text-transform:uppercase;
}

.noticia-card h3{
  font-size:1.05rem;
  margin:8px 0;
  line-height:1.4;
}

.noticia-card a.leer{
  color:var(--verde-militar);
  font-weight:700;
  font-size:.85rem;
}

.noticia-card a.leer:hover{
  color:var(--dorado);
}


/* =========================================================
   TESTIMONIOS
   ========================================================= */

.testimonios{
  background:var(--verde-oscuro);
  color:var(--blanco);
}

.testimonios h2{
  color:var(--blanco);
}

.testimonios .lead{
  color:#dedbc4;
}

.video-card{
  border-radius:14px;
  overflow:hidden;
  background:#1e2611;
  border:1px solid rgba(255,255,255,.1);
}

.video-card video{
  width:100%;
  display:block;
  background:#000;
}

.video-card .card-body{
  padding:16px;
}

.video-card h3{
  color:var(--amarillo-claro);
  font-size:1rem;
}

.video-card p{
  color:#c8c5ae;
  font-size:.85rem;
}


/* =========================================================
   GALERIA
   ========================================================= */

.galeria-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.galeria-grid img{
  height:150px;
  width:100%;
  object-fit:cover;
  border-radius:10px;
}
/* =========================================================
   REGLAMENTO INTERNO 2026
   ========================================================= */

.reglamento{
  background:var(--blanco);
}

.reglamento-content{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:60px;
  align-items:center;
}

.reglamento-info h2{
  color:var(--verde-oscuro);
  margin-bottom:14px;
}

.reglamento-lista{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 25px;
  margin:25px 0 30px;
}

.reglamento-lista div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--verde-militar);
  font-weight:600;
}

.reglamento-lista span{
  color:var(--dorado);
  font-weight:900;
  font-size:1.1rem;
}

.reglamento-botones{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-reglamento{
  border:2px solid var(--verde-militar);
  color:var(--verde-militar);
  background:transparent;
}

.btn-reglamento:hover{
  background:var(--verde-militar);
  color:var(--amarillo-claro);
}

.reglamento-documento{
  background:var(--crema);
  border-radius:16px;
  padding:38px 30px;
  text-align:center;
  border-top:5px solid var(--amarillo);
  box-shadow:var(--sombra);
}

.documento-icono{
  width:75px;
  height:75px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--verde-oscuro);
  color:var(--amarillo);
  border-radius:50%;
  font-size:2rem;
}

.documento-tipo{
  display:block;
  color:var(--dorado);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:1.5px;
  margin-bottom:8px;
}

.reglamento-documento h3{
  font-size:1.4rem;
  margin-bottom:5px;
  color:var(--verde-oscuro);
}

.reglamento-documento p{
  color:var(--verde-militar);
  font-weight:700;
  margin-bottom:20px;
}

.documento-linea{
  width:60px;
  height:3px;
  background:var(--amarillo);
  margin:0 auto 18px;
}

.reglamento-documento strong{
  display:block;
  color:var(--verde-oscuro);
  margin-bottom:10px;
}

.reglamento-documento small{
  display:block;
  color:#5a604a;
  font-size:.85rem;
  line-height:1.5;
}


/* =========================================================
   REGLAMENTO - RESPONSIVE
   ========================================================= */

@media(max-width:960px){

  .reglamento-content{
    grid-template-columns:1fr;
    gap:35px;
  }

}

@media(max-width:760px){

  .reglamento-lista{
    grid-template-columns:1fr;
  }

  .reglamento-botones{
    flex-direction:column;
  }

  .reglamento-botones .btn{
    width:100%;
  }

}

@media(max-width:600px){

  .reglamento-documento{
    padding:30px 22px;
  }

}


/* =========================================================
   ADMISION / CONTACTO
   ========================================================= */

.admision{
  background:var(--amarillo);
}

.admision-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.admision h2{
  color:var(--verde-oscuro);
}

.admision-info li{
  margin-bottom:12px;
  font-weight:700;
  color:var(--verde-oscuro);
}

.form-card{
  background:var(--blanco);
  border-radius:14px;
  padding:30px;
  box-shadow:var(--sombra);
}

.form-card label{
  display:block;
  font-weight:700;
  font-size:.85rem;
  margin:14px 0 6px;
  color:var(--verde-militar);
}

.form-card input,
.form-card select{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.95rem;
  outline:none;
  transition:.25s;
}

.form-card input:focus,
.form-card select:focus{
  border-color:var(--verde-militar);
  box-shadow:0 0 0 3px rgba(75,83,32,.1);
}

.form-card button{
  margin-top:20px;
  width:100%;
  padding:14px;
  border:none;
  border-radius:8px;
  background:var(--verde-militar);
  color:var(--amarillo-claro);
  font-weight:800;
  cursor:pointer;
  transition:.25s;
}

.form-card button:hover{
  background:var(--verde-oscuro);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
  background:var(--verde-oscuro);
  color:#cfccb6;
  padding:60px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:30px;
  margin-bottom:40px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--amarillo-claro);
  font-weight:800;
  font-size:1.1rem;
  margin-bottom:12px;
}

footer h4{
  color:var(--amarillo);
  margin-bottom:14px;
  font-size:.95rem;
}

footer a{
  display:block;
  margin-bottom:8px;
  font-size:.88rem;
  color:#cfccb6;
}

footer a:hover{
  color:var(--amarillo);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:18px;
  text-align:center;
  font-size:.8rem;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp-float{
  position:fixed;
  bottom:22px;
  right:22px;
  z-index:998;
  background:#25D366;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--sombra);
  font-size:1.6rem;
  transition:.25s;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:960px){

  nav.menu{
    position:fixed;
    top:74px;
    left:0;
    right:0;
    bottom:0;
    background:var(--verde-oscuro);
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
    overflow-y:auto;
    transform:translateX(-100%);
    transition:.3s;
  }

  nav.menu.open{
    transform:translateX(0);
  }

  nav.menu > ul{
    flex-direction:column;
    width:100%;
    align-items:flex-start;
  }

  nav.menu a{
    color:var(--blanco);
    width:100%;
  }

  nav.menu a:hover{
    background:rgba(255,255,255,.1);
    color:var(--amarillo);
  }

  .dropdown-panel{
    position:static;
    display:none;
    box-shadow:none;
    background:rgba(255,255,255,.05);
    width:100%;
  }

  .dropdown.open .dropdown-panel{
    display:block;
  }

  .dropdown-panel a{
    color:var(--blanco);
  }

  .dropdown-panel a:hover{
    background:rgba(255,255,255,.08);
    color:var(--amarillo);
  }

  .burger{
    display:flex;
  }

  .nosotros,
  .admision-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .noticia-card img{
    max-height:300px;
  }
}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media(max-width:760px){

  .galeria-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero{
    min-height:80vh;
  }

  .hero h1{
    font-size:2.1rem;
  }

  .hero-stats{
    gap:25px;
  }

  .check-list{
    grid-template-columns:1fr;
  }


  /* VACANTES */

  .badge{
    font-size:1.25rem;
    padding:13px 25px;
    letter-spacing:1.3px;
  }


  /* NOTICIAS */

  .noticia-card img{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
  }
}


/* =========================================================
   CELULAR
   ========================================================= */

@media(max-width:600px){

  section{
    padding:55px 0;
  }

  .container{
    width:90%;
  }

  .nav-wrap{
    padding:10px 0;
  }

  .logo img{
    height:42px;
  }

  .logo{
    font-size:1rem;
  }

  nav.menu{
    top:64px;
  }

  .hero{
    min-height:78vh;
  }


  /* =======================================================
     VACANTES 2027
     ======================================================= */

  .badge{
    font-size:1.08rem;
    padding:12px 21px;
    letter-spacing:1px;
    margin-bottom:20px;
  }

  .hero h1{
    font-size:1.8rem;
  }

  .hero p{
    font-size:.95rem;
  }

  .hero-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-cta .btn{
    width:100%;
  }


  /* =======================================================
     ESTADISTICAS
     ======================================================= */

  .hero-stats{
    gap:20px;
  }

  .hero-stats div strong{
    font-size:1.6rem;
  }

  .hero-stats div span{
    font-size:.8rem;
  }


  /* =======================================================
     STATS BAR
     ======================================================= */

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .stats-grid strong{
    font-size:1.8rem;
  }


  /* =======================================================
     NOTICIAS
     ======================================================= */

  .noticia-card img{
    width:100%;
    height:auto;
    max-height:none;
    object-fit:contain;
    object-position:center;
    background:#f1eee3;
  }

  .noticia-card .card-body{
    padding:16px;
  }

  .noticia-card h3{
    font-size:1rem;
  }


  /* =======================================================
     FOOTER
     ======================================================= */

  .footer-grid{
    grid-template-columns:1fr;
  }

  .form-card{
    padding:22px;
  }


  /* =======================================================
     WHATSAPP
     ======================================================= */

  .whatsapp-float{
    width:52px;
    height:52px;
    right:16px;
    bottom:16px;
  }
}


/* =========================================================
   PANTALLAS MUY PEQUEÑAS
   ========================================================= */

@media(max-width:400px){

  .badge{
    font-size:.95rem;
    padding:11px 17px;
  }

  .hero h1{
    font-size:1.6rem;
  }

  .hero-stats{
    flex-direction:column;
    gap:15px;
  }

  .hero-stats div strong{
    font-size:1.5rem;
  }

  .stats-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}

/* =========================================================
   REGLAMENTO INTERNO 2026
   ========================================================= */

.reglamento{
  background:var(--blanco);
}

.reglamento-content{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:60px;
  align-items:center;
}

.reglamento-info h2{
  color:var(--verde-oscuro);
  margin-bottom:14px;
}

.reglamento-lista{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 25px;
  margin:25px 0 30px;
}

.reglamento-lista div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--verde-militar);
  font-weight:600;
}

.reglamento-lista span{
  color:var(--dorado);
  font-weight:900;
  font-size:1.1rem;
}

.reglamento-botones,
.pdf-botones{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn-reglamento{
  border:2px solid var(--verde-militar);
  color:var(--verde-militar);
  background:transparent;
}

.btn-reglamento:hover{
  background:var(--verde-militar);
  color:var(--amarillo-claro);
}


/* =========================================================
   TARJETA DEL DOCUMENTO
   ========================================================= */

.reglamento-documento{
  background:var(--crema);
  border-radius:16px;
  padding:38px 30px;
  text-align:center;
  border-top:5px solid var(--amarillo);
  box-shadow:var(--sombra);
}

.documento-icono{
  width:75px;
  height:75px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--verde-oscuro);
  color:var(--amarillo);
  border-radius:50%;
  font-size:2rem;
}

.documento-tipo{
  display:block;
  color:var(--dorado);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:1.5px;
  margin-bottom:8px;
}

.reglamento-documento h3{
  font-size:1.4rem;
  margin-bottom:5px;
  color:var(--verde-oscuro);
}

.reglamento-documento p{
  color:var(--verde-militar);
  font-weight:700;
  margin-bottom:20px;
}

.documento-linea{
  width:60px;
  height:3px;
  background:var(--amarillo);
  margin:0 auto 18px;
}

.reglamento-documento strong{
  display:block;
  color:var(--verde-oscuro);
  margin-bottom:10px;
}

.reglamento-documento small{
  display:block;
  color:#5a604a;
  font-size:.85rem;
  line-height:1.5;
}


/* =========================================================
   VISOR PDF
   ========================================================= */

.reglamento-visor{
  margin-top:60px;
}

.reglamento-visor > h3{
  color:var(--verde-oscuro);
  font-size:1.35rem;
  margin-bottom:18px;
}

.pdf-container{
  width:100%;
  background:var(--crema);
  border-radius:14px;
  overflow:hidden;
  box-shadow:var(--sombra);
  border:1px solid #ddd;
}

.pdf-container iframe{
  display:block;
  width:100%;
  height:700px;
  border:none;
}

.pdf-ayuda{
  color:#5a604a;
  font-size:.85rem;
  margin:15px 0 20px;
}

.pdf-botones{
  justify-content:center;
}


/* =========================================================
   REGLAMENTO - TABLET
   ========================================================= */

@media(max-width:960px){

  .reglamento-content{
    grid-template-columns:1fr;
    gap:35px;
  }

}


/* =========================================================
   REGLAMENTO - TABLET PEQUEÑA
   ========================================================= */

@media(max-width:760px){

  .reglamento-lista{
    grid-template-columns:1fr;
  }

  .reglamento-botones,
  .pdf-botones{
    flex-direction:column;
  }

  .reglamento-botones .btn,
  .pdf-botones .btn{
    width:100%;
  }

}


/* =========================================================
   REGLAMENTO - CELULAR
   ========================================================= */

@media(max-width:600px){

  .reglamento-documento{
    padding:30px 22px;
  }

  .pdf-container iframe{
    height:550px;
  }

}

