/* Sección de Planes */

.planes-section {
    background-color: #0e1117;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.planes-section h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.planes-section .subtitulo {
    color: #ccc;
    margin-bottom: 40px;
}

.planes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #1a1f2b;
    border: 1px solid #2c3240;
    border-radius: 10px;
    padding: 30px 25px;
    width: 300px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.plan-card:hover {
    transform: scale(1.03);
}

.plan-card h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.precio {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.cobro {
    color: #999;
    margin-bottom: 20px;
}

.beneficios {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.beneficios li {
    margin-bottom: 12px;
    font-size: 0.95em;
}

.beneficios i {
    margin-right: 10px;
    color: #16c172; /* verde */
}

.no-disponible i {
    color: #e74c3c; /* rojo */
}

.btn-plan {
    background-color: transparent;
    color: #16c172;
    border: 2px solid #16c172;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-plan:hover {
    background-color: #16c172;
    color: #000;
}
