
.venue-hero {
    color: black;
    position: relative;
    overflow: hidden;
}

.venue-hero .container-fluid {
    position: relative;
    z-index: 2;
}

.venue-title {
    color: black;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.venue-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.modern-card {
    background: white;
    border-radius: 24px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3282b8, #0f4c75);
}

.institution-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px 30px 0 60px;
}

.institution-logo-container {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    overflow: hidden;
}

.institution-logo-container img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.institution-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.institution-founded {
    color: #64748b;
    font-size: 1.1rem;
}

.modern-content {
    padding: 0 90px 30px;
}

.venue-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #3282b8;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.highlight-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.highlight-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.campus-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.campus-title {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.campus-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
}

.location-section {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.address-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 30px;
    padding-bottom: 15px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
    width: fit-content;
    max-width: 400px; 
    min-width: 300px; 
    margin: 0 auto;
}

.address-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-text {
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.9;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .venue-title {
        font-size: 2.5rem;
    }
    
    .institution-header {
        flex-direction: column;
        text-align: center;
    }
    
    .institution-logo-container {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-card,
    .campus-section,
    .location-section {
        margin: 0 -15px;
        border-radius: 0;
    }

    /* Fix para el contenedor del card */
    .card.border-0 {
        margin: 0 15px !important;
    }
    
    /* Fix para el espaciado del card Mexico City Campus */
    .card-body.p-5 {
        padding: 2rem 2rem !important;
    }
}
@media (max-width:768px){
    .container-fluid {
        padding-left: 40px !important;
        padding-right: 30px !important;
    }
}

