/* Estilos para la sección de planes en la landing page */
.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(250, 81, 11, 0.2);
}

.price-card .card-header {
    border-bottom: none;
    padding: 1.5rem 1rem;
    text-align: center;
}

.price-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-card .price span {
    font-size: 1rem;
    color: #aaa;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    color: #ddd;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.feature-list li i {
    margin-right: 0.75rem;
    color: #fa930a;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to right, #fa510b, #fa930a);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #fa930a, #fa510b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 81, 11, 0.3);
}

#planes {
    padding: 5rem 0;
    background-color: #121212;
}

#planes h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

#planes h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #fa510b, #fa930a);
    border-radius: 2px;
}

.text-muted {
    color: #888 !important;
}

@media (max-width: 768px) {
    .price-card {
        margin-bottom: 2rem;
    }
    
    #planes {
        padding: 3rem 0;
    }
}
