.goodpacks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.goodpack-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: 300px;
    min-height: 590px; /* 💬 Altura mínima de cada card */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    display: none; /* 💬 Empezar oculto */
	position: relative;
}

.goodpack-card.show {
    opacity: 1;
    transform: translateY(0);
    display: block; /* 💬 Mostrar solo los cards visibles */
}

.goodpack-card h3 {
    margin-bottom: 10px;
	font-family: "Gotham Bold_0", Sans-serif;
    font-size: 2em;
    font-weight: 400;
    line-height: 1em;
    color: #00AEB7;
}

.goodpack-card ul {
    padding-left: 20px;
    margin-top: 10px;
	
}
.precio{
	text-align: right !important;
	font-family: "Gotham Bold_0", Sans-serif !important;
	font-size:20px !important;
}
.footer_card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
}

.goodpack-card ul li {
    font-size: 14px;
    margin-bottom: 3px;
    color: #262626;
    font-family: "Gotham Book_0", Sans-serif;
    font-weight: 400;
}

.goodpack-card p {
    margin: 8px 0;
    font-size: 16px;
    color: #5E5E5E;
    font-family: "Gotham Book_0", Sans-serif;
    font-weight: 400;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 35px;
    background: #3cbd8c;
    color: #fff;
    border-radius: 8px;
    text-decoration: none !important; /* 💬 Sin subrayado */
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 16px;
	border-radius: 40px;
}

.whatsapp-button:hover {
    background: #29a073;
	color: #fff;
}

.whatsapp-button i {
    font-size: 20px;
}

/* Botonera */
#goodpacks-filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.filter-btn {
    background: #009688;
    color: white;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: #00796b;
}
