.pacotes-grid {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 30px;
}
.pacotes {
    padding: 90px 10px;
}
.pacotes-title h2 {
    font-size: 3rem;
    line-height: 1.1em;
    color: var(--maincor);
    font-family: 'margaret';
}
.pacotes-title {
    display: grid;
    gap: 10px;
}
.pacotes-title p {
    font-size: 1.25rem;
}
.pacotes-title p span{
    color: var(--maincor);
}

.pacotes-horario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.hora {
    border: 1px solid var(--maincor);
    max-width: 247px;
    min-width: 247px;
    height: 229px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hora p {
    position: absolute;
    bottom: 0px;
    background-color: var(--maincor);
    width: 100%;
    padding: 10px;
    padding-bottom: 8px;
    color: var(--branco);
}
.hora h3 {
    font-size: 4rem;
    color: var(--maincor);
    font-family: 'margaret';
}