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

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
}

/* NAVBAR */

.navbar{
  padding:20px 0;
  transition:.4s;
}

.navbar.scrolled{
  background:#001f4d;
  padding:10px 0;
}

.navbar-brand{
  color:white;
  font-weight:700;
  font-size:1.5rem;
}

.nav-link{
  color:white;
  margin-left:20px;
  font-weight:500;
}

.nav-link:hover{
  color:#ffc107;
}

/* HERO */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
  text-align:center;
}

.hero-subtitle{
  letter-spacing:3px;
  color:#ffc107;
  font-weight:600;
}

.hero h1{
  font-size:4rem;
  font-weight:700;
  margin:20px 0;
}

.hero p{
  font-size:1.2rem;
  margin-bottom:30px;
}

.hero-buttons .btn{
  margin:10px;
  padding:14px 30px;
  border-radius:50px;
}

/* ABOUT */

.section-subtitle{
  color:#ffc107;
  font-weight:600;
  letter-spacing:2px;
}

.about-section h2{
  font-size:2.5rem;
  margin:20px 0;
  color:#001f4d;
}

/* LEVELS */

.levels-section{
  background:#f5f7fa;
}

.level-card{
  background:white;
  border-radius:20px;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.level-card:hover{
  transform:translateY(-10px);
}

.level-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.level-content{
  padding:25px;
}

.level-content h4{
  color:#001f4d;
  margin-bottom:10px;
}

/* CTA */

.cta-section{
  background:#001f4d;
  color:white;
  padding:100px 0;
}

.cta-section h2{
  font-size:3rem;
  margin-bottom:20px;
}

/* FOOTER */

footer{
  background:#000814;
  color:white;
  padding:30px 0;
}

/* RESPONSIVE */

@media(max-width:991px){

  .hero h1{
    font-size:2.5rem;
  }

  .navbar{
    background:#001f4d;
  }

}

/* =========================================
   HERO VIDEO
========================================= */

.hero-video{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

/* VIDEO */

.hero-bg-video{
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */

.hero-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.55),
      rgba(0,0,0,.65)
    );
}

/* CONTENT */

.hero-container{
  position:relative;
  z-index:2;

  height:100%;

  display:flex;
  flex-direction:column;

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

  text-align:center;
  color:white;
}

/* MINI TITLE */

.hero-mini-title{
  color:#ffc107;

  letter-spacing:4px;

  font-size:.95rem;
  font-weight:600;

  margin-bottom:20px;
}

/* TITLE */

.hero-title{
  font-size:5rem;
  font-weight:700;

  max-width:900px;

  line-height:1.1;

  margin-bottom:25px;

  animation:fadeUp 1s ease;
}

/* TEXT */

.hero-text{
  font-size:1.2rem;

  max-width:700px;

  line-height:1.8;

  margin-bottom:40px;

  color:rgba(255,255,255,.9);

  animation:fadeUp 1.2s ease;
}

/* BUTTONS */

.hero-buttons .btn{
  margin:10px;

  border-radius:50px;

  padding:15px 35px;

  font-weight:600;

  transition:.3s;
}

.hero-buttons .btn:hover{
  transform:translateY(-3px);
}

/* SCROLL INDICATOR */

.scroll-indicator{
  position:absolute;

  bottom:30px;
  left:50%;

  transform:translateX(-50%);

  z-index:3;
}

.scroll-indicator span{
  display:block;

  width:30px;
  height:50px;

  border:2px solid white;

  border-radius:20px;

  position:relative;
}

.scroll-indicator span::before{
  content:'';

  position:absolute;

  top:10px;
  left:50%;

  transform:translateX(-50%);

  width:6px;
  height:6px;

  background:white;

  border-radius:50%;

  animation:scrollAnim 2s infinite;
}

/* ANIMATIONS */

@keyframes scrollAnim{

  0%{
    opacity:0;
    top:10px;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:0;
    top:28px;
  }

}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* RESPONSIVE */

@media(max-width:992px){

  .hero-title{
    font-size:3rem;
  }

  .hero-text{
    font-size:1rem;
    padding:0 20px;
  }

}

@media(max-width:576px){

  .hero-title{
    font-size:2.2rem;
  }

  .hero-buttons .btn{
    width:100%;
    max-width:300px;
  }

}

/* =========================================
   PREMIUM NAVBAR
========================================= */

