/* Estilo de la barra de navegación */
.navbar {
    background-color: #ffffff;
}

.menu--iris {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu__list {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu__item {
    margin: 0;
    position: relative;
}

.menu__link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000881;
    z-index: -1;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
}

.menu__link:hover::before {
    transform: scaleX(1);
}

.menu__link:hover {
    color: #ffffff;
}

/* Submenú */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu__item:hover .submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #000881;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.submenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000881;
    z-index: -1;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 5px;
}

.submenu a:hover::before {
    transform: scaleX(1);
}

.submenu a:hover {
    color: #ffffff;
}

/* Estilo para la sección de parallax */
.parallax {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.parallax-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.parallax-text p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Estilo de la sección de introducción */
.intro {
    text-align: center;
    margin-bottom: 30px;
}

.intro h2 {
    color: #000881;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Estilo de la línea de tiempo */
.timeline {
    margin: 50px 0;
    position: relative;
    padding: 40px 0;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: #000881;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
/*NO CAMBIAR */
.timeline-content {
    background-color: #f4f4f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #000881;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

/* Estilo de testimonios */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    color: #000881;
    font-weight: bold;
    margin-bottom: 30px;
}
/*NO TOCAR*/
.carousel-item blockquote {
    background-color: #f4f4f9;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
    font-size: 1.1em;
    margin: 0;
}

.carousel-item footer {
    margin-top: 10px;
    font-size: 0.9em;
    color: #0a1f44;
}


