body {
    background: #f0f2f5;
    font-family: 'Segoe UI', sans-serif;
}

.mkrpi-briefing-wrapper {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    border: 1px solid #ccc;
    padding: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    color: #333;
    font-size: 15px;
}

/* Cabeçalho */
.mkrpi-briefing-header {
    background: #245973;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mkrpi-briefing-subtitulo {
    text-align: center;
    margin-top: 20px;
    font-size: 17px;
    color: #245973;
    font-weight: bold;
}

/* Blocos com fundo claro */
.mkrpi-bloco {
    background: #f6f8f9;
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 6px;
    border-left: 6px solid #245973;
}

.mkrpi-bloco h3 {
    color: #245973;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Campo de linha */
.mkrpi-linha {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

.mkrpi-label {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mkrpi-label span {
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
}

.mkrpi-label .valor {
    border-bottom: 1px solid #ccc;
    padding: 4px 0;
    word-break: break-word;
}

/* Perguntas e Respostas Longas */
.mkrpi-pergunta {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
}

.mkrpi-resposta {
    border-bottom: 1px solid #ccc;
    padding: 6px 0;
    white-space: pre-line;
}

/* Botões */
.mkrpi-botoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.mkrpi-botoes a {
    background: #245973;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    min-width: 100px;
}

.mkrpi-botoes a:hover {
    background: #1b4258;
}

/* Ajuste para mobile */
@media (max-width: 600px) {
    .mkrpi-botoes {
        flex-direction: column;
        align-items: center;
    }

    .mkrpi-botoes a {
        width: 80%;
    }
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .mkrpi-linha {
        flex-direction: column;
    }

    .mkrpi-label {
        flex: 1 1 100%;
    }

    /* Links de mídia */
.mkrpi-resposta ul {
  list-style: disc inside;
  padding-left: 10px;
  margin: 0;
}

.mkrpi-resposta ul li {
  margin-bottom: 6px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mkrpi-resposta ul li a {
  color: #245973;
  text-decoration: underline;
  font-weight: 500;
  word-break: break-word;
}

.mkrpi-resposta ul li a:hover {
  color: #1b4258;
  text-decoration: none;
}

}