/* ========================= */
/* PLANES */
/* ========================= */

.plans-section{
    width: 100%;
    padding: 100px 8%;
    background: #000;
}

/* Línea blanca */

.top-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 70px;
}

/* TITULO */

.plans-title{
    text-align: center;
    margin-bottom: 70px;
}

.plans-title h2{
    color: #ff8800;
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

.plans-title p{
    color: #cfcfcf;
    font-size: 18px;
}

/* GRID */

.plans-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

/* CARD */

.plan-card{
    background: #111;
    border: 1px solid rgba(255,136,0,0.2);
    border-radius: 22px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.plan-card:hover{
    transform: translateY(-8px);
    border-color: #ff8800;
    box-shadow: 0 0 30px rgba(255,136,0,0.15);
}

/* CARD DESTACADA */

.featured{
    background: linear-gradient(
        180deg,
        #1a1a1a,
        #111
    );

    border: 2px solid #ff8800;
    transform: scale(1.04);
}

/* ETIQUETA */

.recommended{
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff8800;
    color: #000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* TITULOS */

.plan-card h3{
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
}

/* PRECIO */

.price{
    color: #ff8800;
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 30px;
}

/* LISTA */

.plan-card ul{
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.plan-card ul li{
    color: #d5d5d5;
    margin-bottom: 15px;
    font-size: 16px;
}

/* BOTON */

.plan-btn{
    display: inline-block;
    padding: 14px 35px;
    background: #ff8800;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.plan-btn:hover{
    background: #fff;
}

/* RESPONSIVE */

@media(max-width: 1000px){

    .plans-container{
        grid-template-columns: 1fr;
    }

    .featured{
        transform: scale(1);
    }

}