body {
    font-family: 'Segoe UI', sans-serif;
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    
}

.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    width: 100%;
    overflow: visible;
}

h2 {
    text-align: center;
    color: #2c5263;
    margin-bottom: 1rem;
}

label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

input, select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

button {
    width: 100%;
    background: #2c5263;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0F2027;
}

.footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #777;
}


.menu-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.menu-button {
    display: block;
    max-width: 300px;
    width: 100%;
    background: #2c5263;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;

}

.menu-button:hover {
    background: #0F2027;
    background: #192746;
}

.parrafo{
    text-align: justify;
}

.subtitulo{
    font-weight: bold;
    text-transform: uppercase;
    padding: 6px 10px;
    background-color: #c8d3df;
    text-align: center;
    color: #000000;
    font-family: Arial, sans-serif;
}

.pro_fondo{
    font-family: 'Segoe UI', sans-serif;
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #377056, #2e6e52, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #377056, #2e6e52, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    
}

.benef_fondo{
    font-family: 'Segoe UI', sans-serif;
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #00575a, #02686b, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #00575a, #02686b, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    
}


table {
        width: 100%;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
    }
        
th, td {
        border: 1px dotted #333;
        text-align: center;
        padding: 8px;
    }
th {
        background-color: #012F67;
        color: white;
        }
.seccion {
        background-color:rgb(169, 191, 218);
        font-weight: bold;
        text-align: left;
        }
.pregunta {
     text-align: left;
}

.tooltip-icon {
    position: relative;
    margin-left: 6px;
    cursor: help;
    font-weight: bold;
}

.tooltip-box {
    visibility: hidden;
    width: 280px;
    background-color: #012F67;
    color: white;
    text-align: left;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 100;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tooltip-icon:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
}


.descripcion-box {
    margin-top: 10px;
    padding: 12px;
    background-color: #f4f6f9;
    border-left: 4px solid #012F67;
    border-radius: 6px;
    font-size: 14px;
}


    #tooltip-global{
    position: fixed;
    display: none;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    max-width: 280px;
    z-index: 99999;
    pointer-events: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }