/* Estilos do plugin Histórias Narradas */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos globais para o card */
.hn-card {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

.hn-card {
    background-color: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 100%;
    padding: 30px 24px 35px;
    text-align: center;
    transition: 0.3s ease;
}

.hn-card h2 {
    font-size: 1.6rem;
    color: #0b2a3c;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.hn-card .hn-subtitulo {
    color: #3b5a6e;
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-weight: 400;
    border-bottom: 2px solid #eef3f8;
    padding-bottom: 18px;
}

/* Área da imagem */
.hn-imagem-produto {
    background-color: #f4f8fb;
    border-radius: 20px;
    padding: 20px 10px;
    margin-bottom: 25px;
    border: 1px solid #e2ebf2;
}

.hn-imagem-produto img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Controles do áudio */
.hn-audio-player {
    background: #f8fafc;
    border-radius: 60px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid #dde7ef;
    margin-bottom: 15px;
}

.hn-play-btn {
    background: #0b2a3c;
    border: none;
    color: white;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(11, 42, 60, 0.2);
}

.hn-play-btn:hover {
    background: #1a4055;
    transform: scale(1.03);
}

.hn-play-btn:active {
    transform: scale(0.95);
}

.hn-play-btn.playing {
    background: #d93b4c;
}

.hn-time-container {
    font-size: 0.85rem;
    color: #3b5a6e;
    font-weight: 500;
    min-width: 90px;
    text-align: center;
    white-space: nowrap;
}

.hn-time-info, .hn-total-time {
    display: inline-block;
}

/* Barra de progresso personalizada */
.hn-progress-bar {
    flex: 1;
    height: 5px;
    background: #dde7ef;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.hn-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0b2a3c;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.hn-progress-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0b2a3c;
    cursor: pointer;
    border: 2px solid white;
}

/* Legenda */
.hn-legenda-area {
    background-color: #f4f8fb;
    border-left: 4px solid #0b2a3c;
    padding: 18px 18px;
    border-radius: 16px;
    min-height: 70px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.hn-legenda-texto {
    font-size: 1rem;
    color: #1d3649;
    line-height: 1.6;
    font-weight: 450;
    text-align: left;
    width: 100%;
}

.hn-legenda-texto .hn-destaque {
    font-weight: 600;
    color: #0b2a3c;
}

.hn-legenda-texto .hn-vazio {
    color: #8ba0b2;
    font-style: italic;
    text-align: center;
    display: block;
    width: 100%;
}

/* Controles de Voz e Velocidade */
.hn-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.hn-controls label {
    font-size: 0.9rem;
    color: #3b5a6e;
    font-weight: 500;
}

.hn-controls select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #dde7ef;
    background-color: #f8fafc;
    color: #0b2a3c;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease;
}

.hn-controls select:focus {
    border-color: #0b2a3c;
}

/* CTA */
.hn-cta-area {
    margin-top: 25px;
}

.hn-cta-button {
    display: inline-block;
    background-color: #28a745; /* Cor verde para o CTA */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.hn-cta-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Rodapé */
.hn-footer {
    margin-top: 25px;
    font-size: 0.75rem;
    color: #6d8ba0;
    text-align: center;
    border-top: 1px solid #dde7ef;
    padding-top: 20px;
}

/* Responsividade */
@media (max-width: 480px) {
    .hn-card {
        padding: 20px 16px;
    }
    .hn-card h2 {
        font-size: 1.3rem;
    }
    .hn-audio-player {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 30px;
        padding: 15px;
    }
    .hn-play-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    .hn-progress-bar {
        order: 3;
        flex-basis: 100%;
        margin-top: 8px;
    }
    .hn-time-info {
        min-width: 60px;
        font-size: 0.8rem;
    }
    .hn-controls {
        flex-direction: column;
        gap: 10px;
    }
    .hn-controls select {
        width: 100%;
    }
}
