body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1em;
    text-align: center;
}

h2 {
     text-align: center;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    ol {
      font-size: 16px;
      line-height: 1.8;
      padding-left: 20px;
    }
    li {
      margin-bottom: 10px;
    }

.justificar-lista {
 text-align: justify;
}

.container {
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 1.5rem 2rem;
      max-width: 700px;
      margin: 0 auto;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      border-radius: 6px;
    }
    p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }
    .otro {
 font-style: normal;
 color: #6a1b9a; /* color morado oscuro sobrio */
 font-weight: 600;
 background-color: #706672; /* fondo lila muy claro */
 padding: 1rem 1.25rem;
 /*border-left: 5px solid #7b1fa2; /* borde morado oscuro */
 border-radius: 4px;
 margin-top: 1rem;
}

    li {
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }
    .autorizacion {
      font-style: normal;
      color: #004080;
      font-weight: 600;
      background-color: #e6f0ff;
      padding: 1rem 1.25rem;
      border-left: 5px solid #004080;
      border-radius: 4px;
    }
    .aviso {
      font-style: normal;
      color: #004d00;
      font-weight: 600;
      background-color: #e6ffe6;
      padding: 1rem 1.25rem;
      border-left: 5px solid #007700;
      border-radius: 4px;
    }
    .nota-final {
      font-size: 1rem;
      font-style: italic;
      color: #555;
    }

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

nav a:hover {
    color: #ccc;
}

.logo-container {
    width: 100%;
    height: 200px;
    background-color:transparent;
    border: none;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

main h1 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.parrafo-con-vinetas {
    position: relative; /* Para posicionar las viñetas */
    padding-left: 20px; /* Espacio para las viñetas */
}

.con-vineta {
    position: relative; /* Para posicionar la viñeta */
    padding-left: 20px; /* Espacio para la viñeta */
}

.con-vineta::before {
    content: "•"; /* Símbolo de viñeta */
    position: absolute; /* Posiciona la viñeta */
    left: 0; /* Alinea a la izquierda */
    color: #000000; /* Color de la viñeta */
    font-size: 20px; /* Tamaño de la viñeta */
    line-height: 1.6; /* Alinea la viñeta con el texto */
}
.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

p {
    text-align: center;
    color: #666;
}

.imagen-responsive {
    text-align: center; /* Centra la imagen */
    margin: 20px 0; /* Espaciado vertical */
}

.imagen-responsive img {
    width: 100%; /* La imagen ocupará el 100% del ancho de su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    max-width: 800px; /* Ancho máximo para pantallas grandes */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

th {
    background-color: #4CAF50;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #ddd;
}

.tabla-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.destacado {
    background-color: #ffe6e6; /* Color de fondo suave */
    border-left: 5px solid #ff4d4d; /* Borde a la izquierda */
    padding: 10px; /* Espaciado interno */
    margin: 20px 0; /* Margen superior e inferior */
    font-weight: bold; /* Texto en negrita */
    color: #333; /* Color del texto */
}

p {
    line-height: 1.6; /* Espaciado entre líneas */
    color: #666; /* Color del texto normal */
}

.con-linea {
    border-bottom: 2px solid #4CAF50; /* Línea verde debajo del párrafo */
    padding-bottom: 5px; /* Espacio entre el texto y la línea */
}

.botones {
    display: flex; /* Utiliza flexbox para un diseño flexible */
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en varias líneas */
    justify-content: center; /* Centra los elementos horizontalmente */
    margin: 20px 0; /* Espaciado vertical */
}

.boton {
    background-color: #007BFF; /* Color de fondo del botón */
    color: white; /* Color del texto */
    text-align: center; /* Centra el texto dentro del botón */
    padding: 15px 20px; /* Espaciado interno del botón */
    margin: 10px; /* Espacio entre botones */
    border-radius: 5px; /* Bordes redondeados */
    text-decoration: none; /* Quita el subrayado del enlace */
    flex: 1 1 calc(25% - 20px); /* Hace que cada botón ocupe el 25% del ancho menos el margen */
    box-sizing: border-box; /* Incluye padding y margen en el ancho total */
}

.boton:hover {
    background-color: #0056b3; /* Cambia el color al pasar el mouse */
}
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    clear: both;
}

.social-media {
    margin-top: 10px;
}

.social-media i {
    font-size: 18px;
    margin-right: 10px;
    color: #fff;
}

.social-media a:hover i {
    color: #ccc;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    nav li {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .logo-container {
        margin-top: 20px;
    }
    main {
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    main {
        margin: 10px auto;
    }
}

/* === NUEVOS ESTILOS PARA REQUISITOS 2025-2026 === */
.requisitos-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.requisitos-lista {
    counter-reset: requisito-counter;
    list-style-position: outside;
}

.requisitos-lista li {
    counter-increment: requisito-counter;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-left: 6px solid #007bff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.requisitos-lista li strong {
    color: #dc3545;
    font-size: 1.1em;
}

.notas-importantes {
    margin-top: 12px;
    padding: 15px 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 0.95em;
    color: #856404;
}

.calendario-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.calendario-container h3 {
    margin-top: 0;
    font-size: 1.4em;
}

.calendario-tabla {
    width: 100%;
    background: white;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    margin: 20px 0;
}

.calendario-tabla th {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 10px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9em;
}

.calendario-tabla td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.calendario-tabla tr:hover td {
    background-color: #f8f9fa;
}

.nota-pie {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

.nota-pie strong {
    color: #856404;
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.fechas-adicionales {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    background: rgba(255,255,255,0.25);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.fechas-adicionales p {
    margin: 5px 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

main h3 {
    color: #333;
    text-align: center;
    margin: 25px 0 15px 0;
    font-size: 1.3em;
    border-bottom: 3px solid #007bff;
    padding-bottom: 8px;
    display: inline-block;
}

/* RESPONSIVE PARA MÓVILES */
@media (max-width: 768px) {
    .requisitos-lista li {
        padding: 15px 12px;
        margin: 15px 0;
    }
    
    .calendario-tabla {
        font-size: 0.85em;
    }
    
    .calendario-tabla th,
    .calendario-tabla td {
        padding: 8px 4px;
    }
}
