body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fc;
    color: #333;
}

/* Títulos principales */
.particip {
    font-size: 28px;
    font-weight: 800;
    color: #114877;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* NAVBAR */
.navbar {
    min-height: 70px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-logo,
.navbar-banner-img {
    height: 45px;
    object-fit: contain;
}

@media (max-width: 576px) {

    .navbar-logo,
    .navbar-banner-img {
        height: 35px;
    }
}

/* TARJETAS DE EXPOSICIÓN */
.expo-img-container {
    width: 85%;
    height: 430px;
    overflow: hidden;
    border-radius: 14px;
    margin: 0 auto;

    /* Transición más larga + curva suave */
    transition:
        transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Imagen */
.expo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.45s ease-out;
}

/* Hover del contenedor */
.expo-img-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.20);
}

/* Pequeño zoom muy suave en la imagen */
.expo-img-container:hover .expo-img {
    transform: scale(1.00);
}

/* Contenedor de cada tarjeta */
.expo-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 5px 0px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}

/* ESTILOS DE FECHAS */
.expo-date {
    font-size: 30px;
    font-weight: 700;
    margin-top: 2px;
}

/* UBICACIÓN */
.expo-location svg {
    margin-bottom: 5px;
}

.expo-location span {
    font-size: 20px;
    font-weight: 700;
}

.expo-location p {
    font-weight: 700;
    margin-top: 4px;
}

/* ENLACES CORPORATIVOS */
.expo-link {
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
    margin-top: 6px;
    text-decoration: none;
    transition: opacity .2s ease;
}

.expo-link:hover {
    opacity: 0.7;
}

/* FOOTER */
.footer {
    background: #f9f9fa;
    padding: 20px 0;
    border-top: 1px solid #e6e6e6;
}

.footer-title {
    font-size: 26px;
    font-weight: 700;
    color: #1f4e79;
    letter-spacing: 0.5px;
}

/* ICONOS */
.footer-icons img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}

.footer-icons img:hover {
    transform: scale(1.08);
}

.footer-icon-item {
    text-align: center;
    margin-bottom: 5px;
}

.footer-icon-item p {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* DIVIDER */
.footer-divider {
    margin: 10px auto;
    width: 80%;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #b0b0b0, transparent);
}

/* TEAM CARDS */
.footer-team-card {
    margin-bottom: 35px;
    padding: 15px 5px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.footer-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 12px;
}

.footer-team-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1f4e79;
    margin-bottom: 10px;
}

.team-link {
    display: block;
    font-size: 14px;
    color: #444;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}

.team-link:hover {
    color: #1f4e79;
}