/* =========================================================
   HORÁRIOS DAS MISSAS
   Paleta rosa-bebê
========================================================= */


/* =========================================================
   CABEÇALHO DA PÁGINA
========================================================= */

.mass-page-header {
    padding: 64px 0 52px;

    background: #fff6f9;

    border-bottom: 1px solid #f1dfe6;
}


.mass-page-header-content {
    max-width: 760px;
}


.mass-page-header .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: #c56f8f;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.mass-page-header .section-eyebrow i {
    font-size: 0.9rem;
}


.mass-page-header h1 {
    margin: 0 0 14px;

    color: #58434d;

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;

    line-height: 1.15;
}


.mass-page-header p {
    max-width: 650px;

    margin: 0;

    color: #806d76;

    font-size: 1.02rem;
    line-height: 1.7;
}


/* =========================================================
   ÁREA PRINCIPAL
========================================================= */

.mass-page {
    padding: 52px 0 80px;

    background: #ffffff;
}


.mass-list {
    max-width: 900px;

    margin: 0 auto;
}


/* =========================================================
   CARTÃO DO DIA
========================================================= */

.mass-day {
    margin-bottom: 28px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #efdee5;
    border-radius: 18px;

    box-shadow:
        0 5px 20px rgba(88, 67, 77, 0.06);

    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


.mass-day:hover {
    box-shadow:
        0 8px 26px rgba(88, 67, 77, 0.09);
}


/* =========================================================
   DIA ATUAL
========================================================= */

.mass-day-today {
    border-color: #e5b3c5;

    box-shadow:
        0 8px 28px rgba(197, 111, 143, 0.13);
}


.mass-day-today:hover {
    box-shadow:
        0 10px 32px rgba(197, 111, 143, 0.16);
}


/* =========================================================
   CABEÇALHO DO DIA
========================================================= */

.mass-day-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px 24px;

    background: #fff8fa;

    border-bottom: 1px solid #f1e3e8;
}


.mass-day-today .mass-day-header {
    background: #fff0f5;
}


/* =========================================================
   DATA
========================================================= */

.mass-day-date {
    display: flex;

    align-items: center;

    gap: 15px;
}


.mass-day-date > strong {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    flex-shrink: 0;

    border-radius: 14px;

    background: #f8dce6;

    color: #a15572;

    font-size: 1.35rem;
    font-weight: 700;

    line-height: 1;
}


.mass-day-today .mass-day-date > strong {
    background: #eab6c9;

    color: #7f4058;
}


.mass-day-date > div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.mass-day-date span {
    color: #5b4650;

    font-size: 1rem;
    font-weight: 700;
}


.mass-day-date small {
    color: #927d87;

    font-size: 0.82rem;
}


/* =========================================================
   ETIQUETA "HOJE"
========================================================= */

.mass-day-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 6px 13px;

    border-radius: 30px;

    background: #eab6c9;

    color: #743c52;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   LISTA DE EVENTOS
========================================================= */

.mass-day-events {
    padding: 6px 0;
}


/* =========================================================
   EVENTO
========================================================= */

.mass-event {
    display: grid;

    grid-template-columns:
        95px
        50px
        minmax(0, 1fr)
        20px;

    align-items: center;

    gap: 18px;

    padding: 20px 24px;

    transition:
        background-color 0.2s ease;
}


.mass-event + .mass-event {
    border-top: 1px solid #f3e7eb;
}


.mass-event:hover {
    background: #fff9fb;
}


/* =========================================================
   HORÁRIO
========================================================= */

.mass-event-time {
    text-align: center;
}


.mass-event-time strong {
    display: block;

    color: #a15572;

    font-size: 1.28rem;
    font-weight: 700;

    line-height: 1.2;
}


.mass-all-day {
    display: inline-block;

    color: #917b85;

    font-size: 0.8rem;
    font-weight: 600;
}


/* =========================================================
   ÍCONE
========================================================= */

.mass-event-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #fbe8ee;

    color: #c56f8f;

    font-size: 1.12rem;
}


.mass-event:hover .mass-event-icon {
    background: #f7dce6;

    color: #ae5878;
}


/* =========================================================
   CONTEÚDO DO EVENTO
========================================================= */

.mass-event-content {
    min-width: 0;
}


