/* =====================================================
   TEMAS LITÚRGICOS
   Cada tempo define suas próprias CSS custom properties.
   Basta mudar data-tempo no <html> para trocar tudo.
   ===================================================== */
[data-tempo="verde"] {
    --color-bg:           #FAFAF5;
    --color-accent:       #006A37;
    --color-card:         #F4F4EF;
    --color-accent-light: rgba(0, 106, 55, 0.15);
    --color-text:         #1a1a18;
    --color-muted:        #5c5c50;
    --color-border:       rgba(0, 106, 55, 0.18);
    --color-dot:          #006A37;
}
[data-tempo="roxo"] {
    --color-bg:           #F7F4F9;
    --color-accent:       #8237B2;
    --color-card:         #F3EBF9;
    --color-accent-light: rgba(130, 55, 178, 0.15);
    --color-text:         #1a0e24;
    --color-muted:        #6b4880;
    --color-border:       rgba(130, 55, 178, 0.18);
    --color-dot:          #8237B2;
}
[data-tempo="vermelho"] {
    --color-bg:           #FFF8F7;
    --color-accent:       #B32623;
    --color-card:         #FFF0EF;
    --color-accent-light: rgba(179, 38, 35, 0.15);
    --color-text:         #1f0b0a;
    --color-muted:        #7a3533;
    --color-border:       rgba(179, 38, 35, 0.18);
    --color-dot:          #B32623;
}
[data-tempo="branco"] {
    --color-bg:           #FFFFFF;
    --color-accent:       #212121;
    --color-card:         #E2E8F0;
    --color-accent-light: rgba(33, 33, 33, 0.07);
    --color-text:         #212121;
    --color-muted:        #666666;
    --color-border:       rgba(33, 33, 33, 0.14);
    --color-dot:          #9E9E9E;
}
/* ── Rosa: Domingo Gaudete e Domingo Laetare ───────── */
[data-tempo="rosa"] {
    --color-bg:           #FDF6F9;
    --color-accent:       #A0436A;
    --color-card:         #FAF0F4;
    --color-accent-light: rgba(160, 67, 106, 0.13);
    --color-text:         #1f0e16;
    --color-muted:        #7a4d60;
    --color-border:       rgba(160, 67, 106, 0.18);
    --color-dot:          #A0436A;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Libertinus Serif', Georgia, serif;
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background 0.35s ease, color 0.35s ease;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transition: background 0.35s ease;
}

.header-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.site-logo {
    font-family: 'Manrope', Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-accent);
    letter-spacing: 0.01em;
    user-select: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-muted);
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-icon:hover,
.btn-icon:focus-visible {
    background: var(--color-accent-light);
    color: var(--color-accent);
    outline: none;
}

.tempo-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    min-width: 260px;
    z-index: 300;
}
.tempo-dropdown.is-open { display: block; }

.tempo-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 11px 16px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 0.83rem;
    color: var(--color-text);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}
.tempo-option:last-child { border-bottom: none; }
.tempo-option:hover { background: var(--color-accent-light); }

.tempo-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* =====================================================
   CONTEÚDO PRINCIPAL
   ===================================================== */
.page-main {
    flex: 1;
    max-width: 780px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1.5rem 5rem;
}

/* =====================================================
   NAVEGAÇÃO DE DATA
   ===================================================== */
.date-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2.25rem 0 0;
}

.date-nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--color-muted);
    padding: 4px 10px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}
.date-nav-arrow:hover { background: var(--color-accent-light); color: var(--color-accent); }

.date-display {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    color: var(--color-muted);
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    padding: 2px 8px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}
.date-display:hover { background: var(--color-accent-light); color: var(--color-accent); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    text-align: center;
    padding: 1.75rem 1rem 0.25rem;
}

.hero-title {
    font-family: 'Noto Serif', serif;
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--color-text);
    margin-bottom: 0.6rem;
}
.hero-title span { display: block; }
.hero-title em {
    display: block;
    font-family: 'Libertinus Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
}

.liturgical-color-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    color: var(--color-muted);
}
.liturgical-color-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-dot);
}

/* =====================================================
   TABS
   ===================================================== */
.reading-tabs {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    opacity: 0.85;
    margin-top: 2.25rem;
    /* Scroll horizontal quando há muitas tabs (ex: Vigília Pascal) */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    min-width: 0;
}
.reading-tabs::-webkit-scrollbar { display: none; }

.reading-tab {
    /* flex: 1 permite que poucas tabs ocupem toda a largura;
       flex-shrink: 0 garante que muitas tabs não encolham */
    flex: 1;
    flex-shrink: 0;
    min-width: fit-content;
    scroll-snap-align: start;
    background: none;
    border: none;
    border-bottom: 1.5px solid transparent;
    margin-bottom: -1px;
    padding: 0.65rem 0.9rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-muted);
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.reading-tab:hover { color: var(--color-accent); }
.reading-tab.is-active {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    font-weight: 600;
}

