@import url('https://fonts.cdnfonts.com/css/futura-std-4');

body {
    font-family: 'Futura Std', sans-serif;
    margin: 0;
    padding: 0;
    color-scheme: light;
    background: #fff;
    color: #000;
}

.eventos-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/banner-fale-conosco.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.2;
    z-index: -1;
}

.eventos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 80dvh;
    padding: 50px 50px;
}

.evento-content {
    width: 60%;
}

.evento {
    display: flex;
    background-color: #f7f7f7a2;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
}

.evento-info {
    flex: 50%;
    padding-right: 15px;
    color: #002060;
}

.evento-info h3 {
    font-size: 38px;
    margin: 0;
}

.evento-info p {
    font-size: 18px;
}

.evento-image {
    text-align: center;
}

.evento-image img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 8px;
    object-fit: cover;
}

.exibir-mais {
    display: none;
}

@media (max-width: 1200px) {
    .evento-content {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .evento-content {
        width: 100%;
    }

    .evento {
        flex-direction: column-reverse;
    }
}

@media (max-width: 400px) {
    .evento {
        padding: 15px 10px;
    }

    .evento-info h3 {
        font-size: 28px;
        margin-top: 10px;
    }

    .evento-info p {
        font-size: 16px;
    }

    .evento-info .exibir-mais {
        justify-content: center;
    }

    .evento-descricao {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .evento-descricao.active {
        display: block;
        opacity: 1;
    }

    .exibir-mais {
        display: flex;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
    }
}