/* ============================================= */
/* --- ESTILOS DE CONTEÚDO E TÍTULOS --- */
/* ============================================= */

/* Para títulos que precisam de hifenização (sem justificar) */
.hyphenate-text {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
}

/* Para conteúdo longo do Summernote (justificado com hifenização) */
.summernote-content, .summernote-content p {
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    word-break: break-word;
}


/* ============================================= */
/* --- CRONÔMETRO DE CONTAGEM REGRESSIVA --- */
/* ============================================= */

.image-with-countdown-container {
    position: relative;
    display: block;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 10;
    border-top-left-radius: var(--bs-border-radius);
    border-top-right-radius: var(--bs-border-radius);
}

.countdown-title {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.countdown-grid div {
    display: flex;
    flex-direction: column;
    min-width: 60px;
}

.countdown-grid span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-grid small {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ============================================= */
/* --- FORMULÁRIO DE AVALIAÇÃO POR ESTRELAS --- */
/* ============================================= */

.rating-form-stars {
    display: inline-block;
    direction: rtl; /* Inverte a ordem para o CSS funcionar corretamente */
}

/* Esconde os botões de rádio originais */
.rating-form-stars input[type="radio"] {
    display: none;
}

.rating-form-stars label {
    font-size: 2rem;
    color: #ddd; /* Cor da estrela vazia */
    cursor: pointer;
    transition: color 0.2s;
}

/* Efeito de hover: acende a estrela e as anteriores */
.rating-form-stars label:hover,
.rating-form-stars label:hover ~ label {
    color: #ffc107;
}

/* Estilo da estrela selecionada (e as anteriores) */
.rating-form-stars input[type="radio"]:checked ~ label {
    color: #ffc107;
}