/* =====================================================
   PAINÉIS DE LEITURA
   ===================================================== */
.reading-panels { margin-top: 2rem; }

.reading-panel {
    display: none;
    animation: fadeUp 0.28s ease;
}
.reading-panel.is-active { display: block; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   CARD DE LEITURA
   ===================================================== */
.reading-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 2.75rem 3rem;
}

.reading-reference {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    text-align: center;
    margin-bottom: 0.6rem;
}

.reading-heading {
    font-family: 'Noto Serif', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 36px;
    height: 2px;
    background: var(--color-accent);
    opacity: 0.4;
    margin: 0 auto 1.75rem;
}

.reading-text {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.88;
    color: var(--color-text);
}
.reading-text p {
    margin-bottom: 1.1rem;
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}
.reading-text p:last-child { margin-bottom: 0; }

.has-dropcap::first-letter {
    font-family: 'Noto Serif', serif;
    font-size: 3.6rem;
    font-weight: 700;
    float: left;
    line-height: 0.78;
    margin-right: 0.08em;
    margin-top: 0.1em;
    color: var(--color-accent);
}

.verse-number {
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--color-accent);
    vertical-align: super;
    line-height: 0;
    margin-right: 0.1em;
    letter-spacing: 0;
    user-select: none;
}

.reading-acclamation {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.acclamation-response {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-size: 0.92rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-accent);
    letter-spacing: 0.02em;
}
.acclamation-answer {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-size: 0.92rem;
    font-style: italic;
    color: var(--color-muted);
    margin-top: 0.15rem;
}

/* =====================================================
   TOGGLE FORMA LONGA / FORMA BREVE
   Aparece quando uma mesma leitura tem múltiplas formas.
   ===================================================== */
.form-toggle {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.form-toggle-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1.5px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}
.form-toggle-btn.is-active {
    background: var(--color-accent);
    color: #fff;
}
.form-toggle-btn:not(.is-active):hover {
    background: var(--color-accent-light);
}

/* Oculta formas inativas dentro de um mesmo card */
.reading-form          { display: none; }
.reading-form.is-active { display: block; }

/* =====================================================
   ANTÍFONA
   ===================================================== */
.card-antifona { text-align: center; }

.section-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 1.5rem;
}

.antifona-text {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0 auto 1rem;
    max-width: 480px;
}
.antifona-reference {
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    color: var(--color-muted);
    font-style: normal;
}

/* =====================================================
   SALMO
   ===================================================== */
.card-salmo { text-align: center; }

.salmo-verse-ref {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    color: var(--color-muted);
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.salmo-refrao {
    background: var(--color-accent-light);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin: 0 auto 1.75rem;
    max-width: 540px;
    font-family: 'Libertinus Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
}
.card-salmo .reading-text p {
    text-align: center !important;
    -webkit-hyphens: none !important;
    hyphens: none !important;
    line-height: 1.7;
}

/* =====================================================
   ALELUIA (card do Evangelho)
   ===================================================== */
.aleluia-block {
    text-align: center;
    margin-bottom: 1.75rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-accent-light);
    border-radius: 10px;
}
.aleluia-label {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}
.aleluia-verse {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-style: italic;
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--color-muted);
}

/* =====================================================
   ERROR CARD
   ===================================================== */
.card-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem 2rem;
}

.error-icon {
    color: var(--color-accent);
    opacity: 0.5;
}

.error-title {
    font-family: 'Noto Serif', serif;
    font-size: 1.25rem;
    color: var(--color-text);
    margin: 0;
}

.error-message {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: var(--color-muted);
    max-width: 32ch;
    margin: 0;
    line-height: 1.6;
}

.error-retry-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    background: var(--color-accent-light);
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    margin-top: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s;
}
.error-retry-btn:hover { opacity: 0.8; }

/* =====================================================
   LOADING
   ===================================================== */
.panels-loading {
    text-align: center;
    padding: 3rem;
    font-family: 'Manrope', sans-serif;
    color: var(--color-muted);
}

/* =====================================================
   NAVEGAÇÃO ENTRE DIAS
   ===================================================== */
.adjacent-days-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 3rem;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    overflow: hidden;
}
.adjacent-day-link {
    background: var(--color-card);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.18s ease;
}
.adjacent-day-link:hover { background: var(--color-accent-light); }
.adjacent-day-link--next { text-align: right; align-items: flex-end; }

.adjacent-day-direction {
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--color-muted);
}
.adjacent-day-label {
    font-family: 'Noto Serif', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-bg);
}
.footer-logo {
    font-family: 'Libertinus Serif', Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--color-accent);
}
.footer-logo > img {
    max-width: 100px;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    color: var(--color-muted);
    letter-spacing: 0.05em;
}

