.evento,
.servico {
    max-width: 1200px;
    margin: 50px auto;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(29, 78, 137, 0.12);
}
.evento {
    background: linear-gradient(135deg, #ffffff, #dff3ff);
}
.servicos {
    background: linear-gradient(135deg, #eaf6ff, #ffffff);
}
.event,
.service {
    display: flex;
    align-items: center;
    gap: 50px;
}
.texto {
    flex: 1.4;
}
.imagem {
    flex: 1;
}
.imagem img {
    width: 100%;
    max-width: 450px;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
.texto h1 {
    color: #1d4e89;
    font-size: 2.3rem;
    margin: 20px;
}
.texto h2 {
    color: #256fb0;
    font-size: 1.5rem;
    margin: 20px 0 15px;
}
.texto p {
    color: #333;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.texto ul {
    margin: 20px 0;
    padding-left: 25px;
}
.texto li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #333;
}
.texto a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background-color: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.texto a:hover {
    background-color: #1d4e89;
    transform: translateY(-3px);
}
@media(max-width: 850px){
    .event,
    .service {
        flex-direction: column;
    }
    .evento,
    .servicos {
        margin: 35px 15px;
        padding: 28px 22px;
    }
    .texto h1 {
        font-size: 1.8rem;
    }
    .texto h2 {
        font-size: 1.3rem;
    }
    .imagem img {
        max-width: 100%;
    }
    .texto a {
        display: block;
        text-align: center;
    }
}
