/**
 * Otorrinoped Download Leads - Estilos
 * Novo design minimalista de botões
 */

.otorrinoped-download-link {
    display: inline;
    align-items: baseline;
    color: #002FFD;
    font-weight: 700;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.5s ease;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    white-space: nowrap;
    vertical-align: baseline;
}

.otorrinoped-download-link:hover {
    color: #BF0209;
}

.otorrinoped-download-link .download-text {
    font-weight: 700;
    display: inline;
}

/* Container das setas */
.otorrinoped-download-link .arrow-container {
    display: inline-block;
    margin-left: 6px;
    position: relative;
    width: 14px;
    height: 15px;
    vertical-align: baseline;
    top: 2px;
}

/* Setas - ambas ocupam o mesmo espaço */
.otorrinoped-download-link .arrow-icon {
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 15px;
}

/* Seta azul - visível por padrão */
.otorrinoped-download-link .arrow-blue {
    opacity: 1;
}

/* Seta vermelha - invisível por padrão */
.otorrinoped-download-link .arrow-red {
    opacity: 0;
}

/* Hover: esconde azul, mostra vermelha */
.otorrinoped-download-link:hover .arrow-blue {
    opacity: 0;
}

.otorrinoped-download-link:hover .arrow-red {
    opacity: 1;
}

/* Espaçamento para lista de artigos */
.artigo-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.artigo-item:last-child {
    border-bottom: none;
}

.artigo-item .citacao {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

/* Responsivo */
@media screen and (max-width: 767px) {
    .otorrinoped-download-link {
        font-size: 14px;
    }

    .artigo-item .citacao {
        font-size: 13px;
    }
}
