:root {
    --primary: #F4760F;
    --secondary: #134834;
    --tertiary: #4A0001;
    --background: rgba(244, 118, 15, 0.1);
}

/* ============================= */
/*          PRINCING          */
/* ============================= */

.pricing {
    padding-top: 160px;
    padding-bottom: 100px;
    background: var(--background);
}

.pricing p {
    text-align: center;
    margin-bottom: 80px;
}


.pricing h3{
    margin-bottom: 20px;
    margin-top: -80px;
}

.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    height: 340px;
    padding: 30px;
    border-radius: 16px;
    width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.2);
    border: 2px solid var(--primary);
    height: 320px;
}
.pricing-card.featured li {
    font-size: 0.8rem;
    color: var(--tertiary);
}


.badge {
    background: #2e7d32;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}


.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;

}

.features li {
    margin: 10px 0;
    text-align: left;
}

.features i {
    margin-right: 8px;
}

.mdi-check {
    color: green;
}

.mdi-close {
    color: red;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary {
    background: #eee;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.asterix {
    text-align: center;
    margin-top: 60px;
    opacity: 0.6;
}



/* HERO petit */
.hero.small {
    padding: 60px 20px;
    text-align: center;
}

/* FILTERS */
.filters {
    text-align: center;
    margin: 30px 0;
}

.filter {
    background: #eee;
    border: none;
    padding: 10px 16px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
}

.filter.active {
    background: #2e7d32;
    color: white;
}
