@font-face {
    font-family: Suprema;
    src: url(../fuentes/Artegra-SupremaThin.otf);
}
@font-face {
    font-family: SupremaBold;
    src: url(../fuentes/suprema-bold.ttf);
}
body {
    background: #f0f0f0;
    color: #333;
    font-family: Suprema;
}
span{
    font-family: SupremaBold;
}
#loader-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease-out; 
}

.navbar {
    transition: background-color 0.8s ease;
    background-color: transparent; 
    margin-bottom: 20px;
    position: fixed;
    width: 100vw;
    z-index: 999;
}
.scrolled {
    background-color: #f4f4f4
}

.nav-link {
    font-family: SupremaBold;
    color: #ffffff;
}
.scrollednl{
    color: #233a64;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/staff.jpg) no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.hero-section span {
    color: white;
}


#administrativos-2 .section-header {
    text-align: center;
    margin-bottom: 50px;
}
#administrativos-2 .section-header h1 {
    color: #233a64;
}
#administrativos-2 .section-header h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #233a64;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}
#administrativos-2 .section-intro {
    text-align: justify;
    margin-bottom: 40px;
}
#administrativos-2 .section-intro p {
    font-size: 1.125rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    font-weight: bold;
}
#administrativos-2 .admin-card {
    text-align: center;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    cursor:pointer;
    background: #fff;
    color: #333;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#administrativos-2 .admin-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
#administrativos-2 .admin-card img {
    width: 100%;
    object-fit: cover;
}
#administrativos-2 .admin-card .card-body {
    padding: 10px;
    transition: background-color 0.3s ease;
    color: #233a64;
}
#administrativos-2 .admin-card:hover .card-body {
    background-color: #233a64;
    color: white;
}
#administrativos-2 .admin-name {
    font-size: 1.25rem;
    font-weight: bold;
}
#administrativos-2 .admin-position {
    font-size: 1rem;
}
#administrativos-2 .admin-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}
#administrativos-2 .admin-card-wrapper .col-md-2 {
    flex: 0 0 19%;
    max-width: 19%;
}
@media (max-width: 1200px) {
    #administrativos-2 .admin-card-wrapper .col-md-2 {
        flex: 0 0 23%;
        max-width: 23%;
    }
}
@media (max-width: 992px) {
    #administrativos-2 .admin-card-wrapper .col-md-2 {
        flex: 0 0 30%;
        max-width: 30%;
    }
}
@media (max-width: 768px) {
    #administrativos-2 .admin-card-wrapper .col-md-2 {
        flex: 0 0 45%;
        max-width: 45%;
    }
}
@media (max-width: 576px) {
    #administrativos-2 .admin-card-wrapper .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

footer {
    background-color: rgb(243, 243, 243);
    color: #233a64;
    padding: 20px 0;
    font-family: SupremaBold;
}

footer p {
    margin: 0;
    font-size: 0.875rem;
    color: #233a64;
}

footer a {
    color: #233a64;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .col-md-4 img {
  margin-bottom: 1rem;
}

footer .col-md-4 h5 {
  margin-bottom: 0;
}

footer .desarrollo{
    color: #54728fc4;
}