/* ============================== */
/* HERO INTRO                      */
/* ============================== */
.hero-visio {
    font-style: italic;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* ============================== */
/* CENTERS                         */
/* ============================== */
.centers-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.6rem;
}

.center-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    min-height: 60vh;
    width: 60%;
    background-color: var(--secondary-color);
}

.center-card-image {
    width: 100%;
    height: 50%;
}

.center-card-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.center-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 0 0 10px 10px;
    background-color: var(--secondary-color);

    p,
    h4,
    span {
        font-size: 1.25rem;
    }
}

.schedule-container {
    height: 100%;
    display: flex;
    gap: 2.5rem;
    color: var(--primary-color);
}

.schedule-container-left,
.schedule-container-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    p {
        line-height: 1.3;
    }
}

.separator {
    color: var(--accent-color);
    font-weight: bold;
}

.center-comment {
    color: var(--primary-color);

    h4 {
        margin-bottom: 1rem;
    }
}

/* ============================== */
/* TARIFS                          */
/* ============================== */
.tarifs-section {
    margin-bottom: 5rem;
    padding-bottom: 0;
    padding-top: 0;
}

.tarifs-main-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tarifs-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.tarifs-card {
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    width: 42%;
    min-width: 280px;
    overflow: hidden;
    min-height: 400px;
    background-color: var(--secondary-color);

    svg {
        color: white;
    }
}

.tarifs-card-header {
    border-bottom: 2px solid var(--accent-color);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tarifs-card-header h3 {
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.tarifs-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tarifs-moyens-paiement {
    background-color: rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    padding: 0.6rem 0.9rem;
    line-height: 1.5;
    color: var(--accent-color);
}

.tarifs-paiement-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
    opacity: 0.75;
}

.tarifs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.tarifs-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    color: var(--primary-color);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.tarifs-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tarifs-item:first-child {
    padding-top: 0;
}

.tarifs-type {
    font-weight: 600;
}

.tarifs-price {
    display: flex;
    gap: 0.4rem;
    white-space: nowrap;
}

.tarifs-price span {
    padding: 2px 8px;
    border-radius: 4px;
}


/* ============================== */
/* THÉRAPIE INTENSIVE              */
/* ============================== */
.intensive-section {
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
    padding-top: 0;
}

.intensive-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    width: 87%;
    overflow: hidden;
}

.intensive-card-header {
    border-bottom: 2px solid var(--accent-color);
    padding: 1rem 1.5rem;
}

.intensive-card-header h2 {
    color: #fff;
    font-weight: 500;
    margin: 0;
    font-size: 1.2rem;
}

.intensive-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intensive-card-description {
    color: var(--primary-color);
    line-height: 1.6;
}

.intensive-card-tarif {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.intensive-card-tarif-label {
    font-weight: 600;
}

.intensive-card-tarif-price {
    color: #fff;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 4px;
}

.center-phones {
    color: var(--primary-color);

    li:first-child{
        margin-bottom: 0.5rem;
    }

    li{
        display: flex;
        align-items: center;
        gap : 0.2rem;
    }

    & li > span {
        color: var(--accent-color);
        font-weight: bold;
    }
}

/* ============================== */
/* RESPONSIVE - ECRANS INTERMEDIAIRES */
/* ============================== */
@media screen and (max-width: 1200px) {
    .tarifs-card {
        width: 45%;
    }
}

/* ============================== */
/* RESPONSIVE - TABLETTES */
/* ============================== */
@media screen and (max-width: 992px) {
    .center-card {
        width: 80%;
    }

    .tarifs-card {
        width: 80%;
    }
}

/* ============================== */
/* RESPONSIVE - MOBILES */
/* ============================== */
@media screen and (max-width: 600px) {
    .center-card {
        width: 100%;
    }

    .tarifs-card {
        width: 100%;
    }

    .tarifs-item {
        flex-direction: column;
        gap: 0.2rem;
    }

    .intensive-card {
        width: 100%;
    }

    .intensive-card-tarif {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 992px) {
    .intensive-card {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {}