body {
    background: #cfcfcf;
}

.pricing-section{
    max-width:1200px;
    margin:6rem auto;
    text-align:center;
    color:white;
    font-family:"Forum", serif;
}

.main-tittle {
    color: black;
}

.pricing-header h1{
    font-size:4rem;
    margin-bottom:1rem;
    font-weight:400;
}

.pricing-header p{
    color: #656565;
    font-size: 1.5rem;
}

/* GRID */

.pricing-grid{
    margin-top:4rem;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:2rem;
}

/* CARDS */

.card{
    background:rgba(20,20,20,0.85);
    border-radius:14px;
    padding:2rem;

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(8px);

    transition:
            transform 0.35s ease,
            box-shadow 0.35s ease,
            border-color 0.35s ease;

    box-shadow:
            0 10px 25px rgba(0,0,0,0.6);
}

/* HOVER */

.card:hover{
    transform:translateY(-10px) scale(1.02);

    border-color:#3f9a40;

    box-shadow:
            0 20px 40px rgba(0,0,0,0.8),
            0 0 25px rgba(63,154,64,0.4);
}

/* POPULAR CARD */

.popular{
    border:1px solid #3f9a40;
}

.popular:hover{
    box-shadow:
            0 20px 45px rgba(0,0,0,0.9),
            0 0 35px rgba(63,154,64,0.6);
}

/* BADGE */

.popular-badge{
    position:absolute;
    top:-12px;
    left:50%;
    transform:translateX(-50%);

    background:linear-gradient(to right,#6495ed,#3f9a40);

    padding:4px 12px;
    font-size:1rem;
    border-radius:20px;
    color:white;
}

/* TEXT */

.card h2{
    font-family:"Cinzel", serif;
    font-weight:400;
    font-size: 2rem;
}

.description{
    margin:0.5rem 0 1.5rem 0;
    color:#cfcfcf;
    font-size: 1.1rem;
}

/* PRICE */

.price{
    margin-bottom:1.5rem;
}

.amount{
    font-size:4rem;
    font-family:"Cinzel", serif;
}

.period{
    color:#aaa;
    font-size: 1.8rem;
}

/* LIST */

.card ul{
    list-style:none;
    padding:0;
    margin-bottom:2rem;
    text-align:left;
}

.card ul li{
    margin:0.6rem 0;
    color:#e6e6e6;
    font-size: 1.1rem;
}

/* BUTTON */

.card button{
    width:100%;
    font-size: 1.5rem;
    padding:0.7rem;

    border:none;
    border-radius:6px;

    font-family:"Forum", serif;

    background:linear-gradient(to right,#6495ed,#3f9a40);

    color:white;

    cursor:pointer;

    transition:all 0.25s ease;
}

.card button:hover{
    transform:translateY(-2px);

    box-shadow:
            0 8px 18px rgba(63,154,64,0.6);
}