@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    background-color: #1B0B33;
}

.product-container,
.product-container * {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(118deg, #1B0B33 43.42%, #2B2A63 90.12%);
    background-attachment: fixed;
    color: #FFFFFF;
    min-height: calc(100dvh - 80px);
    animation: fadeIn 0.4s ease-out;
}

.cards-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
}

.card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #0B081B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.5s ease-out both;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(104, 50, 216, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card:nth-child(1) {
    animation-delay: 0.05s;
}

.card:nth-child(2) {
    animation-delay: 0.1s;
}

.card.premium {
    border: 1px solid rgba(61, 169, 254, 0.5);
    box-shadow: 0 4px 6px 2px rgba(61, 169, 254, 0.50);
}

.card.premium:hover {
    border-color: #3da9fe;
    box-shadow: 0 12px 24px rgba(61, 169, 254, 0.25);
}

.chip-mas-elegido {
    position: absolute;
    top: -42px;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 187px;
    padding: 6px 16px;
    background: #6832D8;
    color: #FFFFFF;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    animation: float 4s ease-in-out infinite;
}

.card-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.pack-name {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #757575;
    font-size: 36px;
    font-weight: 700;
}

.pack-subtitle {
    margin: 8px 0 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}

.features-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-wrap: balance;
}

.feature-icon {
    display: inline-block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-check {
    background-image: url('../img/producto/icons/check.svg');
}

.icon-cross {
    background-image: url('../img/producto/icons/uncheck.svg');
}

.action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 32px;
}

.btn-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #6832D8;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn-cta:hover {
    background: #7945e9;
    color: #FFFFFF;
}

.disclaimer-text {
    width: 100%;
    margin: 32px 0 0;
    color: #A88AD6;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

.premium-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .cards-grid {
        flex-direction: column;
    }

    .card {
        min-width: 100%;
    }

    .chip-mas-elegido {
        right: 20px;
    }
}

.ask-price-button {
    background-color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 42px;
    opacity: 1;
    border-radius: 4px;
    border-width: 1px;
    margin-top: 26px;
    cursor: pointer;
}

.ask-price-button__text {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-pack360 {
    border: 1px solid rgba(77, 77, 77, 1)
}