header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #c6e0f7;
}
.logowalia img {
    margin:5%;
    max-width: 25%; /* Hace que la imagen sea responsive */
    height: auto;  
}
h1 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 5%;
    font-weight: 10;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

section div{
  width: 30%;
}
section h2 {
    font-size: 1.8rem;
    text-align: left;
    color:#3058A4;
}
section p{
  color: rgb(107 114 128);
}

.mockups {
    margin: 20px;
}

.mockups img {
    max-width: 100%; /* Imagen responsive */
    height: auto;
    display: block;
    padding: 20px;
}

/* Estilo para la primera sección (imagen izquierda) */
.section-left {
    flex-direction: row; /* Imagen a la izquierda, texto a la derecha */
}

.section-left .mockups {
  margin-right: 10%;
}


/* Estilo para la segunda sección (imagen derecha) */
.section-right {
    flex-direction: row-reverse; /* Imagen a la derecha, texto a la izquierda */
}

.section-right .mockups {
  margin-left: 10%;
}

.icono {
  width: 16px; /* Ajusta el tamaño del ícono */
  height: 16px; /* Ajusta el tamaño del ícono */
  margin-left: 8px; /* Añade espacio entre el texto y el ícono */
}

section:nth-child(even) {
    background-color: #f4f4f4;
}

.seccion-video{
  justify-content: center;
}
  
.evento{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 80px;
}
.evento div{
    width: 70%;
    color: #3058A4;
    text-align: center;
}

.evento h3{
    font-weight: 500;
}

.evento a{
    text-decoration: none;
    color: #3058A4;
    font-weight: 800;
    font-size: x-large;
}

/* responsive */
@media (max-width: 768px) {
    section {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    section div {
        width: 100%; 
        align-items: center;
        justify-content: center;
    }
    section div h2{
        margin-bottom: 20px;
        font-size: x-large;
    }
    .mockups {
        margin: 0; /* Elimina márgenes para mejor ajuste */
        width: 100%;
    }

    .mockups img {
        width: 100%; 
        padding: 0; 
    }

    .section-left, 
    .section-right {
        flex-direction: column; 
    }

    .section-left .mockups, 
    .section-right .mockups {
        margin: 0; 
    }
}
