* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Open Sans;
    background:
        radial-gradient(circle at top left, rgba(0, 170, 255, 0.25), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 179, 0, 0.20), transparent 28%),
        linear-gradient(135deg, #f4fbff 0%, #eef6ff 35%, #fff8ea 100%);
      color:#18324a;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    
}
.container {
    margin: 0 200px;
    background-color: aliceblue;
    padding: 20px;
    box-shadow: 0 0 20px rgba(9, 0, 0, 0.1);
    border-radius: 10px; /* Opcional: para bordes redondeados */
}

header {
    background-color: #565a5e;
    color: #fff;
    padding-bottom: 0px;
    border-radius: 10px;
}

.logo-container {
    display: grid;
    grid-template-columns: auto 1fr auto; /* izquierda | centro | derecha */
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    animation: fadeInUp 1s ease-in-out;
}

/* Se mantiene */
.logo {
    height: 100px;
    margin-right: 0; /* ya no hace falta margen porque usamos grid */
    justify-content: left;
    padding-left: 20px;
}

/* Centro: título centrado (se mantiene .school-name) */
.logo-center {
    text-align: center;
    justify-content: center;
}

.school-name {
    font-size: 2.0em;
    font-weight: bold;
    animation: fadeInUp 0.2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Frase nueva debajo del título */
.school-phrase {
    margin-top: 6px;
    font-size: 1rem;
    line-height: 1.3;
    color: #e4e4e4;
    user-select: none; /* CSS estándar */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

/* Derecha: redes */
.socials {
    display: inline-flex;
    align-items: right;
    gap: 12px;
    padding-right: 30px;
    justify-content: right;
}

@media (max-width: 1000px){
 .socials{
    padding-right: 10px;
}
}

.social-link {
    font-size: 1.25rem;
    text-decoration: none;
    opacity: 0.9;
    transition: transform 0.15s ease, opacity 0.15s ease;
    color: #ffffff;
    padding-bottom: 60px;
}

.social-link:hover,
.social-link:focus {
    opacity: 1;
    transform: translateY(-1px);
}

/* Animación existente */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsivo */
@media (max-width: 640px) {
    .logo-container {
        grid-template-columns: 1fr; /* apilar */
        justify-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .school-phrase {
        font-size: 0.7rem; 
    }

    .logo { display: none;}
    .socials { justify-content: center; align-items: center; padding: 0;}
    .social-link { padding: 0;}
    .school-name{
        justify-content: center;
        align-items: center;
        justify-items: center;
    }
}

/* Estilos para dispositivos móviles */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    margin: 10px;
}

nav {
    background-color: #ed1919;
}

/* Estilos para dispositivos móviles */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
    margin: 10px;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 12px 0;
}

.nav-list li {
    margin: 0 10px;
    position: relative;
}

.nav-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #fff;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
    padding: 5px 10px;
    transition: background-color 0.3s, opacity 0.3s;
    display: block;
    border-radius: 3px;
}

.nav-list a:hover {
    background-color: rgb(255, 255, 255);
    opacity: 0.9;
    color: #ed1919;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ed1919;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-content ol{
    margin: 0;
    border-bottom: 1px solid #fff;
}

.dropdown-content ol a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content ol a:hover {
    background-color: rgb(255, 255, 255);
    color: #ed1919;
    border-radius: 0px;
}

.welcome-section {
    background-image: url('sede2.png'); /* Reemplaza 'path/to/your/image.jpg' con la ruta de tu imagen de fondo */
    background-size: cover;
    background-position: center;
    color: #fff; /* Cambia el color del texto si es necesario para asegurar legibilidad */
    padding: 250px 0px; /* Ajusta el relleno según sea necesario */
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto;
}

section {
    margin-bottom: 0px;
}