/* =====================================================
   RESPONSIVO — MOBILE
   ===================================================== */
@media (max-width: 580px) {
    .page-main { padding: 0 1rem 3rem; }

    .reading-card {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }

    /* Sem tabs no mobile — leitura contínua */
    .reading-tabs { display: none; }
    .reading-panel { display: block !important; animation: none; }

    /* Label de seção antes de cada painel (via data-label) */
    .reading-panel::before {
        content: attr(data-label);
        display: block;
        font-family: 'Manrope', sans-serif;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--color-muted);
        text-align: center;
        padding: 1.5rem 0 0.6rem;
    }

    /* Esconde label duplicada dentro do card no mobile */
    .mobile-hidden { display: none; }

    /* Toggle de forma — empilha verticalmente no mobile */
    .form-toggle { flex-wrap: wrap; justify-content: center; }
    .form-toggle-btn { font-size: 0.75rem; padding: 0.3rem 0.85rem; }

    .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }

    .adjacent-days-nav { grid-template-columns: 1fr; }
    .adjacent-day-link--next {
        border-top: 1px solid var(--color-border);
        text-align: left;
        align-items: flex-start;
    }
}

/* =====================================================
   MODAL DE CALENDÁRIO
   ===================================================== */
.calendar-overlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 500;
    background: rgba(20, 20, 20, 0.45);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.calendar-overlay.is-open { display: flex; }

.calendar-modal {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem 1.5rem 1.25rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    animation: calSlideIn 0.22s ease;
}
@keyframes calSlideIn {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.2rem;
}
.calendar-month-label {
    font-family: 'Noto Serif', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
}
.calendar-month-label em {
    font-style: italic;
    color: var(--color-accent);
    font-family: 'Libertinus Serif', Georgia, serif;
}

.calendar-month-nav { display: flex; gap: 0.25rem; }
.calendar-month-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    font-size: 1.1rem;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, color 0.15s;
}
.calendar-month-btn:hover { background: var(--color-accent-light); color: var(--color-accent); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto repeat(6, 1fr);
    margin-top: 1rem;
    gap: 2px;
    height: 272px;
}

.calendar-weekday {
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-muted);
    text-align: center;
    padding: 0.3rem 0 0.5rem;
}

.calendar-day {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text);
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}
.calendar-day::before {
    content: '';
    display: block;
    padding-top: 100%;
}
.calendar-day > span { position: absolute; }
.calendar-day:hover:not(.calendar-day--outside):not(.calendar-day--selected) {
    background: var(--color-accent-light);
    color: var(--color-accent);
}
.calendar-day--outside { color: var(--color-muted); opacity: 0.35; cursor: default; }

.calendar-day--today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-accent);
}
.calendar-day--selected {
    background: var(--color-accent) !important;
    color: #ffffff !important;
    font-weight: 600;
}
.calendar-day--selected::after { background: rgba(255,255,255,0.65); }

.calendar-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}
.calendar-today-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}
.calendar-today-btn:hover { background: var(--color-accent-light); }


/* =====================================================
   SKELETON LOADING
   ===================================================== */
.card-loading {
    pointer-events: none;
    user-select:    none;
}

.skel {
    background: linear-gradient(
            90deg,
            var(--color-border)       25%,
            var(--color-accent-light) 50%,
            var(--color-border)       75%
    );
    background-size: 200% 100%;
    border-radius:   6px;
    animation:       skelShimmer 1.6s ease-in-out infinite;
}

@keyframes skelShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Referência (tag pequena, centralizada) */
.skel-ref {
    width:  80px;
    height: 10px;
    margin: 0 auto 1rem;
}

/* Título */
.skel-title {
    width:  55%;
    height: 22px;
    margin: 0 auto 0.6rem;
}
.skel-title--short {
    width:  35%;
    height: 22px;
    margin-bottom: 1.5rem;
}

/* Divisor */
.skel-divider {
    width:  36px;
    height: 2px;
    margin: 0 auto 1.75rem;
    border-radius: 2px;
}

/* Linhas de texto */
.skel-line {
    width:  100%;
    height: 14px;
    margin-bottom: 0.75rem;
}
.skel-line--short { width: 62%; }
.skel-line--mid   { width: 80%; }

/* Separador da aclamação */
.skel-acclamation-sep {
    width:  100%;
    height: 1px;
    margin: 1.75rem 0 1.25rem;
    border-radius: 1px;
}

/* Aclamação */
.skel-acclamation {
    width:  140px;
    height: 13px;
    margin: 0 auto 0.4rem;
}
.skel-acclamation--short {
    width:  100px;
    height: 13px;
    margin: 0 auto;
}
