/* ========================================
   ESTILOS MEMBRESÍA
   ======================================== */

.ae-membership-card {
    background: #ffffff;
    max-width: 560px;
    padding: 50px;
    border: 1px solid #ececec;
    border-radius: 12px;
    margin: auto;
}

.ae-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ae-title {
    font-size: 42px;
    font-weight: 800;
    color: #06393C;
    line-height: 1;
}

.ae-subtitle {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7b8b8d;
    font-weight: 700;
}

.ae-popular {
    background: #06393C;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.ae-price-wrapper {
    display: flex;
    align-items: flex-end;
    margin-top: 35px;
}

.ae-currency {
    font-size: 32px;
    color: #06393C;
    margin-right: 5px;
    font-weight: 700;
}

.ae-price {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: #06393C;
}

.ae-period {
    margin-left: 10px;
    margin-bottom: 15px;
    color: #7b8b8d;
    font-size: 26px;
    font-weight: 700;
}

.ae-description {
    margin-top: 25px;
    color: #666;
    line-height: 1.8;
}

.ae-divider {
    height: 1px;
    background: #ececec;
    margin: 35px 0;
}

.ae-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ae-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 18px;
    color: #06393C;
}

.ae-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.ae-btn {
    width: 100%;
    height: 62px;
    margin-top: 35px;
    border: none;
    border-radius: 8px;
    background: #06393C;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.ae-btn:hover {
    transform: translateY(-2px);
}

.ae-btn-active {
    background: #e7f7ed;
    color: #0f5132;
    border: 1px solid #badbcc;
    cursor: not-allowed;
}

.ae-loading {
    opacity: 0.7;
    pointer-events: none;
}

.ae-footer {
    margin-top: 20px;
    text-align: center;
    color: #888;
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .ae-membership-card {
        padding: 35px 25px;
        margin: 20px 15px;
    }

    .ae-title {
        font-size: 28px;
    }

    .ae-price {
        font-size: 58px;
    }

    .ae-period {
        font-size: 18px;
    }

    .ae-header {
        flex-direction: column;
        gap: 15px;
    }

    .ae-popular {
        align-self: flex-start;
    }
}
