/* Fuente y fondo general */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f5; /* Color de fondo neutro */
    margin: 0;
    padding: 20px;
    color: #32315d; /* Color principal de texto */
}

.container {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
}

/* Estilo para el formulario */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form label {
    font-weight: bold;
    color: #2d90c8; /* Azul del cliente */
}

form input[type="text"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s;
}

form input[type="text"]:focus,
form textarea:focus {
    border-color: #2d90c8; /* Azul del cliente */
    outline: none;
}

form input[type="file"] {
    padding: 5px;
}

form input[type="submit"] {
    background-color: #2d90c8; /* Azul */
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1em;
}

form input[type="submit"]:hover {
    background-color: #32315d; /* Azul oscuro */
}

/* Estilo para las publicaciones */
.publicacion {
    background-color: #fff; /* Fondo blanco para las publicaciones */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    padding: 20px;
    margin-bottom: 20px; /* Espacio entre publicaciones */
}

.publicacion h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #2d90c8; /* Color azul */
}

.publicacion p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555; /* Texto gris oscuro */
}

.publicacion .fecha {
    font-size: 0.9em;
    color: #392713; /* Marrón */
    margin-bottom: 10px;
}

/* Espacio entre archivos y texto */
.archivos {
    margin-top: 15px; /* Espacio entre el texto y los archivos */
}

.imagen-pequeña {
    width: 100%;
    max-width: 150px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.imagen-pequeña:hover {
    transform: scale(1.05);
}

.btn-pdf {
    background-color: #e5c12c; /* Amarillo */
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-pdf:hover {
    background-color: #d4a71d; /* Un tono más oscuro de amarillo */
}

/* Estilo para el lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro */
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cerrar {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Logos sponsor */
.sponsor-logo-container {
    height: 150px; /* Ajusta esta altura según tus necesidades */
}

.sponsor-logo {
    max-height: 100%; /* Para asegurar que los logos no excedan la altura del contenedor */
}

.modal {
    z-index: 1050 !important;
}

.modal-backdrop {
    z-index: 1040 !important;
}