/* ===================================
   TITULO SECCION
=================================== */
.planes .section-title {
    text-align: center;
    margin-bottom: 70px;
}

.planes .section-title span {
    display: inline-block;
    font-size: 2.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    background: linear-gradient(
        135deg,
        #ff6b35, /* naranja */
        #ff8c42,
        #ff3d2e
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.planes .section-title h2 {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 20px auto;
}

.planes .section-title p {
    color: #d1fae5;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 850px;
    margin: auto;
}

/* ===================================
   SECCION PLANES
=================================== */
.planes {
    padding: 80px 10%;
    background: linear-gradient(
        135deg,
        #2a65ee 0%,
        #1ba83e 50%,
        #055810 100%
    );
    color: white;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* ===================================
   TARJETAS
=================================== */
.plan-card {
    background: #ffffff; /* tarjeta blanca */
    border-radius: 16px;
    padding: 25px;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #0f172a; /* texto oscuro */
}

.plan-card:hover {
    background: #1ba83e; /* verde */
    border-color: #1ba83e;
    color: #ffffff; /* texto blanco al hover */
}

.plan-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    transition: color 0.3s;
}

.plan-card:hover ul li {
    color: #ffffff;
}

.plan-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* ===================================
   BOTONES
=================================== */
.btn-plan {
    display: inline-block;
    padding: 10px 15px;
    background: #ff9a2f; /* verde */
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-plan:hover {
    background: #ff9a2f;
}

.plan-card.featured {
    border: 2px solid #ff9a2f;
    transform: scale(1.05);
}

.recommended {
    background: #ff6b35; /* naranja */
    color: #0f172a;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* ===================================
   TITULOS DE CATEGORIAS
=================================== */
.planes-category {
    margin-top: 80px;
}

.planes-category-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(
        135deg,
        #ff6b35, /* naranja */
        #ff8c42,
        #ff3d2e
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.planes-category-title::after {
    content: "";
    width: 120px;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #ff6b35,
        #ff8c42,
        #ff3d2e
    );
    display: block;
    margin: 15px auto 0;
}