.custom-navbar{
  padding:22px 0;

  transition:all .4s ease;

  background:transparent;

  z-index:9999;
}

/* SCROLLED */

.custom-navbar.scrolled{

  background:rgba(0, 22, 55, 0.92);

  backdrop-filter:blur(12px);

  padding:12px 0;

  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* LOGO */

.logo-text{
  color:white;

  font-size:1.6rem;
  font-weight:700;

  letter-spacing:.5px;
}

/* LINKS */

.nav-link{

  color:white !important;

  font-weight:500;

  margin-left:18px;

  position:relative;

  transition:.3s;
}

/* UNDERLINE EFFECT */

.nav-link::after{

  content:'';

  position:absolute;

  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:#ffc107;

  transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{

  width:100%;
}

.nav-link:hover{
  color:#ffc107 !important;
}

/* BUTTON */

.nav-btn{

  border-radius:50px;

  padding:12px 26px;

  font-weight:600;

  transition:.3s;
}

.nav-btn:hover{
  transform:translateY(-2px);
}

/* DROPDOWN */

.dropdown-menu{

  border:none;

  border-radius:18px;

  padding:15px 10px;

  margin-top:18px;

  box-shadow:
    0 15px 40px rgba(0,0,0,.12);

  animation:dropdownFade .3s ease;
}

.dropdown-item{

  padding:12px 18px;

  border-radius:12px;

  transition:.3s;
}

.dropdown-item:hover{

  background:#f5f7fa;

  color:#001f4d;
}

/* MOBILE */

.navbar-toggler{

  border:none;
  box-shadow:none !important;
}

.navbar-toggler-icon{

  filter:invert(1);
}

/* MOBILE MENU */

@media(max-width:991px){

  .custom-navbar{

    background:rgba(0,22,55,.96);

    padding:15px 0;
  }

  .navbar-collapse{

    background:#001f4d;

    margin-top:15px;

    padding:25px;

    border-radius:20px;
  }

  .nav-link{

    margin:12px 0;
  }

  .nav-btn{

    width:100%;

    margin-top:10px;
  }

}

/* ANIMATION */

@keyframes dropdownFade{

  from{
    opacity:0;
    transform:translateY(10px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* =========================================
   ABOUT PREMIUM
========================================= */

.about-premium{
  background:white;
  position:relative;
}

/* IMAGE */

.about-image-wrapper{
  position:relative;
}

.about-image{
  border-radius:30px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.12);
}

/* FLOATING EXPERIENCE CARD */

.experience-box{

  position:absolute;

  bottom:30px;
  left:-30px;

  background:#001f4d;

  color:white;

  padding:30px;

  border-radius:25px;

  box-shadow:
    0 20px 50px rgba(0,0,0,.2);
}

.experience-box h3{

  font-size:3rem;
  font-weight:700;

  color:#ffc107;

  margin-bottom:5px;
}

/* TEXTS */

.section-mini-title{

  color:#ffc107;

  font-weight:700;

  letter-spacing:3px;

  font-size:.9rem;
}

.section-title{

  font-size:3rem;

  font-weight:700;

  color:#001f4d;

  margin:20px 0;
}

.section-text{

  color:#555;

  line-height:1.9;

  margin-bottom:20px;
}

/* FEATURES */

.about-features{
  margin-top:30px;
}

.feature-item{

  display:flex;

  align-items:center;

  margin-bottom:18px;
}

.feature-icon{

  width:40px;
  height:40px;

  background:#ffc107;

  border-radius:50%;

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

  margin-right:15px;

  font-weight:700;

  color:#001f4d;
}

/* =========================================
   STATS
========================================= */

.stats-section{

  background:
    linear-gradient(
      135deg,
      #001f4d,
      #003580
    );

  padding:90px 0;

  color:white;
}

.stat-box{

  padding:20px;
}

.stat-box h2{

  font-size:4rem;

  font-weight:700;

  color:#ffc107;

  margin-bottom:10px;
}

.stat-box p{

  font-size:1.1rem;

  opacity:.9;
}

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

@media(max-width:991px){

  .section-title{
    font-size:2.3rem;
  }

  .experience-box{

    left:20px;
    bottom:20px;

    padding:20px;
  }

  .experience-box h3{
    font-size:2rem;
  }

}

@media(max-width:576px){

  .section-title{
    font-size:2rem;
  }

  .stat-box h2{
    font-size:2.5rem;
  }

}

/* =========================================
   ACADEMIC LEVELS
========================================= */

.academic-levels{
  background:#f7f9fc;
}

/* SECTION TEXT */

.section-heading{
  max-width:800px;
  margin:auto;
}

.section-subtext{

  color:#666;

  margin-top:20px;

  font-size:1.05rem;

  line-height:1.8;
}

/* CARD */

.academic-card{

  position:relative;

  height:550px;

  overflow:hidden;

  border-radius:30px;

  cursor:pointer;

  transition:.5s ease;

  box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

/* IMAGE */

.academic-card img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .8s ease;
}

/* OVERLAY */

.academic-overlay{

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.85),
      rgba(0,0,0,.2)
    );
}

/* CONTENT */

.academic-content{

  position:absolute;

  left:35px;
  bottom:35px;

  color:white;

  z-index:2;
}

/* MINI */

.academic-content span{

  color:#ffc107;

  letter-spacing:3px;

  font-size:.85rem;

  font-weight:600;
}

/* TITLE */

.academic-content h3{

  font-size:2rem;

  font-weight:700;

  margin:15px 0;
}

/* TEXT */

.academic-content p{

  max-width:320px;

  line-height:1.8;

  opacity:.92;

  margin-bottom:25px;
}

/* BUTTON */

.academic-btn{

  color:white;

  text-decoration:none;

  font-weight:600;

  transition:.3s;
}

.academic-btn:hover{
  color:#ffc107;
}

/* HOVER */

.academic-card:hover{

  transform:translateY(-10px);
}

.academic-card:hover img{

  transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:991px){

  .academic-card{
    height:500px;
  }

}

@media(max-width:576px){

  .academic-card{

    height:450px;

    border-radius:20px;
  }

  .academic-content{

    left:25px;
    bottom:25px;
  }

  .academic-content h3{

    font-size:1.6rem;
  }

}

/* =========================================
   INSTITUTIONAL SLIDER
========================================= */

.institutional-slider{
  position:relative;
}

/* HEIGHT */

.carousel-item{
  height:90vh;
  min-height:700px;
}

/* IMAGE */

.carousel-item img{

  width:100%;
  height:100%;

  object-fit:cover;
}

/* OVERLAY */

.slider-overlay{

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.45),
      rgba(0,0,0,.65)
    );
}

