/* =========================
   CINE ESPÍRITA
========================= */

.cine-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cine-card {
    min-height: 245px;

    border-radius: 26px;
    border: 1px solid rgba(214, 177, 97, 0.26);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 248, 235, 0.96)
        );

    box-shadow: 0 18px 42px rgba(44, 27, 6, 0.08);

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

.cine-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 177, 97, 0.5);
    box-shadow: 0 26px 54px rgba(44, 27, 6, 0.12);
}

.cine-card__overlay {
    display: none;
}

.cine-card__content {
    height: 100%;
    padding: 24px 26px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cine-tag {
    width: fit-content;

    margin-bottom: 12px;
    padding: 7px 13px;

    border-radius: 999px;

    background: rgba(214, 177, 97, 0.14);
    color: #9b7132;

    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cine-card h3 {
    margin: 0 0 12px;

    color: #082f5f;

    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.15;
}

.cine-card h3 span {
    color: #8a5f2c;

    font-size: 0.88rem;
    font-weight: 700;
}

.cine-card p {
    margin: 0;

    color: rgba(7, 48, 94, 0.82);

    font-size: 0.92rem;
    line-height: 1.65;

    flex: 1;
}

.cine-btn {
    width: fit-content;
    min-height: 42px;

    margin-top: 20px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 999px;

    background: #ead28e;
    color: #0f376d;

    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.cine-btn:hover {
    transform: translateY(-2px);
    background: #d6b161;
    box-shadow: 0 12px 26px rgba(214, 177, 97, 0.24);
}

/* =========================
   DARK MODE
========================= */

html[data-theme="dark"] .cine-card {
    background:
        linear-gradient(
            180deg,
            rgba(24, 36, 56, 0.98),
            rgba(18, 28, 44, 0.98)
        );

    border-color: rgba(214, 177, 97, 0.16);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .cine-card h3 {
    color: #f8f1df;
}

html[data-theme="dark"] .cine-card h3 span {
    color: #d8b56b;
}

html[data-theme="dark"] .cine-card p {
    color: rgba(245, 236, 214, 0.84);
}

html[data-theme="dark"] .cine-tag {
    background: rgba(214, 177, 97, 0.12);
    color: #f0d28d;
}

html[data-theme="dark"] .cine-btn {
    background:
        linear-gradient(
            180deg,
            #d6b161,
            #c89c42
        );

    color: #0f1b2c;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {
    .cine-grid {
        grid-template-columns: 1fr;
    }

    .cine-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .cine-grid {
        gap: 14px;
    }

    .cine-card {
        border-radius: 22px;
    }

    .cine-card__content {
        padding: 22px 18px;
    }

    .cine-card h3 {
        font-size: 1.18rem;
    }

    .cine-card p {
        font-size: 0.92rem;
        line-height: 1.68;
    }

    .cine-btn {
        width: 100%;
    }
}