.packages-div {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

.packages-cards-container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    padding: 20px;
    margin-bottom: 48px;
}

.title-container {
    display: flex;
    align-items: flex-end;
    margin: 50px 0 35px 20px;
}

.title-container h1 {
    margin: 0;
    font-weight: 400;
    color: #054E72;
    font-size: 2.2em;
}

.color-line {
    display: flex;
    margin-left: 10px;
    margin-bottom: 6px;
}

.color-block {
    height: 5px;
    width: 24px;
}

.yellow {
    background-color: #FFC600;
}

.orange {
    background-color: #FF6A14;
}

.green {
    background-color: #97D700;
}

.blue {
    background-color: #054E72;
}

.package-item {
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    color: #054E72;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.package-card * {
    margin: 0;
}

.package-card img {
    width: 100%;
    height: auto;
    display: block;
}

.package-information{
    padding: 20px 32px;
    height: 240px;
}

.package-names h3{
    font-size: 1.65em;
    font-weight: 900;
}

.package-names h4{
    font-size: 1em;
    font-weight: 400;
    margin-bottom: -8px;
}

.diarias{
    display: flex;
    align-items: center;
    font-weight: bolder;
    margin-top: 8px;
    gap: 8px;
}

.diarias img{
    max-width: 25px;
}

.package-utilities {
    margin: 24px 0 32px;

}

.package-utilities ul {
    list-style: none;
    padding: 0;
}

.package-utilities ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #2e5c85; /* Tom azul similar à imagem */
}

.package-utilities ul li::before {
    content: "✓";
    color: #2e5c85; /* Mesmo tom do texto */
    margin-right: 8px;
    font-weight: bold;
}

.package-price{
    margin-top: 24px;
}

.package-price h2{
    font-size: 1.7em;
    font-weight: 900;
    color: #FF6A14;
}

.package-price p{
    font-size: 0.8em;
}

@media (max-width: 1024px) {
    .packages-cards-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .packages-cards-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

    .title-container h1 {
        font-size: 2em;
    }

    .packages-cards-container{
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 400px) {
    .title-container h1 {
        font-size: 1.8em;
    }

}

@media (max-width: 375px) {

    .title-container h1 {
        font-size: 1.6em;
    }
}