/* CAPTION */

.carousel-caption{

  bottom:18%;

  z-index:5;

  text-align:left;

  max-width:750px;
}

/* MINI TITLE */

.carousel-caption span{

  color:#ffc107;

  letter-spacing:4px;

  font-weight:600;

  font-size:.9rem;
}

/* TITLE */

.carousel-caption h2{

  font-size:4rem;

  font-weight:700;

  line-height:1.1;

  margin:20px 0;
}

/* TEXT */

.carousel-caption p{

  font-size:1.2rem;

  line-height:1.8;

  margin-bottom:30px;

  color:rgba(255,255,255,.92);
}

/* BUTTON */

.carousel-caption .btn{

  padding:15px 35px;

  border-radius:50px;

  font-weight:600;
}

/* CONTROLS */

.carousel-control-prev,
.carousel-control-next{
  width:8%;
}

/* INDICATORS */

.carousel-indicators button{

  width:14px !important;
  height:14px !important;

  border-radius:50%;

  margin:0 8px;

  background:#ffc107;
}

/* FADE EFFECT */

.carousel-item{
  transition:transform 1.2s ease,
             opacity .8s ease-out;
}

/* RESPONSIVE */

@media(max-width:991px){

  .carousel-item{

    height:75vh;
    min-height:600px;
  }

  .carousel-caption{

    bottom:12%;
    text-align:center;

    left:10%;
    right:10%;
  }

  .carousel-caption h2{
    font-size:2.8rem;
  }

}

@media(max-width:576px){

  .carousel-item{

    height:70vh;
    min-height:550px;
  }

  .carousel-caption h2{
    font-size:2rem;
  }

  .carousel-caption p{
    font-size:1rem;
  }

}

/* =========================================
   FOOTER PREMIUM
========================================= */

.footer-premium{
  background:#06142e;
  color:white;
  padding:80px 0 30px;
}

/* LOGO */

.footer-logo{
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:20px;
}

/* TEXT */

.footer-text{
  color:rgba(255,255,255,.75);
  line-height:1.8;
  margin-bottom:20px;
}

