/* SECCIÓN DE PLANES */
.planes-section {
    padding: 100px 5%;
    background-color: #0a192f;
    text-align: center;
}

.planes-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.plan-card {
    background: #112240;
    padding: 40px 30px;
    border-radius: 15px;
    width: 300px;
    border: 1px solid rgba(247, 215, 148, 0.1);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #f7d794;
    box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.5);
}

/* Plan destacado */
.plan-card.popular {
    border: 2px solid #f7d794;
    position: relative;
}

.plan-card.popular::before {
    content: "MÁS VENDIDO";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f7d794;
    color: #020c1b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.plan-card h3 { color: #f7d794; font-size: 1.5rem; margin-bottom: 15px; }
.plan-card .price { font-size: 2.5rem; font-weight: bold; margin-bottom: 20px; color: #fff; }
.plan-card .price span { font-size: 1rem; color: #8892b0; }

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    color: #ccd6f6;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i { color: #f7d794; }

.btn-plan {
    background: transparent;
    color: #f7d794;
    border: 2px solid #f7d794;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-plan:hover {
    background: #f7d794;
    color: #020c1b;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .plan-card {
        width: 100%;
        max-width: 350px;
    }
}