/* Plans Hero Section */
.plans-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
}

.plans-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #FE3F40;
    margin-bottom: 1rem;
}

.plans-hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #FE3F40;
    box-shadow: 0 20px 40px rgba(254, 63, 64, 0.2);
}

.plan-card.featured {
    border-color: #FE3F40;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FE3F40;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #FE3F40;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.plan-price .currency {
    font-size: 1.2rem;
    color: #cccccc;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.plan-price .period {
    font-size: 1rem;
    color: #cccccc;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #cccccc;
}

.plan-features i {
    color: #FE3F40;
    font-size: 0.9rem;
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #FE3F40, #ff6b6c);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(254, 63, 64, 0.3);
}

/* Custom Plan Section */
.custom-plan-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    border: 2px solid #FE3F40;
}

.custom-plan-section h2 {
    font-size: 2rem;
    color: #FE3F40;
    margin-bottom: 1rem;
}

.custom-plan-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-plan-button {
    padding: 1rem 2rem;
    background: transparent;
    color: #FE3F40;
    border: 2px solid #FE3F40;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-plan-button:hover {
    background: #FE3F40;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-hero-content h1 {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .custom-plan-section {
        padding: 2rem 1rem;
    }
}

/* Mejoras adicionales */
.plan-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(254, 63, 64, 0.2);
}

.custom-plan-button:active {
    transform: translateY(0);
}

/* Animación de pulso para el plan destacado */
.plan-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FE3F40, #ff6b6c, #FE3F40);
    border-radius: 22px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Efecto de carga */
.plan-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}