/* Plans Section */
.plans {
    background: linear-gradient(135deg, var(--lighter-color) 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--lighter-color);
}

.plan-header h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.plan-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.plan-features {
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--lighter-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span:last-child {
    color: var(--text-color);
    line-height: 1.4;
}

.plan-actions {
    text-align: center;
}

.btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.basic-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
}

.basic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    color: var(--white);
}

.full-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.full-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Sección de plan personalizado */
.plans-footer {
    margin-top: 60px;
    text-align: center;
}

.custom-plan {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed var(--primary-color);
}

.custom-plan h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.custom-plan p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    color: var(--white);
}

/* Plans Responsive */
@media (max-width: 1200px) {
    .plans-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .plans {
        padding: 80px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .plans {
        padding: 60px 0;
    }
    
    .plans-grid {
        margin: 40px 0;
        gap: 25px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .custom-plan {
        padding: 40px 25px;
    }
    
    .custom-plan h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .plans {
        padding: 50px 0;
    }
    
    .plans-grid {
        margin: 30px 0;
    }
    
    .plan-card {
        padding: 25px 15px;
    }
    
    .plan-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .plan-header h3 {
        font-size: 1.4rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .btn-plan {
        padding: 14px 15px;
        font-size: 1rem;
    }
    
    .custom-plan {
        padding: 30px 20px;
    }
    
    .custom-plan h4 {
        font-size: 1.2rem;
    }
    
    .btn-custom {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Animaciones */
.plan-card {
    animation: fadeInUp 0.6s ease-out;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }

.custom-plan {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}