.mass-event-content h2 {
    margin: 0 0 7px;

    overflow-wrap: break-word;

    color: #56434c;

    font-size: 1rem;
    font-weight: 650;

    line-height: 1.4;
}


/* =========================================================
   LOCAL
========================================================= */

.mass-event-local {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 6px;

    color: #8b7881;

    font-size: 0.84rem;
}


.mass-event-local i {
    color: #c56f8f;

    font-size: 0.9rem;
}


/* =========================================================
   TIPO
========================================================= */

.mass-event-type {
    display: inline-block;

    color: #b06482;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}


/* =========================================================
   SETA
========================================================= */

.mass-event-arrow {
    color: #d3a8b7;

    font-size: 1rem;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.mass-event:hover .mass-event-arrow {
    color: #c56f8f;

    transform: translateX(3px);
}


/* =========================================================
   NENHUMA MISSA
========================================================= */

.mass-empty {
    max-width: 650px;

    margin: 10px auto 60px;

    padding: 55px 30px;

    text-align: center;

    background: #fff8fa;

    border: 1px solid #efdee5;
    border-radius: 20px;
}


.mass-empty-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #f8dce6;

    color: #b45f7e;

    font-size: 1.7rem;
}


.mass-empty h2 {
    margin: 0 0 10px;

    color: #5b4650;

    font-size: 1.35rem;
}


.mass-empty p {
    max-width: 480px;

    margin: 0 auto 25px;

    color: #87737d;

    line-height: 1.6;
}


/* =========================================================
   BOTÃO
========================================================= */

.mass-page .btn-outline-primary {
    --bs-btn-color: #b45f7e;
    --bs-btn-border-color: #d9a1b4;

    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #c56f8f;
    --bs-btn-hover-border-color: #c56f8f;

    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #b45f7e;
    --bs-btn-active-border-color: #b45f7e;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 767.98px) {

    .mass-page-header {
        padding: 48px 0 42px;
    }


    .mass-page-header h1 {
        font-size: 2rem;
    }


    .mass-page-header p {
        font-size: 0.95rem;
    }


    .mass-page {
        padding: 35px 0 55px;
    }


    .mass-day {
        margin-bottom: 20px;

        border-radius: 14px;
    }


    .mass-day-header {
        padding: 17px 18px;
    }


    .mass-day-date {
        gap: 11px;
    }


    .mass-day-date > strong {
        width: 46px;
        height: 46px;

        border-radius: 11px;

        font-size: 1.15rem;
    }


    .mass-day-date span {
        font-size: 0.92rem;
    }


    .mass-day-date small {
        font-size: 0.76rem;
    }


    .mass-day-badge {
        padding: 5px 10px;

        font-size: 0.66rem;
    }


    .mass-event {

        grid-template-columns:
            72px
            42px
            minmax(0, 1fr)
            15px;

        gap: 11px;

        padding: 17px 16px;
    }


    .mass-event-time strong {
        font-size: 1.05rem;
    }


    .mass-event-icon {
        width: 38px;
        height: 38px;

        font-size: 1rem;
    }


    .mass-event-content h2 {
        font-size: 0.92rem;
    }


    .mass-event-local {
        font-size: 0.78rem;
    }


    .mass-event-type {
        font-size: 0.66rem;
    }

}


/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 430px) {

    .mass-page-header {
        padding: 40px 0 35px;
    }


    .mass-page-header h1 {
        font-size: 1.75rem;
    }


    .mass-day-header {
        padding: 15px;
    }


    .mass-day-date > strong {
        width: 42px;
        height: 42px;

        font-size: 1.05rem;
    }


    .mass-day-badge {
        padding: 5px 8px;

        font-size: 0.62rem;
    }


    .mass-event {

        grid-template-columns:
            1fr
            42px
            15px;

        gap: 8px;

        padding: 16px;
    }


    .mass-event-time {
        grid-column: 1;
        grid-row: 1;

        text-align: left;
    }


    .mass-event-icon {
        grid-column: 2;
        grid-row: 1;
    }


    .mass-event-arrow {
        grid-column: 3;
        grid-row: 1;
    }


    .mass-event-content {
        grid-column: 1 / -1;
        grid-row: 2;
    }

}
