.page-pacote {
    margin: 30px 0;

    .total-encontrados {
        display: block;
        width: 100%;
        padding: 15px;
        border: 1px solid #ececec;
        border-radius: 4px;
        background: #fff;
        margin-bottom: 20px;

        i {
            margin-right: 10px;
        }
    }

    .pacote-list {
        .pacote-item {
            cursor: pointer;
            color: #888;
            border-radius: 8px;
            display: flex;
            background-color: #ffffff;
            transition: box-shadow 0.2s ease-out;
            height: 220px;
            margin: 0;
            margin-bottom: 20px;

            &:hover {
                box-shadow: 0 12px 20px rgba(68, 68, 68, 0.2);
            }

            .pacote-imagem {
                padding: 0;
                max-height: 220px;

                img {
                    display: block;
                    height: 100%;
                    width: 100%;
                    border-radius: 8px 0 0 8px;
                }
            }

            .pacote-descricao {
                box-sizing: border-box;
                padding: 16px;
                position: relative;

                h3 {
                    position: relative;
                    letter-spacing: 0;
                    vertical-align: middle;
                    display: inline-block;
                    // white-space: nowrap;
                    height: auto;
                    word-wrap: break-word;
                    max-width: 100%;

                    text-overflow: ellipsis;
                    overflow: hidden;
                    line-height: normal;
                    font-size: 19px;
                    color: #444;

                    i {
                        color: $base-color;
                    }
                }

                p {
                    font-size: 12px;
                    color: #888;
                    margin-bottom: 10px;

                    i {
                        color: var(--azul-1);
                        margin-right: 8px;
                        top: -1px;
                        position: relative;
                    }
                }

                .detalhe {
                    display: flex;
                    justify-content: space-between;
                    margin-top: 15px;

                    div {
                        flex: 1;
                        p:first-of-type {
                            color: #444444;
                            font-weight: 500;
                        }
                    }
                }
            }

            .price-box {
                height: 100%;
                position: relative;
                box-sizing: border-box;
                width: 210px;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-top: 24px;
                border-left: 1px solid #f1f1f1;
                color: #888;

                .price-container {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;

                    span:first-child {
                        margin-bottom: 10px;
                    }

                    .depor {
                        text-decoration: line-through;
                    }

                    .price {
                        font-size: 23px;
                        font-weight: bold;
                        color: #444;

                        span {
                            font-size: 14px;
                        }
                    }
                }
            }
        }
    }
}