/* SOCIAL */

.footer-social a{

  display:inline-block;

  margin-right:10px;

  width:40px;
  height:40px;

  border-radius:50%;

  background:#ffc107;

  color:#06142e;

  text-align:center;
  line-height:40px;

  font-weight:700;

  transition:.3s;
}

.footer-social a:hover{
  transform:translateY(-3px);
}

/* TITLES */

.footer-premium h4{

  font-size:1.2rem;
  margin-bottom:20px;

  color:#ffc107;
}

/* LINKS */

.footer-premium ul{
  list-style:none;
  padding:0;
}

.footer-premium ul li{
  margin-bottom:12px;
}

.footer-premium ul li a{

  color:rgba(255,255,255,.75);
  text-decoration:none;

  transition:.3s;
}

.footer-premium ul li a:hover{
  color:#ffc107;
  padding-left:5px;
}

/* CONTACT */

.footer-contact li{
  margin-bottom:12px;
  color:rgba(255,255,255,.75);
}

/* BOTTOM */

.footer-bottom{

  margin-top:50px;

  border-top:1px solid rgba(255,255,255,.1);

  padding-top:20px;

  text-align:center;

  color:rgba(255,255,255,.6);
}

/* RESPONSIVE */

@media(max-width:768px){

  .footer-premium{
    text-align:center;
  }

  .footer-social{
    margin-bottom:30px;
  }

}

/* =========================================
   NEWS / BLOG
========================================= */

.news-section{
  background:#f7f9fc;
}

/* CARD */

.news-card{

  background:white;

  border-radius:25px;

  overflow:hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);

  transition:.4s ease;

  height:100%;
}

.news-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */

.news-image{
  position:relative;
  height:250px;
  overflow:hidden;
}

.news-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:transform .6s ease;
}

.news-card:hover .news-image img{
  transform:scale(1.1);
}

/* TAG */

.news-tag{

  position:absolute;

  top:15px;
  left:15px;

  background:#ffc107;

  color:#001f4d;

  padding:6px 14px;

  border-radius:20px;

  font-size:.8rem;

  font-weight:600;
}

/* CONTENT */

.news-content{

  padding:25px;
}

.news-date{

  font-size:.85rem;

  color:#888;

  display:block;

  margin-bottom:10px;
}

.news-content h3{

  font-size:1.4rem;

  font-weight:700;

  color:#001f4d;

  margin-bottom:12px;
}

.news-content p{

  color:#666;

  line-height:1.7;

  margin-bottom:15px;
}

/* LINK */

.news-content a{

  color:#001f4d;

  font-weight:600;

  text-decoration:none;

  transition:.3s;
}

.news-content a:hover{
  color:#ffc107;
}

/* =========================================
   WHATSAPP PREMIUM FLOAT
========================================= */

.whatsapp-float{
  position:fixed;

  bottom:25px;

  right:12px;  /* 🔥 pegado al borde derecho */

  left:auto;

  z-index:9999;

  display:flex;
  align-items:center;

  text-decoration:none;
}

/* ICON */

.whatsapp-icon{

  width:62px;
  height:62px;

  background:#25D366;

  border-radius:50%;

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

  box-shadow:
    0 10px 25px rgba(0,0,0,.25);

  transition:.3s ease;

  animation:pulse 2s infinite;
}

/* hover */

.whatsapp-float:hover .whatsapp-icon{
  transform:scale(1.12);
}

/* TOOLTIP */

.whatsapp-tooltip{

  margin-left:12px;

  background:#001f4d;

  color:white;

  padding:10px 14px;

  border-radius:10px;

  font-size:.85rem;

  white-space:nowrap;

  opacity:0;

  transform:translateX(-10px);

  transition:.3s ease;
}

/* show on hover */

.whatsapp-float:hover .whatsapp-tooltip{
  opacity:1;
  transform:translateX(0);
}

/* PULSE */

@keyframes pulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.6);
  }

  70%{
    box-shadow:0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}

/* MOBILE */

@media(max-width:768px){

  .whatsapp-tooltip{
    display:none;
  }

  .whatsapp-float{
    left:12px;
    bottom:20px;
  }

}

/* =========================================
   LOGO / ESCUDO INSTITUCIONAL
========================================= */

.logo-img{

  width:55px;
  height:55px;

  object-fit:contain;

  transition:.3s ease;
}

