/* HERO */

.tarif-hero{

    padding:100px 0;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #EAFBF8,
        #FFFFFF
    );
}

.tarif-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#0E9F8D;

    color:#fff;

    font-size:12px;

    font-weight:700;
}

.tarif-hero h1{

    margin-top:20px;

    font-size:54px;

    font-weight:800;
}

.tarif-hero p{

    max-width:800px;

    margin:20px auto 0;

    color:#6B7280;

    line-height:1.9;
}


/* SECTION */

.tarif-section{

    padding:80px 0;
}

.tarif-card{

    background:#fff;

    border-radius:30px;

    padding:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.tarif-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:30px;
}

.tarif-search{

    width:300px;

    height:52px;

    border:1px solid #E5E7EB;

    border-radius:14px;

    padding:0 18px;

    outline:none;
}


/* TABLE */

.table-tarif{

    width:100%;

    border-collapse:collapse;
}

.table-tarif thead{

    background:#0E9F8D;

    color:#fff;
}

.table-tarif th{

    padding:16px;

    text-align:left;
}

.table-tarif td{

    padding:16px;

    border-bottom:1px solid #E5E7EB;
}

.table-tarif tbody tr:hover{

    background:#F8FAFC;
}


/* INFO */

.tarif-info{

    padding-bottom:100px;
}

.info-box{

    display:flex;

    gap:20px;

    align-items:flex-start;

    background:#EAFBF8;

    padding:25px;

    border-radius:20px;
}

.info-box i{

    color:#0E9F8D;

    font-size:30px;
}

.info-box p{

    margin-top:8px;

    color:#6B7280;
}


/* MOBILE */

@media(max-width:768px){

    .tarif-hero{

        padding:70px 0;
    }

    .tarif-hero h1{

        font-size:34px;
    }

    .tarif-header{

        flex-direction:column;

        align-items:stretch;
    }

    .tarif-search{

        width:100%;
    }

    .table-responsive{

        overflow-x:auto;
    }

}
