@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

:root {
    --color-amarillo: #FCD116;
    --color-azul: #003893;
    --color-rojo: #CE1126;
    --color-claro: #f4f4f4;
    --color-oscuro: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: var(--color-oscuro);
}

.hero {
    position: relative;
    color: white;
    padding: 120px 20px;
    text-align: center;
    background-image: url('../img/ciita_ipn.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 56, 147, 0.7); /* Azul con opacidad */
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.venue-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-section h2 {
    font-size: 2.5rem;
    color: var(--color-azul);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.venue-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-amarillo);
    margin: 10px auto 0;
    border-radius: 2px;
}

.venue-content {
    background: var(--color-claro);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    line-height: 1.8;
}

.venue-content p, .venue-content li {
    font-size: 1.1rem;
    text-align: justify;
    color: var(--color-oscuro);
    margin-bottom: 20px;
}

.venue-content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.map-container {
    text-align: center;
    margin-bottom: 40px;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-item img {
    width: 100%;
    display: block;
}
h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
