.titulo-decorado {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    max-width: 1200px; 
    margin: 40px auto; 
    padding: 0 20px;
}

.titulo-decorado h1{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    letter-spacing: 1.2px;
    color: var(--red-velvet);
    margin: 0 20px;
    white-space: nowrap; 
}

.linha {
    height: 6px; /* altura total */
    background: none;
    border: none;
    position: relative;
    flex: 1;
    margin: 0 20px;
}
  
.linha::before,
.linha::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #aaa;
}

.linha::before {
    top: 0; /* linha superior */
}

.linha::after {
    bottom: 0; /* linha inferior */
}


.textBox{
    margin-top: 10px;
}

.containerEventos{
    max-width: 1000px;
    margin: 20px auto;
    margin-top: 0;
    padding: 20px;
    text-align: center;
}

.serviceEventos {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.service-content {
    flex: 1;
    text-align: left;
}

.serviceEventos h2 {
    font-family: 'Playfair Display', serif;
    color: var(--red-velvet);
    margin-bottom: 10px;
}

.serviceEventos p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-right: 15px;
}

.imageBoxEventos{
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.serviceEventos img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 20px;
}

.btn-cardapio {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--red-velvet);
    color: white;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-cardapio:hover {
    background-color: #8b0000; /* tom mais escuro de vermelho */
}


/* Responsividade */
@media (max-width: 768px) {
    .serviceEventos {
        flex-direction: column-reverse; /* Inverte a ordem: img acima do texto */
        text-align: center;
        padding: 0;
    }

    .imageBoxEventos{
        width: 100%;
    }

    .serviceEventos img {
        margin-left: 0;
        margin-bottom: 15px;
    }

    .service-content {
        text-align: center;
        padding: 10px 30px 30px 30px;
    }
}
