/* Estilos para a página da loja */
.shop-section {
    padding: 80px 0;
    min-height: calc(100vh - 300px);
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.shop-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}

.shop-packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.package {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package.featured {
    border: 2px solid #7289DA;
    transform: scale(1.05);
}

.package.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-header {
    background-color: #7289DA;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.package-header h3 {
    margin: 0;
    font-size: 22px;
}

.package-header .price {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 0;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f44336;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.package-content {
    padding: 20px;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px