

/* Sección blanca debajo del header */
.section-sn {
    background-color: white;
    color: black;
    padding: 100px 20px 60px 20px; /* padding-top >= altura del header */
	margin-top: 70px;
}

/* Jumbotron y contenido dentro de la sección */
.section-sn .jumbotron {
    text-align: center;
    padding: 40px 20px;
    color: black;
}

.section-sn .title-large {
    font-size: 2rem;
    font-weight: bolder;
    margin-bottom: 20px;
}

.section-sn .bold {
    font-weight: bold;
    margin-bottom: 15px;
}

.section-sn .link-black {
    color: #000;
    text-decoration: underline;
}

/* Tabla misión/visión */
.section-sn .mission-vision table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 30px;
}

.section-sn .mission-vision td {
    width: 50%;
    vertical-align: top;
}

.section-sn .mission-vision h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.section-sn .mission-vision p {
    text-align: left;
    line-height: 1.5;
    color: #333;
}

/* Responsive */
@media(max-width: 768px) {
    .section-sn .mission-vision table, 
    .section-sn .mission-vision td {
        display: block;
        width: 100%;
    }

    .section-sn .mission-vision td {
        margin-bottom: 20px;
    }
}
header.scrolled {
  background-color: rgba(10, 15, 44, 0.8); /* bluedark con transparencia */
  backdrop-filter: blur(10px);
}