:root {
    --pink-light: #ffe1f2;
    --pink-dark: #BD1470;
    --pink-middle: #ce6aa0;
    --yellow-gradient-start: #fdd835;
    --yellow-gradient-end: #fbc02d;
    --yellow-light-bg: #fffde7;
    --yellow-dotted-border: #fbc02d;
    --text-dark: #424242;
    --text-light: #757575;
    --green-check: #4CAF50;
    --white: #ffffff;
    --border-light: #eeeeee;
    --best-value-bg: #BD1470;
}

.pricing-section {
    margin: 2rem 1rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 320px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card a {
    text-decoration: none;
}

.pricing-card.featured {
    border: 2px solid var(--best-value-bg);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 12px;
    font-weight: 600;
    color: var(--text-dark);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.card-header.basic,
.card-header.most-popular {
    background-color: var(--pink-light);
}

.card-header.best-value {
    background-color: var(--best-value-bg);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1em;
}

.card-body {
    padding: 20px 30px 30px 30px;
}

.package-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0 5px 0;
}

.supply-info {
    color: var(--text-light);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.image-container {
    position: relative;
    margin-bottom: 20px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container .product-image {
    height: 180px;
    width: auto;
}

.ebook-image {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}

.best-value-seal {
    position: absolute;
    top: -10px;
    right: 0px;
    background-color: var(--best-value-bg);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
}

.price {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.price-amount {
    font-size: 4.5em;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.price-per {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-light);
    margin-left: 8px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    text-align: left;
    display: inline-block;
    width: 80%;
}

.features-list li {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    background-color: var(--yellow-light-bg);
    border: 2px dotted var(--yellow-dotted-border);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.8em;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.checkmark {
    color: var(--green-check);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.buy-button {
    background-image: linear-gradient(to top, var(--yellow-gradient-end), var(--yellow-gradient-start));
    border: none;
    border-radius: 10px;
    padding: 18px;
    width: 100%;
    color: var(--text-dark);
    font-size: 1.4em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cursor-icon {
    position: absolute;
    right: 15px;
    bottom: -15px;
    font-size: 1.8em;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(325deg);
    }
    40% {
        transform: translateY(-10px) rotate(325deg);
    }
    60% {
        transform: translateY(-5px) rotate(325deg);
    }
}

.total-price {
    margin-top: 15px;
    font-size: 1.1em;
    color: var(--text-light);
}

.payment-info {
    margin-top: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.payment-icons img {
    height: 20px;
}

.hiddenD { display: none; }
.hiddenM { display: flex; }

/* ===============================
   FIX DEFINITIVO DOS LIKES
   =============================== */

likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #ffffff;
    border-radius: 999px;
    padding: 2px 8px;

    font-size: 12px;
    font-weight: 600;
    color: #65676b;

    box-shadow: 0 1px 2px rgba(0,0,0,0.15);

    margin-left: 52px;
    margin-top: 4px;

    position: relative;
    z-index: 1;
}

/* imagens dentro do likes */
likes img {
    width: 14px;
    height: 14px;
    display: inline-block;
    object-fit: contain;

    margin: 0 !important;
    padding: 0 !important;

    position: static !important;
    z-index: auto !important;
}