/* Configuración General */
.accesoinfo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
}

/* Sección de Instrucciones */
.intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.steps-list {
    padding-left: 20px;
    margin-bottom: 40px;
}

.steps-list li {
    margin-bottom: 15px;
    text-align: justify;
}

.steps-list a {
    color: #3b6695;
    text-decoration: underline;
}

/* Contenedor de Botones/Acciones */
.actions-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}



/* Botón Azul */
.btn-acceso {
    background-color: #3b6695;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 250px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-acceso:hover {
    background-color: #2d4f73;
    color: white;
}

/* Caja de descarga PDF */
.download-box {
    background-color: #e6f7ff;
    padding: 10px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 2;
    min-width: 300px;
}

.download-box p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.pdf-icon img {
    width: 45px;
    height: auto;
    transition: transform 0.2s ease;
}

.pdf-icon img:hover {
    transform: scale(1.1);
}

/* Footer */
.footer-info {
    font-size: 0.85rem;
    color: #555;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.footer-info p {
    margin: 2px 0;
}

/* Responsividad para móviles */
@media (max-width: 600px) {
    .actions-container {
        flex-direction: column;
    }
    
    .download-box {
        flex-direction: row;
    }
}