/* efecto hover suave */

.navbar-brand:hover .logo-img{
  transform:scale(1.05);
}

/* texto del logo */

.logo-text{

  color:white;

  font-weight:700;

  font-size:1.2rem;

  letter-spacing:.5px;
}

/* responsive */

@media(max-width:768px){

  .logo-img{
    width:45px;
    height:45px;
  }

  .logo-text{
    font-size:1rem;
  }
}
/* =========================================
   ADMISIONES
========================================= */

.admisiones-section {
  background: white;
}

.admision-paso {
  padding: 20px 10px;
}

.paso-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #001f4d;
  color: #ffc107;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.admision-paso p {
  font-size: .95rem;
  color: #555;
  line-height: 1.5;
}

/* =========================================
   CONTACTO
========================================= */

.contacto-section {
  background: #f7f9fc;
}

.contacto-item {
  background: white;
  border-radius: 20px;
  padding: 35px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  height: 100%;
  transition: .3s;
}

.contacto-item:hover {
  transform: translateY(-5px);
}

.contacto-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.contacto-item h5 {
  color: #001f4d;
  font-weight: 700;
  margin-bottom: 8px;
}

.contacto-item p {
  color: #666;
  margin: 0;
}

/* =========================================
   CONTRATACIONES
========================================= */

.contrataciones-section {
  background: #f7f9fc;
}

/* AVISO */
.contrat-aviso {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8e1;
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: .95rem;
  color: #5a4000;
  margin-bottom: 28px;
  line-height: 1.6;
}

.aviso-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* FILTROS */
.contrat-filtros {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.filtro-btn {
  background: white;
  border: 1.5px solid #dee2e6;
  border-radius: 30px;
  padding: 7px 20px;
  font-size: .88rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: .25s;
}

.filtro-btn:hover {
  border-color: #001f4d;
  color: #001f4d;
}

.filtro-btn.activo {
  background: #001f4d;
  border-color: #001f4d;
  color: white;
}

/* TABLA */
.contrat-tabla-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  margin-bottom: 24px;
}

.contrat-tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: white;
}

.contrat-tabla thead {
  background: #001f4d;
}

.contrat-tabla thead th {
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.contrat-tabla tbody tr {
  border-bottom: 1px solid #f0f2f5;
  transition: background .15s;
}

.contrat-tabla tbody tr:last-child {
  border-bottom: none;
}

.contrat-tabla tbody tr:hover {
  background: #f0f6ff;
}

.contrat-tabla tbody td {
  padding: 14px 18px;
  color: #444;
  vertical-align: middle;
}

.proceso-id {
  font-weight: 700;
  color: #001f4d;
  font-size: .85rem;
}

/* BADGES */
.badge-estado {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-estado.abierto    { background: #e8f5e9; color: #2e7d32; }
.badge-estado.adjudicado { background: #fff8e1; color: #f57f17; }
.badge-estado.cerrado    { background: #f5f5f5; color: #616161; }
.badge-estado.desierto   { background: #fce4ec; color: #c62828; }

/* BOTÓN VER DOCS */
.btn-docs {
  background: none;
  border: 1.5px solid #001f4d;
  color: #001f4d;
  border-radius: 8px;
  padding: 5px 14px;
  font-size: .82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

.btn-docs:hover {
  background: #001f4d;
  color: #ffc107;
}

/* PANEL DOCUMENTOS */
.contrat-docs-panel {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.docs-titulo {
  color: #001f4d;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.doc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #e9ecef;
  border-radius: 10px;
  padding: 14px 16px;
  transition: .2s;
}

.doc-card:hover {
  border-color: #ffc107;
  background: #fffdf0;
}

.doc-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.doc-info strong {
  font-size: .88rem;
  color: #001f4d;
}

.doc-info span {
  font-size: .78rem;
  color: #888;
}

.doc-dl {
  font-size: 1.2rem;
  color: #001f4d;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: .2s;
}

.doc-dl:hover {
  background: #ffc107;
  color: #001f4d;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .contrat-tabla { font-size: .8rem; }
  .contrat-tabla thead th,
  .contrat-tabla tbody td { padding: 10px 12px; }
  .docs-grid { grid-template-columns: 1fr; }
}

@media(max-width: 576px) {
  .contrat-tabla-wrap { overflow-x: auto; }
  .contrat-tabla { min-width: 600px; }
}