section h1 {
    font-size: 2.2em;
    color: #003366;
    text-align: center;
    margin-top: 15px;
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.nav-list .dropdown-content {
    display: none;
    position: absolute;
    background-color: #ed1919;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.nav-list .dropdown:hover .dropdown-content {
    display: block;
}

.nav-list .dropdown-content ol {
    margin: 0;
}

.nav-list .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.nav-list .dropdown-content a:hover {
    background-color: rgb(255, 255, 255);
    opacity: 0.9;
    color: #ed1919;
}

main {
    padding: 0;
    border-radius: 10px;
    background-color: aliceblue;
    background-size: cover;
}

.footer {
    background-color: #565a5e;
    padding: 20px;
    color: #ffffff;
    border-radius: 10px;
    margin: 0 200px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(9, 0, 0, 0.1);
    margin-top: 2%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column.left {
    text-align: left;
}

.footer-column.right {
    text-align: right;
}

.separator {
    margin: 20px 0;
    border-top: 1px solid #ffffff;
}

.separator-dos {
    margin: 20px 0;
    border-top: 1px solid #000000;
    margin-right: 20px;
    margin-left: 20px;
}

.separator-tres {
    margin: 20px 0;
    border-top: 1px solid #000000;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #ffffff;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.no-copiable {
    user-select: none; /* CSS estándar */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}

.column {
    flex: 1;
    padding: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-column img {
    width: 40%;
    height: auto;
    display: block;
}

.text-column p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.social-column p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 15px; /* Añadido para separación entre el párrafo y las imágenes */
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Ajusta este valor según la separación deseada */
    width: 100%;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social img {
    width: 45px; /* Ajusta este valor según tus necesidades */
    height: auto;
    display: block;
}

.column-image:hover {
    transform: scale(1.1); /* Aumenta el tamaño al 110% en el hover */
}

    :root{
      /* Paleta clara */
      --bg1:#f7f9ff;
      --bg2:#eef3ff;
      --card:#ffffff;
      --stroke:#dfe7ff;
      --stroke2:#e9eeff;
      --txt:#18233a;
      --muted:#5b6b8a;
      --primary:#2b59ff;
      --primarySoft:#e8efff;
      --shadow: 0 12px 28px rgba(17, 35, 69, .10);
      --shadow2: 0 6px 18px rgba(17, 35, 69, .08);
      --radius: 15px;
    }


    .page{
        max-width: 100%;
      width:min(1100px, 92vw);
      margin: 0 auto;
      padding: 20px 0 0px;
    }

    .hero{
      padding: 18px 18px 14px;
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, #ffffff, #fbfcff);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .hero__badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--primarySoft);
      border: 1px solid #cfe0ff;
      font-weight: 800;
      letter-spacing:.9px;
      font-family:"Montserrat", sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      color: #1f3cff;
    }

    .hero__title{
      margin: 12px 0 8px;
      font-family:"Montserrat", sans-serif;
      font-weight: 800;
      letter-spacing: .2px;
      font-size: clamp(22px, 3vw, 34px);
      color:#132040;
    }

    .hero__text{
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
      font-size: 14.8px;
    }

    .grid{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }

    .card{
      border-radius: var(--radius);
      border: 1px solid var(--stroke);
      background: var(--card);
      box-shadow: var(--shadow2);
      overflow: hidden;
      transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    .card:hover{
      transform: translateY(-2px);
      border-color:#c7d6ff;
      box-shadow: 0 16px 34px rgba(17, 35, 69, .12);
    }

    .card__head{
      padding: 14px 14px 10px;
      border-bottom: 1px solid var(--stroke2);
      background: linear-gradient(180deg, #fbfcff, #ffffff);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
    }

    .card__title{
      margin:0;
      font-family:"Montserrat", sans-serif;
      font-weight: 800;
      font-size: 16px;
      letter-spacing:.2px;
      color:#132040;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #f3f6ff;
      border: 1px solid #e1e9ff;
      color: #3e4f75;
      font-family:"Montserrat", sans-serif;
      font-size: 12px;
      white-space: nowrap;
    }

    .card__body{ padding: 12px 14px 16px; }

    .section{
      border: 1px solid var(--stroke2);
      background: #fbfcff;
      border-radius: 18px;
      padding: 12px;
      margin-top: 10px;
    }
    .section:first-child{ margin-top: 0; }

    .section__title{
      margin: 0 0 10px;
      font-family:"Montserrat", sans-serif;
      font-weight: 800;
      font-size: 12.5px;
      letter-spacing:.6px;
      text-transform: uppercase;
      color: #41557e;
      display:flex;
      align-items:center;
      gap:8px;
    }

    .list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap: 8px;
    }

    .item{
      display:flex;
      align-items:flex-start;
      gap: 10px;
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px solid var(--stroke2);
      background: #ffffff;
    }

    .tag{
      flex: 0 0 auto;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--primarySoft);
      border: 1px solid #cfe0ff;
      font-family:"Montserrat", sans-serif;
      font-weight: 800;
      font-size: 12px;
      color: #1f3cff;
      min-width: 72px;
      text-align:center;
    }

    .name{
      line-height: 1.35;
      font-weight: 700;
      color: #1a2a4a;
    }

    .note{
      margin-top: 10px;
      color: #5b6b8a;
      font-size: 13px;
      line-height: 1.5;
    }

    footer{
      margin-top: 18px;
      color: #5b6b8a;
      font-size: 13px;
      text-align: center;
    }

    /* Responsive extra */
    @media (max-width: 420px){
      .card__head{ flex-direction: column; align-items: flex-start; }
      .tag{ min-width: 64px; font-size: 11px; }
      .item{ padding: 10px 9px; }
    }

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1200px) {
    .left-o,
    .right-o {
        float: none; /* Elimina el flotado para que se apilen en una columna */
        text-align: left; /* Ajusta el texto a la izquierda */
    }

    .right-o {
        text-align: left; /* Asegúrate de que el texto alineado a la izquierda en pantallas pequeñas */
    }

    .separator {
        flex-direction: column; /* Cambia a dirección de columna en pantallas pequeñas */
        text-align: center; /* Alinea el texto al centro */
        margin-top: 10px; /* Ajusta el margen superior */
    }

    .separator::before,
    .separator::after {
        margin: 10px 0; /* Reduce el espacio entre las líneas en pantallas pequeñas */
    }

    .separator img {
        height: 20px; /* Reducir tamaño del logo para pantallas pequeñas si es necesario */
        margin: 0; /* Eliminar margen derecho en pantallas pequeñas */
    }

    .title-container{
        text-align: center;
        justify-content: center;
        justify-items: center
    }

}
/* Encabezado */
@media (max-width: 1450px) {

    .footer{
        margin: 10px; /* Ajusta el margen */
        padding: 10px; /* Ajusta el relleno */
        padding-bottom: 20px;
    }

    .section-qs {
        width: 100%; /* Ocupa el ancho completo */
        margin: 20px 0; /* Ajusta el margen */
        padding: 10px; /* Ajusta el relleno */
    }

    .container{
        margin: 0 10px;
    }

    .contenido-card{
        font-size: 1em;
    }

    .parrafo-nose{
        font-size: 1em;
    }

    h2{
        font-size: 1.3em;
    }

    .simple-news-box{
        font-size: 0.8em;
    }

}


@media (max-width: 1000px) {


    .nav-list {
        display: none;
        flex-direction: column;
        align-items: left;
        width: 100%;
        background-color: #ed1919;
    }
  
  
    .nav-list.active {
        display: flex;
    }
  
    .nav-list li {
        margin: 10px 0;
        padding-left: 10px;
        padding-right: 10px;
    }
  
    .menu-icon {
        display: flex;
        padding-bottom: 35px;
        padding-top: 20px;
        margin-bottom: 0px;
        padding-left: 10px;
    }

  
    .nav-list a {
      border-bottom: 1px solid #fff;
      padding-bottom: 10px;
      padding-top: 10px;
      line-height: 15px;
    }
  
    .dropdown-content {
      position: absolute;
      width: 43%; /* Dropdowns ocupan todo el ancho en pantallas pequeñas */
      left: 10px;
      padding: 0;
      box-shadow: 0px 0px 20px rgb(255, 255, 255);
    }
  }


/* Pie de Pagina */
@media (max-width: 1000px) {
    .footer {
        padding: 40px;
        margin: 0 10px; /* Elimina el margen horizontal en pantallas pequeñas */
        margin-top: 10px;
        padding-bottom: 20px;
    }

    .footer-content {
        flex-direction: column; /* Cambia a diseño de columna para pantallas pequeñas */
        
    }

    .footer-column {
        flex: 1 1 auto; /* Ajusta el ancho automático para adaptarse al contenido */
        padding: 10px;
        text-align: center; /* Alineación al centro para pantallas pequeñas */
    }

    .image-column img {
        width: 25%; /* Ajusta el tamaño de la imagen para pantallas pequeñas */
    }

    .social img {
        width: 30px; /* Ajusta el tamaño de las imágenes de redes sociales para pantallas pequeñas */
    }

    .school-name{
        font-size: 1.4em;
        padding: 0px;
        text-align: center;
        
    }

    .logo-container{
        padding: 20px;
    }

    .logo{
        padding-left: 0;
    }


    .text-column p{
        font-size: 14px;
    }

    .social-column p{
        font-size: 14px;
    }

}

.main-ok{
    width: 100%;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root{
      --size-dos: 48px;      /* diámetro del círculo */
      --icon-dos: 23px;       /* tamaño del logo dentro */
      --gap-dos: 18px;
    }
    
.socials-dos{
      display:flex; align-items:center; gap:var(--gap-dos);
    }

    .socials-dos a{
      width:var(--size-dos); height:var(--size-dos);
      background:#fff; border-radius:50%;
      display:grid; place-items:center;
      text-decoration:none;
      box-shadow: 0 6px 18px rgba(0,0,0,.08);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      border:1px solid rgba(0,0,0,.06);
    }

    .socials-dos a:hover{
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 10px 24px rgba(0,0,0,.12);
    }

    .socials-dos i{
      font-size:var(--icon-dos);
      line-height:1;
    }

    /* Colores oficiales */
    .facebook i{ color:#1877F2; }   /* Facebook Blue */
    .youtube  i{ color:#FF0000; }   /* YouTube Red  */

    /* Instagram gradient en el ícono (texto) */
    .instagram i{
      background:
        radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    /* Accesibilidad: foco visible */
    .socials-dos a:focus{
      outline:none;
      box-shadow: 0 0 0 3px rgba(24,119,242,.25), 0 6px 18px rgba(0,0,0,.08);
    }

    /* ===== Responsivo ===== */

/* Teléfonos pequeños */
@media (max-width: 500px){
  :root{
    --size-dos: 40px;      /* diámetro del círculo */
      --icon-dos: 20px;       /* tamaño del logo dentro */
      --gap-dos: 15px;
  }
}


/* Accesibilidad: reduce animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce){
  .socials a{ transition: none; }
  .socials a:hover{ transform: none; }
}

    .limec-uniformes-wrap{
      width:100%;
      margin:auto;
      position:relative;
      z-index:2;
    }

    /* Decoración de fondo */
    .limec-deco-1,
    .limec-deco-2,
    .limec-deco-3{
      position:fixed;
      border-radius:25%;
      z-index:-1;
      pointer-events:none;
      filter:blur(8px);
      opacity:.25;
    }

    .limec-deco-1{
      width:220px;
      height:220px;
      background:#00b4d8;
      top:60px;
      left:-70px;
    }

    .limec-deco-2{
      width:260px;
      height:260px;
      background:#ffd166;
      bottom:40px;
      right:-90px;
    }

    .limec-deco-3{
      width:180px;
      height:180px;
      background:#7b61ff;
      top:40%;
      right:8%;
    }

    /* Hero */
    .limec-hero{
      position:relative;
      padding:20px 0px 0px;
      text-align:center;
    }

    .limec-hero-box{
      background:rgba(255,255,255,.78);
      backdrop-filter:blur(10px);
      border:1px solid rgba(255,255,255,.65);
      border-radius:15px;
      box-shadow:0 18px 45px rgba(31, 75, 130, 0.14);
      padding:42px 28px;
      position:relative;
      overflow:hidden;
    }

    .limec-hero-box::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg, rgba(0, 160, 255, 0.10), rgba(255, 193, 7, 0.10), rgba(123, 97, 255, 0.10));
      z-index:0;
    }

    .limec-hero-inner{
      position:relative;
      z-index:1;
    }

    .limec-badge{
      display:inline-block;
      background:linear-gradient(90deg, #0088ff, #00bcd4);
      color:#fff;
      font-size:.9rem;
      font-weight:700;
      padding:9px 18px;
      border-radius:999px;
      margin-bottom:18px;
      letter-spacing:.4px;
      box-shadow:0 8px 20px rgba(0,136,255,.22);
    }

    .limec-hero h1{
      font-size:clamp(2rem, 4.2vw, 3.4rem);
      line-height:1.1;
      color:#0f2d4c;
      margin-bottom:14px;
      font-weight:800;
    }

    .limec-hero p{
      max-width:850px;
      margin:0 auto;
      font-size:clamp(1rem, 2vw, 1.15rem);
      color:#35536f;
    }

    /* Secciones */
    .limec-section{
      margin:20px 0 0px;
    }

    .limec-title{
      text-align:center;
      font-size:clamp(1.6rem, 3vw, 2.3rem);
      color:#12385b;
      margin-top: 30PX;
      margin-bottom:22px;
      font-weight:800;
      position:relative;
    }

    .limec-title::after{
      content:"";
      width:90px;
      height:5px;
      border-radius:999px;
      display:block;
      margin:10px auto 0;
      background:linear-gradient(90deg, #00a6ff, #ffd166, #7b61ff);
    }

    /* Normas */
    .limec-reglas-box{
      background:rgba(255,255,255,.82);
      border-radius:15px;
      padding:28px;
      box-shadow:0 16px 40px rgba(25, 66, 117, 0.10);
      border:1px solid rgba(255,255,255,.75);
    }

    .limec-reglas-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:18px;
    }

    .limec-regla{
      background:linear-gradient(145deg, #ffffff, #f3f9ff);
      border-radius:15px;
      padding:20px 18px;
      border:1px solid #dbefff;
      box-shadow:0 10px 24px rgba(0, 92, 171, 0.08);
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition:transform .25s ease, box-shadow .25s ease;
    }

    .limec-regla:hover{
      transform:translateY(-4px);
      box-shadow:0 16px 28px rgba(0, 92, 171, 0.14);
    }

    .limec-num{
      min-width:42px;
      height:42px;
      border-radius:50%;
      background:linear-gradient(135deg, #00a6ff, #7b61ff);
      color:#fff;
      font-weight:800;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1rem;
      box-shadow:0 8px 16px rgba(0, 140, 255, 0.25);
    }

    .limec-regla p{
      color:#2f4f6b;
      font-size:1rem;
    }

    /* Uniformes */
    .limec-uniformes-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:24px;
    }

    .limec-card-uniforme{
      position:relative;
      background:rgba(255,255,255,.86);
      border-radius:15px;
      padding:24px 22px 22px;
      text-align:center;
      box-shadow:0 18px 38px rgba(30, 75, 128, 0.12);
      border:1px solid rgba(255,255,255,.8);
      overflow:hidden;
      transition:transform .30s ease, box-shadow .30s ease;
      min-height:420px;
    }

    .limec-card-uniforme:hover{
      transform:translateY(-7px);
      box-shadow:0 22px 45px rgba(30, 75, 128, 0.18);
    }

    .limec-card-uniforme::before{
      content:"";
      position:absolute;
      left:-30px;
      top:-30px;
      width:130px;
      height:130px;
      border-radius:50%;
      background:rgba(0, 166, 255, .12);
    }

    .limec-card-uniforme::after{
      content:"";
      position:absolute;
      right:-35px;
      bottom:-35px;
      width:140px;
      height:140px;
      border-radius:50%;
      background:rgba(255, 209, 102, .16);
    }

    .limec-card-uniforme:nth-child(2)::before,
    .limec-card-uniforme:nth-child(4)::before{
      background:rgba(123, 97, 255, .12);
    }

    .limec-card-uniforme:nth-child(2)::after,
    .limec-card-uniforme:nth-child(3)::after{
      background:rgba(0, 196, 140, .14);
    }

    .limec-card-inner{
      position:relative;
      z-index:0;
    }

    .limec-card-uniforme h3{
      font-size:1.35rem;
      color:#143c63;
      margin-bottom:14px;
      font-weight:800;
    }

    .limec-imagen-box{
      height:250px;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:16px;
      border-radius:15px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.75), rgba(235,247,255,.95));
      border:2px dashed #bfdfff;
      padding:14px;
      overflow:hidden;
    }

    .limec-imagen-box img{
      max-width:100%;
      max-height:100%;
      object-fit:contain;
      display:block;
      filter:drop-shadow(0 12px 16px rgba(17, 68, 120, 0.15));
    }

    .limec-card-uniforme p{
      color:#43627f;
      font-size:.98rem;
      max-width:90%;
      margin:0 auto;
      text-align: left;
    }

    /* Franja final */
    .limec-footer-aviso{
      margin:10px 0 0px;
      background:linear-gradient(120deg, #0f7ae5, #00b4d8, #5e60ce);
      color:#fff;
      border-radius:15px;
      padding:28px 24px;
      text-align:center;
      box-shadow:0 16px 35px rgba(18, 84, 170, 0.22);
    }

    .limec-footer-aviso h2{
      font-size:clamp(1.4rem, 2.6vw, 2rem);
      margin-bottom:10px;
      font-weight:800;
    }

    .limec-footer-aviso p{
      font-size:1rem;
      max-width:850px;
      margin:auto;
    }

    /* Responsive */
    @media (max-width: 900px){
      .limec-reglas-grid,
      .limec-uniformes-grid{
        grid-template-columns:1fr;
      }

      .limec-card-uniforme{
        min-height:auto;
      }
    }

    @media (max-width: 600px){
      .limec-hero{
        padding:20px 0px 10px;
      }

      .limec-hero-box{
        padding:28px 18px;
        border-radius:15px;
      }

      .limec-reglas-box{
        padding:18px;
        border-radius:15px;
      }

      .limec-regla{
        padding:16px 14px;
        border-radius:15px;
      }

      .limec-num{
        min-width:36px;
        height:36px;
        font-size:.9rem;
      }

      .limec-card-uniforme{
        padding:20px 5px;
        border-radius:15px;
      }

      .limec-imagen-box{
        height:220px;
      }

      .limec-footer-aviso{
        border-radius:15px;
        padding:22px 16px;
      }
    }