/* ============================================
   PREMIUM PLANS SECTION
   Design focado em conversão e estética high-end
   ============================================ */

/* Container Principal */
.plans-premium {
    padding: 6rem 0 8rem 0;
    background: radial-gradient(circle at 50% 0%, #1a2c4e 0%, #000B1D 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 0;
}

/* Background Effects */
.plans-premium::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 45, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.plans-premium::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.plans-premium .container {
    position: relative;
    z-index: 1;
}

/* Grid de Planos */
.plans-grid-premium {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    align-items: stretch;
}

/* Card Base - MAIS VISÍVEL E ATRAENTE */
.plan-card-premium {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(20, 40, 80, 0.6));
    /* Mais claro e azulado */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Borda mais visível */
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Sombra base */
}

.plan-card-premium:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(30, 50, 90, 0.7));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Card Destaque (Trimestral) */
.plan-card-premium.featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 26, 60, 0.6) 100%);
    border: 2px solid rgba(255, 92, 45, 0.5);
    box-shadow:
        0 0 30px rgba(255, 92, 45, 0.15),
        0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
    z-index: 2;
}

.plan-card-premium.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow:
        0 0 40px rgba(255, 92, 45, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Badge de Melhor Escolha */
.best-choice-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF5C2D 0%, #FF8E53 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 92, 45, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Cabeçalho do Card */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    font-size: 0.9rem;
    color: #a0a0a0;
}

/* Preços */
.price-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    display: block;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -1px;
}

.price-value small {
    font-size: 1rem;
    font-weight: 500;
    color: #a0a0a0;
}

.price-installment {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 0.5rem;
    background: rgba(255, 92, 45, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
}

.price-full {
    display: block;
    font-size: 0.9rem;
    color: #808080;
    margin-top: 0.8rem;
}

/* Lista de Benefícios */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-features-list li i {
    color: #25D366;
    /* Verde sucesso */
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.plan-features-list li.unavailable {
    color: #606060;
}

.plan-features-list li.unavailable i {
    color: #606060;
}

/* Botões */
.btn-plan {
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-plan-outline {
    background: rgba(255, 255, 255, 0.05);
    /* Fundo sutil */
    border: 2px solid rgba(255, 255, 255, 0.3);
    /* Borda mais forte */
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-plan-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-plan-primary {
    background: linear-gradient(90deg, #FF5C2D 0%, #FF8E53 100%);
    border: none;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 92, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-plan-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-plan-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 92, 45, 0.4);
}

.btn-plan-primary:hover::before {
    left: 100%;
}

/* Garantia */
.plan-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #a0a0a0;
}

.plan-guarantee i {
    color: var(--primary-orange);
}

/* Responsivo */
@media (max-width: 992px) {
    .plans-premium {
        padding: 4rem 0;
    }

    .plans-grid-premium {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .plan-card-premium {
        width: 100%;
        max-width: 450px;
    }

    .plan-card-premium.featured {
        transform: scale(1);
        order: -1;
        margin-bottom: 1rem;
    }

    .plan-card-premium.featured:hover {
        transform: translateY(-5px);
    }
}