.footer-torcoroma {
    background: linear-gradient(90deg, #347bc1, #4c94dc);
    color: #3f39bd;
    padding: 25px 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid #040b0c;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 -2px 10px rgba(7, 226, 142, 0.964);
}

.footer-container p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-container a {
    color: #fa0505;
    text-decoration: none;
}

.footer-container a:hover {
    text-decoration: underline;
}
/* css/estilo.css */
body {
    font-family: 'Roboto', sans-serif; /* O cualquier otra fuente limpia */
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

h3, h4, h5 {
    color: #011013; /* Un color de acento consistente */
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

h3 {
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
}

h4 {
    font-size: 1.5em;
    margin-top: 30px;
}

h5 {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
}

.group {
    margin-bottom: 18px;
}

.group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.group input[type="text"],
.group input[type="number"],
.group input[type="email"],
.group input[type="date"],
.group select {
    width: calc(100% - 16px); /* Para compensar el padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box; /* Incluir padding en el ancho y alto total del elemento */
}

.group input[type="text"]:focus,
.group input[type="number"]:focus,
.group input[type="email"]:focus,
.group input[type="date"]:focus,
.group select:focus {
    border-color: #17a2b8;
    box-shadow: 0 0 5px rgba(23, 162, 184, 0.5);
    outline: none;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-group label {
    font-weight: normal; /* Las etiquetas dentro del grupo de checkbox no necesitan ser negritas */
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.checkbox-group input[type="radio"] {
    margin-right: 8px;
}

/* Estilos para los botones */
button[type="submit"],
button[type="reset"] {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"] {
    background-color: #28a745;
    color: white;
}

button[type="submit"]:hover {
    background-color: #218838;
}

button[type="reset"] {
    background-color: #ffc107;
    color: #333;
}

button[type="reset"]:hover {
    background-color: #e0a800;
}

/* Estilo del pad de firma */
canvas {
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    margin-top: 10px;
}

/* Estilo para los inputs de archivo */
input[type="file"] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    background-color: #f0f0f0;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .container {
        margin: 15px;
        padding: 15px;
    }
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }
    .logo-container img {
        height: auto; /* Ajustar altura para pantallas más pequeñas */
        width: 100%;
        max-width: 150px; /* Limitar el ancho para el logo pequeño */
    }
    .logo-container img:last-child {
        max-width: 250px; /* Limitar el ancho para el logo grande */
    }
    .group {
        margin-bottom: 15px;
    }
    .section {
        padding: 15px;
    }
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
    footer > div {
        flex-direction: column;
        gap: 15px;
    }
}
/* Footer Info */
.footer-info {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: #01070e; /* Asegura el color del texto si el div padre lo hereda distinto */
}

.footer-info a {
    color: #01070e; /* Mismo color que el texto normal */
    text-decoration: none; /* Elimina el subrayado */
    font-weight: bold; /* Mantiene el texto en negrita */
    transition: color 0.3s ease; /* Transición suave para el hover */
}

.footer-info a:hover {
    color: #17a2b8; /* Cambia al color de acento al pasar el ratón */
}
