/** General container */
.subscription-container {
    width: 100%;
    background-color: var(--black-color3);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1,
h2,
h3 {
    text-align: center;
    color: #fff;
    margin: 10px 0;
}

h3 {
    font-size: 1.5em;
}

.note,
.renewal,
.choice {
    text-align: center;
    color: #fff;
    margin: 5px 0;
}

/** Plans container */
.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.subscription-card {
    width: 30%;
    background-color: #000;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    position: relative;
    box-shadow: 0 0 10px #ff6500;
}

.subscription-card h2 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.subscription-name {
    font-weight: bold;
    font-size: 1.3rem;
    position: relative;
    top: 14px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 4rem;
    color: #fff;
}

.moneda {
    font-size: 0.9rem;
    color: #fff;
}

.perido {
    font-size: 1.1rem;
    color: #FCFC00;
}

.profile-pic {
    width: 150px;
    height: 150px;
    margin: 15px auto;
    border-radius: 50%;
    overflow: hidden;
    padding: 10px; /* Añade padding para crear más espacio alrededor */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 30%, transparent 70%);
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description {
    font-size: 0.9rem;
    color: #d3d3d3;
    margin: 10px 0 20px;
}

.cta-button {
    background: linear-gradient(90deg, rgba(252,252,0,1) 0%, rgba(241,81,16,1) 100%);

    color: #fff;
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(90deg, rgba(252,252,0,1) 0%, rgba(253,29,29,1) 50%, rgb(241, 81, 16) 100%);
}

/** Terms and additional text */
.textoadicional {
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid #FCFC00;
    box-shadow: #FCFC00 4px 4px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.terms {
    text-align: center;
    margin: 20px 0;
}

.terms input[type="checkbox"] {
    margin-right: 10px;
}

.terms a {
    color: #f15110;
    text-decoration: none;
}

.terms a:hover {
    text-decoration: underline;
}

/** Purchase button */
.purchase-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-button {
    display: block;
    width: 30%;
    padding: 10px;
    background-color: #FCFC00;
    color: black;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.purchase-button:hover {
    color: black !important;
    background-color: #fff;
    border: #FCFC00 1px solid;
}

.subscription-card.selected {
    border-color: #FCFC00;
    box-shadow: #FCFC00 4px 4px;
    background-color: rgba(252, 252, 0, 0.3);
    /* box-shadow: 0 0 10px rgba(220, 53, 69, 0.5); */
}


/** Responsive adjustments */
@media (max-width: 992px) {
    .subscription-card {
        width: 45%;
        /* Two cards per row */
    }
}

@media (max-width: 576px) {
    .subscription-card {
        width: 100%;
        /* One card per row */
    }
}

label {
    color: white;
}