html,
body {
    height: 100%;
    margin: 0;
}

body {
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #9ee5ee, #b79ae6);
    font-family: 'Poppins', sans-serif;
}

.header-container {
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    margin: 20px;
}

.informacoes {
    background-color: rgba(255, 255, 255, 0.589);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    width: 40%;
}

.informacoes h1 {
    margin: 8px;
    color: #000000;
    font-size: 25px;
}

.pesquisa-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.pesquisa-container .input-group {
    width: 40%;
    height: 100%;
    background-color: rgba(165, 147, 147, 0.333);
    padding: 0 .8rem;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.pesquisa-container .input-group input {
    width: 100%;
    padding: 0 .5rem 0 .3rem;
    background-color: transparent;
    border: none;
    outline: none;
}

/* eventos-main englobará tudo de único que essa página terá (Schuab)*/
.eventos-main {
    position: absolute;
}

.eventos-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: 90px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
}

.eventos-card {
    width: 320px;
    height: 470px;
    border-radius: 25px;
    background-color: #fff;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.eventos-image-content,
.eventos-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.eventos-image-content {
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

.eventos-separator {
    width: 30%;
    height: 6px;
    background-color: #17537a;
    margin-top: 10px;
    margin-bottom: 10px;
}

.eventos-card-image {
    position: relative;
    height: 210px;
    width: 300px;
    border-radius: 10px;
    padding: 3px;

}

.eventos-card-image .eventos-card-img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgb(93, 93, 224);
}

.eventos-name {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.eventos-description {
    font-size: 17px;
    font-weight: 500;
    color: rgb(8, 43, 43);
    text-align: center;
}

.eventos-saibamaisBtn {
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: rgb(64, 133, 197);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.eventos-saibamaisBtn:hover {
    transform: scale(1.1);
    background: rgb(21, 9, 158);
}

/* eventos-popups */
.eventos-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #5a679e, #143068);
    width: 40%;
    height: 65%;
    overflow-y: auto;
    border-radius: 25px;
    animation: fadeIn 0.3s ease;
    z-index: 999;
}

.eventos-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.eventos-popup-container {
    display: flex;

    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 10px 14px;
}

.eventos-popup-title {
    flex: 0 0 auto;
    margin-top: 3%;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
    text-align: center;
}

.eventos-detailed-description {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    margin-top: 3%;
    font-size: 17px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.popup-footer {
    display: flex;
    justify-content: end;
    flex: 0 0 auto;
    margin-top: auto;
}

.eventos-cronograma-detalhadoBTN {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: rgb(64, 133, 197);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.eventos-cronograma-detalhadoBTN:hover {
    transform: scale(1.1);
    background: rgb(21, 9, 158);
}

.eventos-vernomapaBtn-foodTrucks {
    display: flex;
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: rgb(64, 133, 197);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.eventos-vernomapaBtn-foodTrucks:hover {
    transform: scale(1.1);
    background: rgb(21, 9, 158);
}

.eventos-vernomapaBtn {
    display: flex;
    border: none;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    background-color: rgb(64, 133, 197);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.eventos-vernomapaBtn:hover {
    transform: scale(1.1);
    background: rgb(21, 9, 158);
}

.eventos-popupimage img {
    display: flex;
    position: relative;
    width: 320px;
    height: 350px;
    border-radius: 25px;
    bottom: 10px;
}

@media screen and (max-width: 1200px) {
    .eventos-popup {
        width: 70%;
        height: 80%;
    }
}

@media screen and (max-width: 770px) {
    .eventos-main {
        width: 100%;
        left: initial;
    }

    .eventos-popup {
        width: 80%;
    }

    .eventos-container {
        margin-left: 0;
    }

    .eventos-header {
        width: 80%;
        margin-left: 80px;
    }

    .eventos-title {
        display: none;
    }

    .eventos-header .input-group {
        width: 90%;
    }

    .header {
        margin-top: 60px;
    }

    .informacoes {
        width: 75%;
    }

    .informacoes h1 {
        font-size: 20px;
    }

    .pesquisa-container .input-group {
        width: 70%;
    }
}

@media screen and (max-width: 450px) {
    .eventos-header {
        width: 70%;
    }
}